Christoph Lameter | 039363f | 2012-07-06 15:25:10 -0500 | [diff] [blame] | 1 | /* |
| 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 Lameter | 20cea96 | 2012-07-06 15:25:13 -0500 | [diff] [blame] | 14 | #include <linux/cpu.h> |
| 15 | #include <linux/uaccess.h> |
Glauber Costa | b7454ad | 2012-10-19 18:20:25 +0400 | [diff] [blame] | 16 | #include <linux/seq_file.h> |
| 17 | #include <linux/proc_fs.h> |
Christoph Lameter | 039363f | 2012-07-06 15:25:10 -0500 | [diff] [blame] | 18 | #include <asm/cacheflush.h> |
| 19 | #include <asm/tlbflush.h> |
| 20 | #include <asm/page.h> |
Glauber Costa | 2633d7a | 2012-12-18 14:22:34 -0800 | [diff] [blame] | 21 | #include <linux/memcontrol.h> |
Andrey Ryabinin | 928cec9 | 2014-08-06 16:04:44 -0700 | [diff] [blame] | 22 | |
| 23 | #define CREATE_TRACE_POINTS |
Christoph Lameter | f1b6eb6 | 2013-09-04 16:35:34 +0000 | [diff] [blame] | 24 | #include <trace/events/kmem.h> |
Christoph Lameter | 039363f | 2012-07-06 15:25:10 -0500 | [diff] [blame] | 25 | |
Christoph Lameter | 97d0660 | 2012-07-06 15:25:11 -0500 | [diff] [blame] | 26 | #include "slab.h" |
| 27 | |
| 28 | enum slab_state slab_state; |
Christoph Lameter | 18004c5 | 2012-07-06 15:25:12 -0500 | [diff] [blame] | 29 | LIST_HEAD(slab_caches); |
| 30 | DEFINE_MUTEX(slab_mutex); |
Christoph Lameter | 9b030cb | 2012-09-05 00:20:33 +0000 | [diff] [blame] | 31 | struct kmem_cache *kmem_cache; |
Christoph Lameter | 97d0660 | 2012-07-06 15:25:11 -0500 | [diff] [blame] | 32 | |
Tejun Heo | 657dc2f | 2017-02-22 15:41:14 -0800 | [diff] [blame] | 33 | static LIST_HEAD(slab_caches_to_rcu_destroy); |
| 34 | static void slab_caches_to_rcu_destroy_workfn(struct work_struct *work); |
| 35 | static DECLARE_WORK(slab_caches_to_rcu_destroy_work, |
| 36 | slab_caches_to_rcu_destroy_workfn); |
| 37 | |
Joonsoo Kim | 07f361b | 2014-10-09 15:26:00 -0700 | [diff] [blame] | 38 | /* |
Joonsoo Kim | 423c929 | 2014-10-09 15:26:22 -0700 | [diff] [blame] | 39 | * Set of flags that will prevent slab merging |
| 40 | */ |
| 41 | #define SLAB_NEVER_MERGE (SLAB_RED_ZONE | SLAB_POISON | SLAB_STORE_USER | \ |
| 42 | SLAB_TRACE | SLAB_DESTROY_BY_RCU | SLAB_NOLEAKTRACE | \ |
Alexander Potapenko | 7ed2f9e | 2016-03-25 14:21:59 -0700 | [diff] [blame] | 43 | SLAB_FAILSLAB | SLAB_KASAN) |
Joonsoo Kim | 423c929 | 2014-10-09 15:26:22 -0700 | [diff] [blame] | 44 | |
Vladimir Davydov | 230e9fc | 2016-01-14 15:18:15 -0800 | [diff] [blame] | 45 | #define SLAB_MERGE_SAME (SLAB_RECLAIM_ACCOUNT | SLAB_CACHE_DMA | \ |
| 46 | SLAB_NOTRACK | SLAB_ACCOUNT) |
Joonsoo Kim | 423c929 | 2014-10-09 15:26:22 -0700 | [diff] [blame] | 47 | |
| 48 | /* |
| 49 | * Merge control. If this is set then no merging of slab caches will occur. |
| 50 | * (Could be removed. This was introduced to pacify the merge skeptics.) |
| 51 | */ |
| 52 | static int slab_nomerge; |
| 53 | |
| 54 | static int __init setup_slab_nomerge(char *str) |
| 55 | { |
| 56 | slab_nomerge = 1; |
| 57 | return 1; |
| 58 | } |
| 59 | |
| 60 | #ifdef CONFIG_SLUB |
| 61 | __setup_param("slub_nomerge", slub_nomerge, setup_slab_nomerge, 0); |
| 62 | #endif |
| 63 | |
| 64 | __setup("slab_nomerge", setup_slab_nomerge); |
| 65 | |
| 66 | /* |
Joonsoo Kim | 07f361b | 2014-10-09 15:26:00 -0700 | [diff] [blame] | 67 | * Determine the size of a slab object |
| 68 | */ |
| 69 | unsigned int kmem_cache_size(struct kmem_cache *s) |
| 70 | { |
| 71 | return s->object_size; |
| 72 | } |
| 73 | EXPORT_SYMBOL(kmem_cache_size); |
| 74 | |
Shuah Khan | 77be4b1 | 2012-08-16 00:09:46 -0700 | [diff] [blame] | 75 | #ifdef CONFIG_DEBUG_VM |
Vladimir Davydov | 794b124 | 2014-04-07 15:39:26 -0700 | [diff] [blame] | 76 | static int kmem_cache_sanity_check(const char *name, size_t size) |
Shuah Khan | 77be4b1 | 2012-08-16 00:09:46 -0700 | [diff] [blame] | 77 | { |
| 78 | struct kmem_cache *s = NULL; |
| 79 | |
| 80 | if (!name || in_interrupt() || size < sizeof(void *) || |
| 81 | size > KMALLOC_MAX_SIZE) { |
| 82 | pr_err("kmem_cache_create(%s) integrity check failed\n", name); |
| 83 | return -EINVAL; |
| 84 | } |
| 85 | |
| 86 | list_for_each_entry(s, &slab_caches, list) { |
| 87 | char tmp; |
| 88 | int res; |
| 89 | |
| 90 | /* |
| 91 | * This happens when the module gets unloaded and doesn't |
| 92 | * destroy its slab cache and no-one else reuses the vmalloc |
| 93 | * area of the module. Print a warning. |
| 94 | */ |
| 95 | res = probe_kernel_address(s->name, tmp); |
| 96 | if (res) { |
| 97 | pr_err("Slab cache with size %d has lost its name\n", |
| 98 | s->object_size); |
| 99 | continue; |
| 100 | } |
Shuah Khan | 77be4b1 | 2012-08-16 00:09:46 -0700 | [diff] [blame] | 101 | } |
| 102 | |
| 103 | WARN_ON(strchr(name, ' ')); /* It confuses parsers */ |
| 104 | return 0; |
| 105 | } |
| 106 | #else |
Vladimir Davydov | 794b124 | 2014-04-07 15:39:26 -0700 | [diff] [blame] | 107 | static inline int kmem_cache_sanity_check(const char *name, size_t size) |
Shuah Khan | 77be4b1 | 2012-08-16 00:09:46 -0700 | [diff] [blame] | 108 | { |
| 109 | return 0; |
| 110 | } |
| 111 | #endif |
| 112 | |
Christoph Lameter | 484748f | 2015-09-04 15:45:34 -0700 | [diff] [blame] | 113 | void __kmem_cache_free_bulk(struct kmem_cache *s, size_t nr, void **p) |
| 114 | { |
| 115 | size_t i; |
| 116 | |
Jesper Dangaard Brouer | ca25719 | 2016-03-15 14:54:00 -0700 | [diff] [blame] | 117 | for (i = 0; i < nr; i++) { |
| 118 | if (s) |
| 119 | kmem_cache_free(s, p[i]); |
| 120 | else |
| 121 | kfree(p[i]); |
| 122 | } |
Christoph Lameter | 484748f | 2015-09-04 15:45:34 -0700 | [diff] [blame] | 123 | } |
| 124 | |
Jesper Dangaard Brouer | 865762a | 2015-11-20 15:57:58 -0800 | [diff] [blame] | 125 | int __kmem_cache_alloc_bulk(struct kmem_cache *s, gfp_t flags, size_t nr, |
Christoph Lameter | 484748f | 2015-09-04 15:45:34 -0700 | [diff] [blame] | 126 | void **p) |
| 127 | { |
| 128 | size_t i; |
| 129 | |
| 130 | for (i = 0; i < nr; i++) { |
| 131 | void *x = p[i] = kmem_cache_alloc(s, flags); |
| 132 | if (!x) { |
| 133 | __kmem_cache_free_bulk(s, i, p); |
Jesper Dangaard Brouer | 865762a | 2015-11-20 15:57:58 -0800 | [diff] [blame] | 134 | return 0; |
Christoph Lameter | 484748f | 2015-09-04 15:45:34 -0700 | [diff] [blame] | 135 | } |
| 136 | } |
Jesper Dangaard Brouer | 865762a | 2015-11-20 15:57:58 -0800 | [diff] [blame] | 137 | return i; |
Christoph Lameter | 484748f | 2015-09-04 15:45:34 -0700 | [diff] [blame] | 138 | } |
| 139 | |
Johannes Weiner | 127424c | 2016-01-20 15:02:32 -0800 | [diff] [blame] | 140 | #if defined(CONFIG_MEMCG) && !defined(CONFIG_SLOB) |
Vladimir Davydov | f7ce319 | 2015-02-12 14:59:20 -0800 | [diff] [blame] | 141 | void slab_init_memcg_params(struct kmem_cache *s) |
Vladimir Davydov | 33a690c | 2014-10-09 15:28:43 -0700 | [diff] [blame] | 142 | { |
Tejun Heo | 9eeadc8 | 2017-02-22 15:41:17 -0800 | [diff] [blame] | 143 | s->memcg_params.root_cache = NULL; |
Vladimir Davydov | f7ce319 | 2015-02-12 14:59:20 -0800 | [diff] [blame] | 144 | RCU_INIT_POINTER(s->memcg_params.memcg_caches, NULL); |
Tejun Heo | 9eeadc8 | 2017-02-22 15:41:17 -0800 | [diff] [blame] | 145 | INIT_LIST_HEAD(&s->memcg_params.children); |
Vladimir Davydov | f7ce319 | 2015-02-12 14:59:20 -0800 | [diff] [blame] | 146 | } |
Vladimir Davydov | 33a690c | 2014-10-09 15:28:43 -0700 | [diff] [blame] | 147 | |
Vladimir Davydov | f7ce319 | 2015-02-12 14:59:20 -0800 | [diff] [blame] | 148 | static int init_memcg_params(struct kmem_cache *s, |
| 149 | struct mem_cgroup *memcg, struct kmem_cache *root_cache) |
| 150 | { |
| 151 | struct memcg_cache_array *arr; |
Vladimir Davydov | 33a690c | 2014-10-09 15:28:43 -0700 | [diff] [blame] | 152 | |
Tejun Heo | 9eeadc8 | 2017-02-22 15:41:17 -0800 | [diff] [blame] | 153 | if (root_cache) { |
Vladimir Davydov | f7ce319 | 2015-02-12 14:59:20 -0800 | [diff] [blame] | 154 | s->memcg_params.root_cache = root_cache; |
Tejun Heo | 9eeadc8 | 2017-02-22 15:41:17 -0800 | [diff] [blame] | 155 | s->memcg_params.memcg = memcg; |
| 156 | INIT_LIST_HEAD(&s->memcg_params.children_node); |
Tejun Heo | bc2791f | 2017-02-22 15:41:21 -0800 | [diff] [blame^] | 157 | INIT_LIST_HEAD(&s->memcg_params.kmem_caches_node); |
Vladimir Davydov | f7ce319 | 2015-02-12 14:59:20 -0800 | [diff] [blame] | 158 | return 0; |
| 159 | } |
Vladimir Davydov | 33a690c | 2014-10-09 15:28:43 -0700 | [diff] [blame] | 160 | |
Vladimir Davydov | f7ce319 | 2015-02-12 14:59:20 -0800 | [diff] [blame] | 161 | slab_init_memcg_params(s); |
| 162 | |
| 163 | if (!memcg_nr_cache_ids) |
| 164 | return 0; |
| 165 | |
| 166 | arr = kzalloc(sizeof(struct memcg_cache_array) + |
| 167 | memcg_nr_cache_ids * sizeof(void *), |
| 168 | GFP_KERNEL); |
| 169 | if (!arr) |
| 170 | return -ENOMEM; |
| 171 | |
| 172 | RCU_INIT_POINTER(s->memcg_params.memcg_caches, arr); |
Vladimir Davydov | 33a690c | 2014-10-09 15:28:43 -0700 | [diff] [blame] | 173 | return 0; |
| 174 | } |
| 175 | |
Vladimir Davydov | f7ce319 | 2015-02-12 14:59:20 -0800 | [diff] [blame] | 176 | static void destroy_memcg_params(struct kmem_cache *s) |
Vladimir Davydov | 33a690c | 2014-10-09 15:28:43 -0700 | [diff] [blame] | 177 | { |
Vladimir Davydov | f7ce319 | 2015-02-12 14:59:20 -0800 | [diff] [blame] | 178 | if (is_root_cache(s)) |
| 179 | kfree(rcu_access_pointer(s->memcg_params.memcg_caches)); |
Vladimir Davydov | 33a690c | 2014-10-09 15:28:43 -0700 | [diff] [blame] | 180 | } |
| 181 | |
Vladimir Davydov | f7ce319 | 2015-02-12 14:59:20 -0800 | [diff] [blame] | 182 | static int update_memcg_params(struct kmem_cache *s, int new_array_size) |
Vladimir Davydov | 6f817f4 | 2014-10-09 15:28:47 -0700 | [diff] [blame] | 183 | { |
Vladimir Davydov | f7ce319 | 2015-02-12 14:59:20 -0800 | [diff] [blame] | 184 | struct memcg_cache_array *old, *new; |
Vladimir Davydov | 6f817f4 | 2014-10-09 15:28:47 -0700 | [diff] [blame] | 185 | |
Vladimir Davydov | f7ce319 | 2015-02-12 14:59:20 -0800 | [diff] [blame] | 186 | if (!is_root_cache(s)) |
| 187 | return 0; |
Vladimir Davydov | 6f817f4 | 2014-10-09 15:28:47 -0700 | [diff] [blame] | 188 | |
Vladimir Davydov | f7ce319 | 2015-02-12 14:59:20 -0800 | [diff] [blame] | 189 | new = kzalloc(sizeof(struct memcg_cache_array) + |
| 190 | new_array_size * sizeof(void *), GFP_KERNEL); |
| 191 | if (!new) |
Vladimir Davydov | 6f817f4 | 2014-10-09 15:28:47 -0700 | [diff] [blame] | 192 | return -ENOMEM; |
| 193 | |
Vladimir Davydov | f7ce319 | 2015-02-12 14:59:20 -0800 | [diff] [blame] | 194 | old = rcu_dereference_protected(s->memcg_params.memcg_caches, |
| 195 | lockdep_is_held(&slab_mutex)); |
| 196 | if (old) |
| 197 | memcpy(new->entries, old->entries, |
| 198 | memcg_nr_cache_ids * sizeof(void *)); |
Vladimir Davydov | 6f817f4 | 2014-10-09 15:28:47 -0700 | [diff] [blame] | 199 | |
Vladimir Davydov | f7ce319 | 2015-02-12 14:59:20 -0800 | [diff] [blame] | 200 | rcu_assign_pointer(s->memcg_params.memcg_caches, new); |
| 201 | if (old) |
| 202 | kfree_rcu(old, rcu); |
Vladimir Davydov | 6f817f4 | 2014-10-09 15:28:47 -0700 | [diff] [blame] | 203 | return 0; |
| 204 | } |
| 205 | |
Glauber Costa | 55007d8 | 2012-12-18 14:22:38 -0800 | [diff] [blame] | 206 | int memcg_update_all_caches(int num_memcgs) |
| 207 | { |
| 208 | struct kmem_cache *s; |
| 209 | int ret = 0; |
Glauber Costa | 55007d8 | 2012-12-18 14:22:38 -0800 | [diff] [blame] | 210 | |
Vladimir Davydov | 05257a1 | 2015-02-12 14:59:01 -0800 | [diff] [blame] | 211 | mutex_lock(&slab_mutex); |
Glauber Costa | 55007d8 | 2012-12-18 14:22:38 -0800 | [diff] [blame] | 212 | list_for_each_entry(s, &slab_caches, list) { |
Vladimir Davydov | f7ce319 | 2015-02-12 14:59:20 -0800 | [diff] [blame] | 213 | ret = update_memcg_params(s, num_memcgs); |
Glauber Costa | 55007d8 | 2012-12-18 14:22:38 -0800 | [diff] [blame] | 214 | /* |
Glauber Costa | 55007d8 | 2012-12-18 14:22:38 -0800 | [diff] [blame] | 215 | * Instead of freeing the memory, we'll just leave the caches |
| 216 | * up to this point in an updated state. |
| 217 | */ |
| 218 | if (ret) |
Vladimir Davydov | 05257a1 | 2015-02-12 14:59:01 -0800 | [diff] [blame] | 219 | break; |
Glauber Costa | 55007d8 | 2012-12-18 14:22:38 -0800 | [diff] [blame] | 220 | } |
Glauber Costa | 55007d8 | 2012-12-18 14:22:38 -0800 | [diff] [blame] | 221 | mutex_unlock(&slab_mutex); |
| 222 | return ret; |
| 223 | } |
Tejun Heo | 657dc2f | 2017-02-22 15:41:14 -0800 | [diff] [blame] | 224 | |
| 225 | static void unlink_memcg_cache(struct kmem_cache *s) |
| 226 | { |
Tejun Heo | 9eeadc8 | 2017-02-22 15:41:17 -0800 | [diff] [blame] | 227 | list_del(&s->memcg_params.children_node); |
Tejun Heo | bc2791f | 2017-02-22 15:41:21 -0800 | [diff] [blame^] | 228 | list_del(&s->memcg_params.kmem_caches_node); |
Tejun Heo | 657dc2f | 2017-02-22 15:41:14 -0800 | [diff] [blame] | 229 | } |
Vladimir Davydov | 33a690c | 2014-10-09 15:28:43 -0700 | [diff] [blame] | 230 | #else |
Vladimir Davydov | f7ce319 | 2015-02-12 14:59:20 -0800 | [diff] [blame] | 231 | static inline int init_memcg_params(struct kmem_cache *s, |
| 232 | struct mem_cgroup *memcg, struct kmem_cache *root_cache) |
Vladimir Davydov | 33a690c | 2014-10-09 15:28:43 -0700 | [diff] [blame] | 233 | { |
| 234 | return 0; |
| 235 | } |
| 236 | |
Vladimir Davydov | f7ce319 | 2015-02-12 14:59:20 -0800 | [diff] [blame] | 237 | static inline void destroy_memcg_params(struct kmem_cache *s) |
Vladimir Davydov | 33a690c | 2014-10-09 15:28:43 -0700 | [diff] [blame] | 238 | { |
| 239 | } |
Tejun Heo | 657dc2f | 2017-02-22 15:41:14 -0800 | [diff] [blame] | 240 | |
| 241 | static inline void unlink_memcg_cache(struct kmem_cache *s) |
| 242 | { |
| 243 | } |
Johannes Weiner | 127424c | 2016-01-20 15:02:32 -0800 | [diff] [blame] | 244 | #endif /* CONFIG_MEMCG && !CONFIG_SLOB */ |
Glauber Costa | 55007d8 | 2012-12-18 14:22:38 -0800 | [diff] [blame] | 245 | |
Christoph Lameter | 039363f | 2012-07-06 15:25:10 -0500 | [diff] [blame] | 246 | /* |
Joonsoo Kim | 423c929 | 2014-10-09 15:26:22 -0700 | [diff] [blame] | 247 | * Find a mergeable slab cache |
| 248 | */ |
| 249 | int slab_unmergeable(struct kmem_cache *s) |
| 250 | { |
| 251 | if (slab_nomerge || (s->flags & SLAB_NEVER_MERGE)) |
| 252 | return 1; |
| 253 | |
| 254 | if (!is_root_cache(s)) |
| 255 | return 1; |
| 256 | |
| 257 | if (s->ctor) |
| 258 | return 1; |
| 259 | |
| 260 | /* |
| 261 | * We may have set a slab to be unmergeable during bootstrap. |
| 262 | */ |
| 263 | if (s->refcount < 0) |
| 264 | return 1; |
| 265 | |
| 266 | return 0; |
| 267 | } |
| 268 | |
| 269 | struct kmem_cache *find_mergeable(size_t size, size_t align, |
| 270 | unsigned long flags, const char *name, void (*ctor)(void *)) |
| 271 | { |
| 272 | struct kmem_cache *s; |
| 273 | |
Grygorii Maistrenko | c6e2889 | 2017-02-22 15:40:59 -0800 | [diff] [blame] | 274 | if (slab_nomerge) |
Joonsoo Kim | 423c929 | 2014-10-09 15:26:22 -0700 | [diff] [blame] | 275 | return NULL; |
| 276 | |
| 277 | if (ctor) |
| 278 | return NULL; |
| 279 | |
| 280 | size = ALIGN(size, sizeof(void *)); |
| 281 | align = calculate_alignment(flags, align, size); |
| 282 | size = ALIGN(size, align); |
| 283 | flags = kmem_cache_flags(size, flags, name, NULL); |
| 284 | |
Grygorii Maistrenko | c6e2889 | 2017-02-22 15:40:59 -0800 | [diff] [blame] | 285 | if (flags & SLAB_NEVER_MERGE) |
| 286 | return NULL; |
| 287 | |
Joonsoo Kim | 5436205 | 2014-12-10 15:42:18 -0800 | [diff] [blame] | 288 | list_for_each_entry_reverse(s, &slab_caches, list) { |
Joonsoo Kim | 423c929 | 2014-10-09 15:26:22 -0700 | [diff] [blame] | 289 | if (slab_unmergeable(s)) |
| 290 | continue; |
| 291 | |
| 292 | if (size > s->size) |
| 293 | continue; |
| 294 | |
| 295 | if ((flags & SLAB_MERGE_SAME) != (s->flags & SLAB_MERGE_SAME)) |
| 296 | continue; |
| 297 | /* |
| 298 | * Check if alignment is compatible. |
| 299 | * Courtesy of Adrian Drzewiecki |
| 300 | */ |
| 301 | if ((s->size & ~(align - 1)) != s->size) |
| 302 | continue; |
| 303 | |
| 304 | if (s->size - size >= sizeof(void *)) |
| 305 | continue; |
| 306 | |
Joonsoo Kim | 95069ac8 | 2014-11-13 15:19:25 -0800 | [diff] [blame] | 307 | if (IS_ENABLED(CONFIG_SLAB) && align && |
| 308 | (align > s->align || s->align % align)) |
| 309 | continue; |
| 310 | |
Joonsoo Kim | 423c929 | 2014-10-09 15:26:22 -0700 | [diff] [blame] | 311 | return s; |
| 312 | } |
| 313 | return NULL; |
| 314 | } |
| 315 | |
| 316 | /* |
Christoph Lameter | 4590685 | 2012-11-28 16:23:16 +0000 | [diff] [blame] | 317 | * Figure out what the alignment of the objects will be given a set of |
| 318 | * flags, a user specified alignment and the size of the objects. |
| 319 | */ |
| 320 | unsigned long calculate_alignment(unsigned long flags, |
| 321 | unsigned long align, unsigned long size) |
| 322 | { |
| 323 | /* |
| 324 | * If the user wants hardware cache aligned objects then follow that |
| 325 | * suggestion if the object is sufficiently large. |
| 326 | * |
| 327 | * The hardware cache alignment cannot override the specified |
| 328 | * alignment though. If that is greater then use it. |
| 329 | */ |
| 330 | if (flags & SLAB_HWCACHE_ALIGN) { |
| 331 | unsigned long ralign = cache_line_size(); |
| 332 | while (size <= ralign / 2) |
| 333 | ralign /= 2; |
| 334 | align = max(align, ralign); |
| 335 | } |
| 336 | |
| 337 | if (align < ARCH_SLAB_MINALIGN) |
| 338 | align = ARCH_SLAB_MINALIGN; |
| 339 | |
| 340 | return ALIGN(align, sizeof(void *)); |
| 341 | } |
| 342 | |
Vladimir Davydov | c9a77a7 | 2015-11-05 18:45:08 -0800 | [diff] [blame] | 343 | static struct kmem_cache *create_cache(const char *name, |
| 344 | size_t object_size, size_t size, size_t align, |
| 345 | unsigned long flags, void (*ctor)(void *), |
| 346 | struct mem_cgroup *memcg, struct kmem_cache *root_cache) |
Vladimir Davydov | 794b124 | 2014-04-07 15:39:26 -0700 | [diff] [blame] | 347 | { |
| 348 | struct kmem_cache *s; |
| 349 | int err; |
| 350 | |
| 351 | err = -ENOMEM; |
| 352 | s = kmem_cache_zalloc(kmem_cache, GFP_KERNEL); |
| 353 | if (!s) |
| 354 | goto out; |
| 355 | |
| 356 | s->name = name; |
| 357 | s->object_size = object_size; |
| 358 | s->size = size; |
| 359 | s->align = align; |
| 360 | s->ctor = ctor; |
| 361 | |
Vladimir Davydov | f7ce319 | 2015-02-12 14:59:20 -0800 | [diff] [blame] | 362 | err = init_memcg_params(s, memcg, root_cache); |
Vladimir Davydov | 794b124 | 2014-04-07 15:39:26 -0700 | [diff] [blame] | 363 | if (err) |
| 364 | goto out_free_cache; |
| 365 | |
| 366 | err = __kmem_cache_create(s, flags); |
| 367 | if (err) |
| 368 | goto out_free_cache; |
| 369 | |
| 370 | s->refcount = 1; |
| 371 | list_add(&s->list, &slab_caches); |
Vladimir Davydov | 794b124 | 2014-04-07 15:39:26 -0700 | [diff] [blame] | 372 | out: |
| 373 | if (err) |
| 374 | return ERR_PTR(err); |
| 375 | return s; |
| 376 | |
| 377 | out_free_cache: |
Vladimir Davydov | f7ce319 | 2015-02-12 14:59:20 -0800 | [diff] [blame] | 378 | destroy_memcg_params(s); |
Vaishali Thakkar | 7c4da06 | 2015-02-10 14:09:40 -0800 | [diff] [blame] | 379 | kmem_cache_free(kmem_cache, s); |
Vladimir Davydov | 794b124 | 2014-04-07 15:39:26 -0700 | [diff] [blame] | 380 | goto out; |
| 381 | } |
Christoph Lameter | 4590685 | 2012-11-28 16:23:16 +0000 | [diff] [blame] | 382 | |
| 383 | /* |
Christoph Lameter | 039363f | 2012-07-06 15:25:10 -0500 | [diff] [blame] | 384 | * kmem_cache_create - Create a cache. |
| 385 | * @name: A string which is used in /proc/slabinfo to identify this cache. |
| 386 | * @size: The size of objects to be created in this cache. |
| 387 | * @align: The required alignment for the objects. |
| 388 | * @flags: SLAB flags |
| 389 | * @ctor: A constructor for the objects. |
| 390 | * |
| 391 | * Returns a ptr to the cache on success, NULL on failure. |
| 392 | * Cannot be called within a interrupt, but can be interrupted. |
| 393 | * The @ctor is run when new pages are allocated by the cache. |
| 394 | * |
| 395 | * The flags are |
| 396 | * |
| 397 | * %SLAB_POISON - Poison the slab with a known test pattern (a5a5a5a5) |
| 398 | * to catch references to uninitialised memory. |
| 399 | * |
| 400 | * %SLAB_RED_ZONE - Insert `Red' zones around the allocated memory to check |
| 401 | * for buffer overruns. |
| 402 | * |
| 403 | * %SLAB_HWCACHE_ALIGN - Align the objects in this cache to a hardware |
| 404 | * cacheline. This can be beneficial if you're counting cycles as closely |
| 405 | * as davem. |
| 406 | */ |
Glauber Costa | 2633d7a | 2012-12-18 14:22:34 -0800 | [diff] [blame] | 407 | struct kmem_cache * |
Vladimir Davydov | 794b124 | 2014-04-07 15:39:26 -0700 | [diff] [blame] | 408 | kmem_cache_create(const char *name, size_t size, size_t align, |
| 409 | unsigned long flags, void (*ctor)(void *)) |
Christoph Lameter | 039363f | 2012-07-06 15:25:10 -0500 | [diff] [blame] | 410 | { |
Alexandru Moise | 40911a7 | 2015-11-05 18:45:43 -0800 | [diff] [blame] | 411 | struct kmem_cache *s = NULL; |
Andrzej Hajda | 3dec16e | 2015-02-13 14:36:38 -0800 | [diff] [blame] | 412 | const char *cache_name; |
Vladimir Davydov | 3965fc3 | 2014-01-23 15:52:55 -0800 | [diff] [blame] | 413 | int err; |
Christoph Lameter | 039363f | 2012-07-06 15:25:10 -0500 | [diff] [blame] | 414 | |
Pekka Enberg | b920536 | 2012-08-16 10:12:18 +0300 | [diff] [blame] | 415 | get_online_cpus(); |
Vladimir Davydov | 03afc0e | 2014-06-04 16:07:20 -0700 | [diff] [blame] | 416 | get_online_mems(); |
Vladimir Davydov | 05257a1 | 2015-02-12 14:59:01 -0800 | [diff] [blame] | 417 | memcg_get_cache_ids(); |
Vladimir Davydov | 03afc0e | 2014-06-04 16:07:20 -0700 | [diff] [blame] | 418 | |
Pekka Enberg | b920536 | 2012-08-16 10:12:18 +0300 | [diff] [blame] | 419 | mutex_lock(&slab_mutex); |
Christoph Lameter | 686d550 | 2012-09-05 00:20:33 +0000 | [diff] [blame] | 420 | |
Vladimir Davydov | 794b124 | 2014-04-07 15:39:26 -0700 | [diff] [blame] | 421 | err = kmem_cache_sanity_check(name, size); |
Andrew Morton | 3aa24f5 | 2014-10-09 15:25:58 -0700 | [diff] [blame] | 422 | if (err) { |
Vladimir Davydov | 3965fc3 | 2014-01-23 15:52:55 -0800 | [diff] [blame] | 423 | goto out_unlock; |
Andrew Morton | 3aa24f5 | 2014-10-09 15:25:58 -0700 | [diff] [blame] | 424 | } |
Christoph Lameter | 686d550 | 2012-09-05 00:20:33 +0000 | [diff] [blame] | 425 | |
Thomas Garnier | e70954f | 2016-12-12 16:41:38 -0800 | [diff] [blame] | 426 | /* Refuse requests with allocator specific flags */ |
| 427 | if (flags & ~SLAB_FLAGS_PERMITTED) { |
| 428 | err = -EINVAL; |
| 429 | goto out_unlock; |
| 430 | } |
| 431 | |
Glauber Costa | d884392 | 2012-10-17 15:36:51 +0400 | [diff] [blame] | 432 | /* |
| 433 | * Some allocators will constraint the set of valid flags to a subset |
| 434 | * of all flags. We expect them to define CACHE_CREATE_MASK in this |
| 435 | * case, and we'll just provide them with a sanitized version of the |
| 436 | * passed flags. |
| 437 | */ |
| 438 | flags &= CACHE_CREATE_MASK; |
Christoph Lameter | 686d550 | 2012-09-05 00:20:33 +0000 | [diff] [blame] | 439 | |
Vladimir Davydov | 794b124 | 2014-04-07 15:39:26 -0700 | [diff] [blame] | 440 | s = __kmem_cache_alias(name, size, align, flags, ctor); |
| 441 | if (s) |
Vladimir Davydov | 3965fc3 | 2014-01-23 15:52:55 -0800 | [diff] [blame] | 442 | goto out_unlock; |
Glauber Costa | 2633d7a | 2012-12-18 14:22:34 -0800 | [diff] [blame] | 443 | |
Andrzej Hajda | 3dec16e | 2015-02-13 14:36:38 -0800 | [diff] [blame] | 444 | cache_name = kstrdup_const(name, GFP_KERNEL); |
Vladimir Davydov | 794b124 | 2014-04-07 15:39:26 -0700 | [diff] [blame] | 445 | if (!cache_name) { |
| 446 | err = -ENOMEM; |
| 447 | goto out_unlock; |
| 448 | } |
Glauber Costa | 2633d7a | 2012-12-18 14:22:34 -0800 | [diff] [blame] | 449 | |
Vladimir Davydov | c9a77a7 | 2015-11-05 18:45:08 -0800 | [diff] [blame] | 450 | s = create_cache(cache_name, size, size, |
| 451 | calculate_alignment(flags, align, size), |
| 452 | flags, ctor, NULL, NULL); |
Vladimir Davydov | 794b124 | 2014-04-07 15:39:26 -0700 | [diff] [blame] | 453 | if (IS_ERR(s)) { |
| 454 | err = PTR_ERR(s); |
Andrzej Hajda | 3dec16e | 2015-02-13 14:36:38 -0800 | [diff] [blame] | 455 | kfree_const(cache_name); |
Vladimir Davydov | 794b124 | 2014-04-07 15:39:26 -0700 | [diff] [blame] | 456 | } |
Vladimir Davydov | 3965fc3 | 2014-01-23 15:52:55 -0800 | [diff] [blame] | 457 | |
| 458 | out_unlock: |
Christoph Lameter | 20cea96 | 2012-07-06 15:25:13 -0500 | [diff] [blame] | 459 | mutex_unlock(&slab_mutex); |
Vladimir Davydov | 03afc0e | 2014-06-04 16:07:20 -0700 | [diff] [blame] | 460 | |
Vladimir Davydov | 05257a1 | 2015-02-12 14:59:01 -0800 | [diff] [blame] | 461 | memcg_put_cache_ids(); |
Vladimir Davydov | 03afc0e | 2014-06-04 16:07:20 -0700 | [diff] [blame] | 462 | put_online_mems(); |
Christoph Lameter | 20cea96 | 2012-07-06 15:25:13 -0500 | [diff] [blame] | 463 | put_online_cpus(); |
| 464 | |
Dave Jones | ba3253c | 2014-01-29 14:05:48 -0800 | [diff] [blame] | 465 | if (err) { |
Christoph Lameter | 686d550 | 2012-09-05 00:20:33 +0000 | [diff] [blame] | 466 | if (flags & SLAB_PANIC) |
| 467 | panic("kmem_cache_create: Failed to create slab '%s'. Error %d\n", |
| 468 | name, err); |
| 469 | else { |
Joe Perches | 1170532 | 2016-03-17 14:19:50 -0700 | [diff] [blame] | 470 | pr_warn("kmem_cache_create(%s) failed with error %d\n", |
Christoph Lameter | 686d550 | 2012-09-05 00:20:33 +0000 | [diff] [blame] | 471 | name, err); |
| 472 | dump_stack(); |
| 473 | } |
Christoph Lameter | 686d550 | 2012-09-05 00:20:33 +0000 | [diff] [blame] | 474 | return NULL; |
| 475 | } |
Christoph Lameter | 039363f | 2012-07-06 15:25:10 -0500 | [diff] [blame] | 476 | return s; |
Glauber Costa | 2633d7a | 2012-12-18 14:22:34 -0800 | [diff] [blame] | 477 | } |
Christoph Lameter | 039363f | 2012-07-06 15:25:10 -0500 | [diff] [blame] | 478 | EXPORT_SYMBOL(kmem_cache_create); |
Christoph Lameter | 97d0660 | 2012-07-06 15:25:11 -0500 | [diff] [blame] | 479 | |
Tejun Heo | 657dc2f | 2017-02-22 15:41:14 -0800 | [diff] [blame] | 480 | static void slab_caches_to_rcu_destroy_workfn(struct work_struct *work) |
Vladimir Davydov | d5b3cf7 | 2015-02-10 14:11:47 -0800 | [diff] [blame] | 481 | { |
Tejun Heo | 657dc2f | 2017-02-22 15:41:14 -0800 | [diff] [blame] | 482 | LIST_HEAD(to_destroy); |
Vladimir Davydov | d5b3cf7 | 2015-02-10 14:11:47 -0800 | [diff] [blame] | 483 | struct kmem_cache *s, *s2; |
| 484 | |
Tejun Heo | 657dc2f | 2017-02-22 15:41:14 -0800 | [diff] [blame] | 485 | /* |
| 486 | * On destruction, SLAB_DESTROY_BY_RCU kmem_caches are put on the |
| 487 | * @slab_caches_to_rcu_destroy list. The slab pages are freed |
| 488 | * through RCU and and the associated kmem_cache are dereferenced |
| 489 | * while freeing the pages, so the kmem_caches should be freed only |
| 490 | * after the pending RCU operations are finished. As rcu_barrier() |
| 491 | * is a pretty slow operation, we batch all pending destructions |
| 492 | * asynchronously. |
| 493 | */ |
| 494 | mutex_lock(&slab_mutex); |
| 495 | list_splice_init(&slab_caches_to_rcu_destroy, &to_destroy); |
| 496 | mutex_unlock(&slab_mutex); |
Vladimir Davydov | d5b3cf7 | 2015-02-10 14:11:47 -0800 | [diff] [blame] | 497 | |
Tejun Heo | 657dc2f | 2017-02-22 15:41:14 -0800 | [diff] [blame] | 498 | if (list_empty(&to_destroy)) |
| 499 | return; |
| 500 | |
| 501 | rcu_barrier(); |
| 502 | |
| 503 | list_for_each_entry_safe(s, s2, &to_destroy, list) { |
Vladimir Davydov | d5b3cf7 | 2015-02-10 14:11:47 -0800 | [diff] [blame] | 504 | #ifdef SLAB_SUPPORTS_SYSFS |
Tejun Heo | bf5eb3d | 2017-02-22 15:41:11 -0800 | [diff] [blame] | 505 | sysfs_slab_release(s); |
Vladimir Davydov | d5b3cf7 | 2015-02-10 14:11:47 -0800 | [diff] [blame] | 506 | #else |
| 507 | slab_kmem_cache_release(s); |
| 508 | #endif |
| 509 | } |
| 510 | } |
| 511 | |
Tejun Heo | 657dc2f | 2017-02-22 15:41:14 -0800 | [diff] [blame] | 512 | static int shutdown_cache(struct kmem_cache *s) |
| 513 | { |
| 514 | if (__kmem_cache_shutdown(s) != 0) |
| 515 | return -EBUSY; |
| 516 | |
| 517 | list_del(&s->list); |
| 518 | if (!is_root_cache(s)) |
| 519 | unlink_memcg_cache(s); |
| 520 | |
| 521 | if (s->flags & SLAB_DESTROY_BY_RCU) { |
| 522 | list_add_tail(&s->list, &slab_caches_to_rcu_destroy); |
| 523 | schedule_work(&slab_caches_to_rcu_destroy_work); |
| 524 | } else { |
| 525 | #ifdef SLAB_SUPPORTS_SYSFS |
| 526 | sysfs_slab_release(s); |
| 527 | #else |
| 528 | slab_kmem_cache_release(s); |
| 529 | #endif |
| 530 | } |
| 531 | |
| 532 | return 0; |
| 533 | } |
| 534 | |
Johannes Weiner | 127424c | 2016-01-20 15:02:32 -0800 | [diff] [blame] | 535 | #if defined(CONFIG_MEMCG) && !defined(CONFIG_SLOB) |
Vladimir Davydov | 794b124 | 2014-04-07 15:39:26 -0700 | [diff] [blame] | 536 | /* |
Vladimir Davydov | 776ed0f | 2014-06-04 16:10:02 -0700 | [diff] [blame] | 537 | * memcg_create_kmem_cache - Create a cache for a memory cgroup. |
Vladimir Davydov | 794b124 | 2014-04-07 15:39:26 -0700 | [diff] [blame] | 538 | * @memcg: The memory cgroup the new cache is for. |
| 539 | * @root_cache: The parent of the new cache. |
| 540 | * |
| 541 | * This function attempts to create a kmem cache that will serve allocation |
| 542 | * requests going from @memcg to @root_cache. The new cache inherits properties |
| 543 | * from its parent. |
| 544 | */ |
Vladimir Davydov | d5b3cf7 | 2015-02-10 14:11:47 -0800 | [diff] [blame] | 545 | void memcg_create_kmem_cache(struct mem_cgroup *memcg, |
| 546 | struct kmem_cache *root_cache) |
Vladimir Davydov | 794b124 | 2014-04-07 15:39:26 -0700 | [diff] [blame] | 547 | { |
Vladimir Davydov | 3e0350a | 2015-02-10 14:11:44 -0800 | [diff] [blame] | 548 | static char memcg_name_buf[NAME_MAX + 1]; /* protected by slab_mutex */ |
Michal Hocko | 33398cf | 2015-09-08 15:01:02 -0700 | [diff] [blame] | 549 | struct cgroup_subsys_state *css = &memcg->css; |
Vladimir Davydov | f7ce319 | 2015-02-12 14:59:20 -0800 | [diff] [blame] | 550 | struct memcg_cache_array *arr; |
Vladimir Davydov | bd67314 | 2014-06-04 16:07:40 -0700 | [diff] [blame] | 551 | struct kmem_cache *s = NULL; |
Vladimir Davydov | 794b124 | 2014-04-07 15:39:26 -0700 | [diff] [blame] | 552 | char *cache_name; |
Vladimir Davydov | f7ce319 | 2015-02-12 14:59:20 -0800 | [diff] [blame] | 553 | int idx; |
Vladimir Davydov | 794b124 | 2014-04-07 15:39:26 -0700 | [diff] [blame] | 554 | |
| 555 | get_online_cpus(); |
Vladimir Davydov | 03afc0e | 2014-06-04 16:07:20 -0700 | [diff] [blame] | 556 | get_online_mems(); |
| 557 | |
Vladimir Davydov | 794b124 | 2014-04-07 15:39:26 -0700 | [diff] [blame] | 558 | mutex_lock(&slab_mutex); |
| 559 | |
Vladimir Davydov | 2a4db7e | 2015-02-12 14:59:32 -0800 | [diff] [blame] | 560 | /* |
Johannes Weiner | 567e9ab | 2016-01-20 15:02:24 -0800 | [diff] [blame] | 561 | * The memory cgroup could have been offlined while the cache |
Vladimir Davydov | 2a4db7e | 2015-02-12 14:59:32 -0800 | [diff] [blame] | 562 | * creation work was pending. |
| 563 | */ |
Vladimir Davydov | b6ecd2d | 2016-03-17 14:18:33 -0700 | [diff] [blame] | 564 | if (memcg->kmem_state != KMEM_ONLINE) |
Vladimir Davydov | 2a4db7e | 2015-02-12 14:59:32 -0800 | [diff] [blame] | 565 | goto out_unlock; |
| 566 | |
Vladimir Davydov | f7ce319 | 2015-02-12 14:59:20 -0800 | [diff] [blame] | 567 | idx = memcg_cache_id(memcg); |
| 568 | arr = rcu_dereference_protected(root_cache->memcg_params.memcg_caches, |
| 569 | lockdep_is_held(&slab_mutex)); |
| 570 | |
Vladimir Davydov | d5b3cf7 | 2015-02-10 14:11:47 -0800 | [diff] [blame] | 571 | /* |
| 572 | * Since per-memcg caches are created asynchronously on first |
| 573 | * allocation (see memcg_kmem_get_cache()), several threads can try to |
| 574 | * create the same cache, but only one of them may succeed. |
| 575 | */ |
Vladimir Davydov | f7ce319 | 2015-02-12 14:59:20 -0800 | [diff] [blame] | 576 | if (arr->entries[idx]) |
Vladimir Davydov | d5b3cf7 | 2015-02-10 14:11:47 -0800 | [diff] [blame] | 577 | goto out_unlock; |
| 578 | |
Vladimir Davydov | f100836 | 2015-02-12 14:59:29 -0800 | [diff] [blame] | 579 | cgroup_name(css->cgroup, memcg_name_buf, sizeof(memcg_name_buf)); |
Johannes Weiner | 73f576c | 2016-07-20 15:44:57 -0700 | [diff] [blame] | 580 | cache_name = kasprintf(GFP_KERNEL, "%s(%llu:%s)", root_cache->name, |
| 581 | css->serial_nr, memcg_name_buf); |
Vladimir Davydov | 794b124 | 2014-04-07 15:39:26 -0700 | [diff] [blame] | 582 | if (!cache_name) |
| 583 | goto out_unlock; |
| 584 | |
Vladimir Davydov | c9a77a7 | 2015-11-05 18:45:08 -0800 | [diff] [blame] | 585 | s = create_cache(cache_name, root_cache->object_size, |
| 586 | root_cache->size, root_cache->align, |
Greg Thelen | f773e36 | 2016-11-10 10:46:41 -0800 | [diff] [blame] | 587 | root_cache->flags & CACHE_CREATE_MASK, |
| 588 | root_cache->ctor, memcg, root_cache); |
Vladimir Davydov | d5b3cf7 | 2015-02-10 14:11:47 -0800 | [diff] [blame] | 589 | /* |
| 590 | * If we could not create a memcg cache, do not complain, because |
| 591 | * that's not critical at all as we can always proceed with the root |
| 592 | * cache. |
| 593 | */ |
Vladimir Davydov | bd67314 | 2014-06-04 16:07:40 -0700 | [diff] [blame] | 594 | if (IS_ERR(s)) { |
Vladimir Davydov | 794b124 | 2014-04-07 15:39:26 -0700 | [diff] [blame] | 595 | kfree(cache_name); |
Vladimir Davydov | d5b3cf7 | 2015-02-10 14:11:47 -0800 | [diff] [blame] | 596 | goto out_unlock; |
Vladimir Davydov | bd67314 | 2014-06-04 16:07:40 -0700 | [diff] [blame] | 597 | } |
Vladimir Davydov | 794b124 | 2014-04-07 15:39:26 -0700 | [diff] [blame] | 598 | |
Tejun Heo | 9eeadc8 | 2017-02-22 15:41:17 -0800 | [diff] [blame] | 599 | list_add(&s->memcg_params.children_node, |
| 600 | &root_cache->memcg_params.children); |
Tejun Heo | bc2791f | 2017-02-22 15:41:21 -0800 | [diff] [blame^] | 601 | list_add(&s->memcg_params.kmem_caches_node, &memcg->kmem_caches); |
Vladimir Davydov | 426589f | 2015-02-12 14:59:23 -0800 | [diff] [blame] | 602 | |
Vladimir Davydov | d5b3cf7 | 2015-02-10 14:11:47 -0800 | [diff] [blame] | 603 | /* |
| 604 | * Since readers won't lock (see cache_from_memcg_idx()), we need a |
| 605 | * barrier here to ensure nobody will see the kmem_cache partially |
| 606 | * initialized. |
| 607 | */ |
| 608 | smp_wmb(); |
Vladimir Davydov | f7ce319 | 2015-02-12 14:59:20 -0800 | [diff] [blame] | 609 | arr->entries[idx] = s; |
Vladimir Davydov | d5b3cf7 | 2015-02-10 14:11:47 -0800 | [diff] [blame] | 610 | |
Vladimir Davydov | 794b124 | 2014-04-07 15:39:26 -0700 | [diff] [blame] | 611 | out_unlock: |
| 612 | mutex_unlock(&slab_mutex); |
Vladimir Davydov | 03afc0e | 2014-06-04 16:07:20 -0700 | [diff] [blame] | 613 | |
| 614 | put_online_mems(); |
Vladimir Davydov | 794b124 | 2014-04-07 15:39:26 -0700 | [diff] [blame] | 615 | put_online_cpus(); |
| 616 | } |
Vladimir Davydov | b852990 | 2014-04-07 15:39:28 -0700 | [diff] [blame] | 617 | |
Vladimir Davydov | 2a4db7e | 2015-02-12 14:59:32 -0800 | [diff] [blame] | 618 | void memcg_deactivate_kmem_caches(struct mem_cgroup *memcg) |
| 619 | { |
| 620 | int idx; |
| 621 | struct memcg_cache_array *arr; |
Vladimir Davydov | d6e0b7f | 2015-02-12 14:59:47 -0800 | [diff] [blame] | 622 | struct kmem_cache *s, *c; |
Vladimir Davydov | 2a4db7e | 2015-02-12 14:59:32 -0800 | [diff] [blame] | 623 | |
| 624 | idx = memcg_cache_id(memcg); |
| 625 | |
Vladimir Davydov | d6e0b7f | 2015-02-12 14:59:47 -0800 | [diff] [blame] | 626 | get_online_cpus(); |
| 627 | get_online_mems(); |
| 628 | |
Vladimir Davydov | 2a4db7e | 2015-02-12 14:59:32 -0800 | [diff] [blame] | 629 | mutex_lock(&slab_mutex); |
| 630 | list_for_each_entry(s, &slab_caches, list) { |
| 631 | if (!is_root_cache(s)) |
| 632 | continue; |
| 633 | |
| 634 | arr = rcu_dereference_protected(s->memcg_params.memcg_caches, |
| 635 | lockdep_is_held(&slab_mutex)); |
Vladimir Davydov | d6e0b7f | 2015-02-12 14:59:47 -0800 | [diff] [blame] | 636 | c = arr->entries[idx]; |
| 637 | if (!c) |
| 638 | continue; |
| 639 | |
Tejun Heo | 290b6a5 | 2017-02-22 15:41:08 -0800 | [diff] [blame] | 640 | __kmem_cache_shrink(c, true); |
Vladimir Davydov | 2a4db7e | 2015-02-12 14:59:32 -0800 | [diff] [blame] | 641 | arr->entries[idx] = NULL; |
| 642 | } |
| 643 | mutex_unlock(&slab_mutex); |
Vladimir Davydov | d6e0b7f | 2015-02-12 14:59:47 -0800 | [diff] [blame] | 644 | |
| 645 | put_online_mems(); |
| 646 | put_online_cpus(); |
Vladimir Davydov | 2a4db7e | 2015-02-12 14:59:32 -0800 | [diff] [blame] | 647 | } |
| 648 | |
Vladimir Davydov | d5b3cf7 | 2015-02-10 14:11:47 -0800 | [diff] [blame] | 649 | void memcg_destroy_kmem_caches(struct mem_cgroup *memcg) |
Vladimir Davydov | b852990 | 2014-04-07 15:39:28 -0700 | [diff] [blame] | 650 | { |
Vladimir Davydov | d5b3cf7 | 2015-02-10 14:11:47 -0800 | [diff] [blame] | 651 | struct kmem_cache *s, *s2; |
Vladimir Davydov | b852990 | 2014-04-07 15:39:28 -0700 | [diff] [blame] | 652 | |
Vladimir Davydov | d5b3cf7 | 2015-02-10 14:11:47 -0800 | [diff] [blame] | 653 | get_online_cpus(); |
| 654 | get_online_mems(); |
Vladimir Davydov | b852990 | 2014-04-07 15:39:28 -0700 | [diff] [blame] | 655 | |
Vladimir Davydov | b852990 | 2014-04-07 15:39:28 -0700 | [diff] [blame] | 656 | mutex_lock(&slab_mutex); |
Tejun Heo | bc2791f | 2017-02-22 15:41:21 -0800 | [diff] [blame^] | 657 | list_for_each_entry_safe(s, s2, &memcg->kmem_caches, |
| 658 | memcg_params.kmem_caches_node) { |
Vladimir Davydov | d5b3cf7 | 2015-02-10 14:11:47 -0800 | [diff] [blame] | 659 | /* |
| 660 | * The cgroup is about to be freed and therefore has no charges |
| 661 | * left. Hence, all its caches must be empty by now. |
| 662 | */ |
Tejun Heo | 657dc2f | 2017-02-22 15:41:14 -0800 | [diff] [blame] | 663 | BUG_ON(shutdown_cache(s)); |
Vladimir Davydov | d5b3cf7 | 2015-02-10 14:11:47 -0800 | [diff] [blame] | 664 | } |
| 665 | mutex_unlock(&slab_mutex); |
Vladimir Davydov | b852990 | 2014-04-07 15:39:28 -0700 | [diff] [blame] | 666 | |
Vladimir Davydov | d5b3cf7 | 2015-02-10 14:11:47 -0800 | [diff] [blame] | 667 | put_online_mems(); |
| 668 | put_online_cpus(); |
Vladimir Davydov | b852990 | 2014-04-07 15:39:28 -0700 | [diff] [blame] | 669 | } |
Vladimir Davydov | d60fdcc | 2015-11-05 18:45:11 -0800 | [diff] [blame] | 670 | |
Tejun Heo | 657dc2f | 2017-02-22 15:41:14 -0800 | [diff] [blame] | 671 | static int shutdown_memcg_caches(struct kmem_cache *s) |
Vladimir Davydov | d60fdcc | 2015-11-05 18:45:11 -0800 | [diff] [blame] | 672 | { |
| 673 | struct memcg_cache_array *arr; |
| 674 | struct kmem_cache *c, *c2; |
| 675 | LIST_HEAD(busy); |
| 676 | int i; |
| 677 | |
| 678 | BUG_ON(!is_root_cache(s)); |
| 679 | |
| 680 | /* |
| 681 | * First, shutdown active caches, i.e. caches that belong to online |
| 682 | * memory cgroups. |
| 683 | */ |
| 684 | arr = rcu_dereference_protected(s->memcg_params.memcg_caches, |
| 685 | lockdep_is_held(&slab_mutex)); |
| 686 | for_each_memcg_cache_index(i) { |
| 687 | c = arr->entries[i]; |
| 688 | if (!c) |
| 689 | continue; |
Tejun Heo | 657dc2f | 2017-02-22 15:41:14 -0800 | [diff] [blame] | 690 | if (shutdown_cache(c)) |
Vladimir Davydov | d60fdcc | 2015-11-05 18:45:11 -0800 | [diff] [blame] | 691 | /* |
| 692 | * The cache still has objects. Move it to a temporary |
| 693 | * list so as not to try to destroy it for a second |
| 694 | * time while iterating over inactive caches below. |
| 695 | */ |
Tejun Heo | 9eeadc8 | 2017-02-22 15:41:17 -0800 | [diff] [blame] | 696 | list_move(&c->memcg_params.children_node, &busy); |
Vladimir Davydov | d60fdcc | 2015-11-05 18:45:11 -0800 | [diff] [blame] | 697 | else |
| 698 | /* |
| 699 | * The cache is empty and will be destroyed soon. Clear |
| 700 | * the pointer to it in the memcg_caches array so that |
| 701 | * it will never be accessed even if the root cache |
| 702 | * stays alive. |
| 703 | */ |
| 704 | arr->entries[i] = NULL; |
| 705 | } |
| 706 | |
| 707 | /* |
| 708 | * Second, shutdown all caches left from memory cgroups that are now |
| 709 | * offline. |
| 710 | */ |
Tejun Heo | 9eeadc8 | 2017-02-22 15:41:17 -0800 | [diff] [blame] | 711 | list_for_each_entry_safe(c, c2, &s->memcg_params.children, |
| 712 | memcg_params.children_node) |
Tejun Heo | 657dc2f | 2017-02-22 15:41:14 -0800 | [diff] [blame] | 713 | shutdown_cache(c); |
Vladimir Davydov | d60fdcc | 2015-11-05 18:45:11 -0800 | [diff] [blame] | 714 | |
Tejun Heo | 9eeadc8 | 2017-02-22 15:41:17 -0800 | [diff] [blame] | 715 | list_splice(&busy, &s->memcg_params.children); |
Vladimir Davydov | d60fdcc | 2015-11-05 18:45:11 -0800 | [diff] [blame] | 716 | |
| 717 | /* |
| 718 | * A cache being destroyed must be empty. In particular, this means |
| 719 | * that all per memcg caches attached to it must be empty too. |
| 720 | */ |
Tejun Heo | 9eeadc8 | 2017-02-22 15:41:17 -0800 | [diff] [blame] | 721 | if (!list_empty(&s->memcg_params.children)) |
Vladimir Davydov | d60fdcc | 2015-11-05 18:45:11 -0800 | [diff] [blame] | 722 | return -EBUSY; |
| 723 | return 0; |
| 724 | } |
| 725 | #else |
Tejun Heo | 657dc2f | 2017-02-22 15:41:14 -0800 | [diff] [blame] | 726 | static inline int shutdown_memcg_caches(struct kmem_cache *s) |
Vladimir Davydov | d60fdcc | 2015-11-05 18:45:11 -0800 | [diff] [blame] | 727 | { |
| 728 | return 0; |
| 729 | } |
Johannes Weiner | 127424c | 2016-01-20 15:02:32 -0800 | [diff] [blame] | 730 | #endif /* CONFIG_MEMCG && !CONFIG_SLOB */ |
Vladimir Davydov | 794b124 | 2014-04-07 15:39:26 -0700 | [diff] [blame] | 731 | |
Christoph Lameter | 41a2128 | 2014-05-06 12:50:08 -0700 | [diff] [blame] | 732 | void slab_kmem_cache_release(struct kmem_cache *s) |
| 733 | { |
Dmitry Safonov | 52b4b95 | 2016-02-17 13:11:37 -0800 | [diff] [blame] | 734 | __kmem_cache_release(s); |
Vladimir Davydov | f7ce319 | 2015-02-12 14:59:20 -0800 | [diff] [blame] | 735 | destroy_memcg_params(s); |
Andrzej Hajda | 3dec16e | 2015-02-13 14:36:38 -0800 | [diff] [blame] | 736 | kfree_const(s->name); |
Christoph Lameter | 41a2128 | 2014-05-06 12:50:08 -0700 | [diff] [blame] | 737 | kmem_cache_free(kmem_cache, s); |
| 738 | } |
| 739 | |
Christoph Lameter | 945cf2b | 2012-09-04 23:18:33 +0000 | [diff] [blame] | 740 | void kmem_cache_destroy(struct kmem_cache *s) |
| 741 | { |
Vladimir Davydov | d60fdcc | 2015-11-05 18:45:11 -0800 | [diff] [blame] | 742 | int err; |
Vladimir Davydov | d5b3cf7 | 2015-02-10 14:11:47 -0800 | [diff] [blame] | 743 | |
Sergey Senozhatsky | 3942d29 | 2015-09-08 15:00:50 -0700 | [diff] [blame] | 744 | if (unlikely(!s)) |
| 745 | return; |
| 746 | |
Christoph Lameter | 945cf2b | 2012-09-04 23:18:33 +0000 | [diff] [blame] | 747 | get_online_cpus(); |
Vladimir Davydov | 03afc0e | 2014-06-04 16:07:20 -0700 | [diff] [blame] | 748 | get_online_mems(); |
| 749 | |
Alexander Potapenko | 55834c5 | 2016-05-20 16:59:11 -0700 | [diff] [blame] | 750 | kasan_cache_destroy(s); |
Christoph Lameter | 945cf2b | 2012-09-04 23:18:33 +0000 | [diff] [blame] | 751 | mutex_lock(&slab_mutex); |
Vladimir Davydov | b852990 | 2014-04-07 15:39:28 -0700 | [diff] [blame] | 752 | |
Christoph Lameter | 945cf2b | 2012-09-04 23:18:33 +0000 | [diff] [blame] | 753 | s->refcount--; |
Vladimir Davydov | b852990 | 2014-04-07 15:39:28 -0700 | [diff] [blame] | 754 | if (s->refcount) |
| 755 | goto out_unlock; |
Christoph Lameter | 945cf2b | 2012-09-04 23:18:33 +0000 | [diff] [blame] | 756 | |
Tejun Heo | 657dc2f | 2017-02-22 15:41:14 -0800 | [diff] [blame] | 757 | err = shutdown_memcg_caches(s); |
Vladimir Davydov | d60fdcc | 2015-11-05 18:45:11 -0800 | [diff] [blame] | 758 | if (!err) |
Tejun Heo | 657dc2f | 2017-02-22 15:41:14 -0800 | [diff] [blame] | 759 | err = shutdown_cache(s); |
Vladimir Davydov | b852990 | 2014-04-07 15:39:28 -0700 | [diff] [blame] | 760 | |
Vladimir Davydov | cd918c5 | 2015-11-05 18:45:14 -0800 | [diff] [blame] | 761 | if (err) { |
Joe Perches | 756a025 | 2016-03-17 14:19:47 -0700 | [diff] [blame] | 762 | pr_err("kmem_cache_destroy %s: Slab cache still has objects\n", |
| 763 | s->name); |
Vladimir Davydov | cd918c5 | 2015-11-05 18:45:14 -0800 | [diff] [blame] | 764 | dump_stack(); |
| 765 | } |
Vladimir Davydov | b852990 | 2014-04-07 15:39:28 -0700 | [diff] [blame] | 766 | out_unlock: |
| 767 | mutex_unlock(&slab_mutex); |
Vladimir Davydov | d5b3cf7 | 2015-02-10 14:11:47 -0800 | [diff] [blame] | 768 | |
Vladimir Davydov | 03afc0e | 2014-06-04 16:07:20 -0700 | [diff] [blame] | 769 | put_online_mems(); |
Christoph Lameter | 945cf2b | 2012-09-04 23:18:33 +0000 | [diff] [blame] | 770 | put_online_cpus(); |
| 771 | } |
| 772 | EXPORT_SYMBOL(kmem_cache_destroy); |
| 773 | |
Vladimir Davydov | 03afc0e | 2014-06-04 16:07:20 -0700 | [diff] [blame] | 774 | /** |
| 775 | * kmem_cache_shrink - Shrink a cache. |
| 776 | * @cachep: The cache to shrink. |
| 777 | * |
| 778 | * Releases as many slabs as possible for a cache. |
| 779 | * To help debugging, a zero exit status indicates all slabs were released. |
| 780 | */ |
| 781 | int kmem_cache_shrink(struct kmem_cache *cachep) |
| 782 | { |
| 783 | int ret; |
| 784 | |
| 785 | get_online_cpus(); |
| 786 | get_online_mems(); |
Alexander Potapenko | 55834c5 | 2016-05-20 16:59:11 -0700 | [diff] [blame] | 787 | kasan_cache_shrink(cachep); |
Tejun Heo | 290b6a5 | 2017-02-22 15:41:08 -0800 | [diff] [blame] | 788 | ret = __kmem_cache_shrink(cachep, false); |
Vladimir Davydov | 03afc0e | 2014-06-04 16:07:20 -0700 | [diff] [blame] | 789 | put_online_mems(); |
| 790 | put_online_cpus(); |
| 791 | return ret; |
| 792 | } |
| 793 | EXPORT_SYMBOL(kmem_cache_shrink); |
| 794 | |
Denis Kirjanov | fda9012 | 2015-11-05 18:44:59 -0800 | [diff] [blame] | 795 | bool slab_is_available(void) |
Christoph Lameter | 97d0660 | 2012-07-06 15:25:11 -0500 | [diff] [blame] | 796 | { |
| 797 | return slab_state >= UP; |
| 798 | } |
Glauber Costa | b7454ad | 2012-10-19 18:20:25 +0400 | [diff] [blame] | 799 | |
Christoph Lameter | 45530c4 | 2012-11-28 16:23:07 +0000 | [diff] [blame] | 800 | #ifndef CONFIG_SLOB |
| 801 | /* Create a cache during boot when no slab services are available yet */ |
| 802 | void __init create_boot_cache(struct kmem_cache *s, const char *name, size_t size, |
| 803 | unsigned long flags) |
| 804 | { |
| 805 | int err; |
| 806 | |
| 807 | s->name = name; |
| 808 | s->size = s->object_size = size; |
Christoph Lameter | 4590685 | 2012-11-28 16:23:16 +0000 | [diff] [blame] | 809 | s->align = calculate_alignment(flags, ARCH_KMALLOC_MINALIGN, size); |
Vladimir Davydov | f7ce319 | 2015-02-12 14:59:20 -0800 | [diff] [blame] | 810 | |
| 811 | slab_init_memcg_params(s); |
| 812 | |
Christoph Lameter | 45530c4 | 2012-11-28 16:23:07 +0000 | [diff] [blame] | 813 | err = __kmem_cache_create(s, flags); |
| 814 | |
| 815 | if (err) |
Christoph Lameter | 31ba734 | 2013-01-10 19:00:53 +0000 | [diff] [blame] | 816 | panic("Creation of kmalloc slab %s size=%zu failed. Reason %d\n", |
Christoph Lameter | 45530c4 | 2012-11-28 16:23:07 +0000 | [diff] [blame] | 817 | name, size, err); |
| 818 | |
| 819 | s->refcount = -1; /* Exempt from merging for now */ |
| 820 | } |
| 821 | |
| 822 | struct kmem_cache *__init create_kmalloc_cache(const char *name, size_t size, |
| 823 | unsigned long flags) |
| 824 | { |
| 825 | struct kmem_cache *s = kmem_cache_zalloc(kmem_cache, GFP_NOWAIT); |
| 826 | |
| 827 | if (!s) |
| 828 | panic("Out of memory when creating slab %s\n", name); |
| 829 | |
| 830 | create_boot_cache(s, name, size, flags); |
| 831 | list_add(&s->list, &slab_caches); |
| 832 | s->refcount = 1; |
| 833 | return s; |
| 834 | } |
| 835 | |
Christoph Lameter | 9425c58 | 2013-01-10 19:12:17 +0000 | [diff] [blame] | 836 | struct kmem_cache *kmalloc_caches[KMALLOC_SHIFT_HIGH + 1]; |
| 837 | EXPORT_SYMBOL(kmalloc_caches); |
| 838 | |
| 839 | #ifdef CONFIG_ZONE_DMA |
| 840 | struct kmem_cache *kmalloc_dma_caches[KMALLOC_SHIFT_HIGH + 1]; |
| 841 | EXPORT_SYMBOL(kmalloc_dma_caches); |
| 842 | #endif |
| 843 | |
Christoph Lameter | f97d5f6 | 2013-01-10 19:12:17 +0000 | [diff] [blame] | 844 | /* |
Christoph Lameter | 2c59dd6 | 2013-01-10 19:14:19 +0000 | [diff] [blame] | 845 | * Conversion table for small slabs sizes / 8 to the index in the |
| 846 | * kmalloc array. This is necessary for slabs < 192 since we have non power |
| 847 | * of two cache sizes there. The size of larger slabs can be determined using |
| 848 | * fls. |
| 849 | */ |
| 850 | static s8 size_index[24] = { |
| 851 | 3, /* 8 */ |
| 852 | 4, /* 16 */ |
| 853 | 5, /* 24 */ |
| 854 | 5, /* 32 */ |
| 855 | 6, /* 40 */ |
| 856 | 6, /* 48 */ |
| 857 | 6, /* 56 */ |
| 858 | 6, /* 64 */ |
| 859 | 1, /* 72 */ |
| 860 | 1, /* 80 */ |
| 861 | 1, /* 88 */ |
| 862 | 1, /* 96 */ |
| 863 | 7, /* 104 */ |
| 864 | 7, /* 112 */ |
| 865 | 7, /* 120 */ |
| 866 | 7, /* 128 */ |
| 867 | 2, /* 136 */ |
| 868 | 2, /* 144 */ |
| 869 | 2, /* 152 */ |
| 870 | 2, /* 160 */ |
| 871 | 2, /* 168 */ |
| 872 | 2, /* 176 */ |
| 873 | 2, /* 184 */ |
| 874 | 2 /* 192 */ |
| 875 | }; |
| 876 | |
| 877 | static inline int size_index_elem(size_t bytes) |
| 878 | { |
| 879 | return (bytes - 1) / 8; |
| 880 | } |
| 881 | |
| 882 | /* |
| 883 | * Find the kmem_cache structure that serves a given size of |
| 884 | * allocation |
| 885 | */ |
| 886 | struct kmem_cache *kmalloc_slab(size_t size, gfp_t flags) |
| 887 | { |
| 888 | int index; |
| 889 | |
Joonsoo Kim | 9de1bc8 | 2013-08-02 11:02:42 +0900 | [diff] [blame] | 890 | if (unlikely(size > KMALLOC_MAX_SIZE)) { |
Sasha Levin | 907985f | 2013-06-10 15:18:00 -0400 | [diff] [blame] | 891 | WARN_ON_ONCE(!(flags & __GFP_NOWARN)); |
Christoph Lameter | 6286ae9 | 2013-05-03 15:43:18 +0000 | [diff] [blame] | 892 | return NULL; |
Sasha Levin | 907985f | 2013-06-10 15:18:00 -0400 | [diff] [blame] | 893 | } |
Christoph Lameter | 6286ae9 | 2013-05-03 15:43:18 +0000 | [diff] [blame] | 894 | |
Christoph Lameter | 2c59dd6 | 2013-01-10 19:14:19 +0000 | [diff] [blame] | 895 | if (size <= 192) { |
| 896 | if (!size) |
| 897 | return ZERO_SIZE_PTR; |
| 898 | |
| 899 | index = size_index[size_index_elem(size)]; |
| 900 | } else |
| 901 | index = fls(size - 1); |
| 902 | |
| 903 | #ifdef CONFIG_ZONE_DMA |
Joonsoo Kim | b1e0541 | 2013-02-04 23:46:46 +0900 | [diff] [blame] | 904 | if (unlikely((flags & GFP_DMA))) |
Christoph Lameter | 2c59dd6 | 2013-01-10 19:14:19 +0000 | [diff] [blame] | 905 | return kmalloc_dma_caches[index]; |
| 906 | |
| 907 | #endif |
| 908 | return kmalloc_caches[index]; |
| 909 | } |
| 910 | |
| 911 | /* |
Gavin Guo | 4066c33 | 2015-06-24 16:55:54 -0700 | [diff] [blame] | 912 | * kmalloc_info[] is to make slub_debug=,kmalloc-xx option work at boot time. |
| 913 | * kmalloc_index() supports up to 2^26=64MB, so the final entry of the table is |
| 914 | * kmalloc-67108864. |
| 915 | */ |
Vlastimil Babka | af3b5f8 | 2017-02-22 15:41:05 -0800 | [diff] [blame] | 916 | const struct kmalloc_info_struct kmalloc_info[] __initconst = { |
Gavin Guo | 4066c33 | 2015-06-24 16:55:54 -0700 | [diff] [blame] | 917 | {NULL, 0}, {"kmalloc-96", 96}, |
| 918 | {"kmalloc-192", 192}, {"kmalloc-8", 8}, |
| 919 | {"kmalloc-16", 16}, {"kmalloc-32", 32}, |
| 920 | {"kmalloc-64", 64}, {"kmalloc-128", 128}, |
| 921 | {"kmalloc-256", 256}, {"kmalloc-512", 512}, |
| 922 | {"kmalloc-1024", 1024}, {"kmalloc-2048", 2048}, |
| 923 | {"kmalloc-4096", 4096}, {"kmalloc-8192", 8192}, |
| 924 | {"kmalloc-16384", 16384}, {"kmalloc-32768", 32768}, |
| 925 | {"kmalloc-65536", 65536}, {"kmalloc-131072", 131072}, |
| 926 | {"kmalloc-262144", 262144}, {"kmalloc-524288", 524288}, |
| 927 | {"kmalloc-1048576", 1048576}, {"kmalloc-2097152", 2097152}, |
| 928 | {"kmalloc-4194304", 4194304}, {"kmalloc-8388608", 8388608}, |
| 929 | {"kmalloc-16777216", 16777216}, {"kmalloc-33554432", 33554432}, |
| 930 | {"kmalloc-67108864", 67108864} |
| 931 | }; |
| 932 | |
| 933 | /* |
Daniel Sanders | 34cc699 | 2015-06-24 16:55:57 -0700 | [diff] [blame] | 934 | * Patch up the size_index table if we have strange large alignment |
| 935 | * requirements for the kmalloc array. This is only the case for |
| 936 | * MIPS it seems. The standard arches will not generate any code here. |
| 937 | * |
| 938 | * Largest permitted alignment is 256 bytes due to the way we |
| 939 | * handle the index determination for the smaller caches. |
| 940 | * |
| 941 | * Make sure that nothing crazy happens if someone starts tinkering |
| 942 | * around with ARCH_KMALLOC_MINALIGN |
Christoph Lameter | f97d5f6 | 2013-01-10 19:12:17 +0000 | [diff] [blame] | 943 | */ |
Daniel Sanders | 34cc699 | 2015-06-24 16:55:57 -0700 | [diff] [blame] | 944 | void __init setup_kmalloc_cache_index_table(void) |
Christoph Lameter | f97d5f6 | 2013-01-10 19:12:17 +0000 | [diff] [blame] | 945 | { |
| 946 | int i; |
| 947 | |
Christoph Lameter | 2c59dd6 | 2013-01-10 19:14:19 +0000 | [diff] [blame] | 948 | BUILD_BUG_ON(KMALLOC_MIN_SIZE > 256 || |
| 949 | (KMALLOC_MIN_SIZE & (KMALLOC_MIN_SIZE - 1))); |
| 950 | |
| 951 | for (i = 8; i < KMALLOC_MIN_SIZE; i += 8) { |
| 952 | int elem = size_index_elem(i); |
| 953 | |
| 954 | if (elem >= ARRAY_SIZE(size_index)) |
| 955 | break; |
| 956 | size_index[elem] = KMALLOC_SHIFT_LOW; |
| 957 | } |
| 958 | |
| 959 | if (KMALLOC_MIN_SIZE >= 64) { |
| 960 | /* |
| 961 | * The 96 byte size cache is not used if the alignment |
| 962 | * is 64 byte. |
| 963 | */ |
| 964 | for (i = 64 + 8; i <= 96; i += 8) |
| 965 | size_index[size_index_elem(i)] = 7; |
| 966 | |
| 967 | } |
| 968 | |
| 969 | if (KMALLOC_MIN_SIZE >= 128) { |
| 970 | /* |
| 971 | * The 192 byte sized cache is not used if the alignment |
| 972 | * is 128 byte. Redirect kmalloc to use the 256 byte cache |
| 973 | * instead. |
| 974 | */ |
| 975 | for (i = 128 + 8; i <= 192; i += 8) |
| 976 | size_index[size_index_elem(i)] = 8; |
| 977 | } |
Daniel Sanders | 34cc699 | 2015-06-24 16:55:57 -0700 | [diff] [blame] | 978 | } |
| 979 | |
Christoph Lameter | ae6f246 | 2015-06-30 09:01:11 -0500 | [diff] [blame] | 980 | static void __init new_kmalloc_cache(int idx, unsigned long flags) |
Christoph Lameter | a9730fc | 2015-06-29 09:28:08 -0500 | [diff] [blame] | 981 | { |
| 982 | kmalloc_caches[idx] = create_kmalloc_cache(kmalloc_info[idx].name, |
| 983 | kmalloc_info[idx].size, flags); |
| 984 | } |
| 985 | |
Daniel Sanders | 34cc699 | 2015-06-24 16:55:57 -0700 | [diff] [blame] | 986 | /* |
| 987 | * Create the kmalloc array. Some of the regular kmalloc arrays |
| 988 | * may already have been created because they were needed to |
| 989 | * enable allocations for slab creation. |
| 990 | */ |
| 991 | void __init create_kmalloc_caches(unsigned long flags) |
| 992 | { |
| 993 | int i; |
| 994 | |
Christoph Lameter | a9730fc | 2015-06-29 09:28:08 -0500 | [diff] [blame] | 995 | for (i = KMALLOC_SHIFT_LOW; i <= KMALLOC_SHIFT_HIGH; i++) { |
| 996 | if (!kmalloc_caches[i]) |
| 997 | new_kmalloc_cache(i, flags); |
Chris Mason | 956e46e | 2013-05-08 15:56:28 -0400 | [diff] [blame] | 998 | |
| 999 | /* |
Christoph Lameter | a9730fc | 2015-06-29 09:28:08 -0500 | [diff] [blame] | 1000 | * Caches that are not of the two-to-the-power-of size. |
| 1001 | * These have to be created immediately after the |
| 1002 | * earlier power of two caches |
Chris Mason | 956e46e | 2013-05-08 15:56:28 -0400 | [diff] [blame] | 1003 | */ |
Christoph Lameter | a9730fc | 2015-06-29 09:28:08 -0500 | [diff] [blame] | 1004 | if (KMALLOC_MIN_SIZE <= 32 && !kmalloc_caches[1] && i == 6) |
| 1005 | new_kmalloc_cache(1, flags); |
| 1006 | if (KMALLOC_MIN_SIZE <= 64 && !kmalloc_caches[2] && i == 7) |
| 1007 | new_kmalloc_cache(2, flags); |
Christoph Lameter | 8a965b3 | 2013-05-03 18:04:18 +0000 | [diff] [blame] | 1008 | } |
| 1009 | |
Christoph Lameter | f97d5f6 | 2013-01-10 19:12:17 +0000 | [diff] [blame] | 1010 | /* Kmalloc array is now usable */ |
| 1011 | slab_state = UP; |
| 1012 | |
Christoph Lameter | f97d5f6 | 2013-01-10 19:12:17 +0000 | [diff] [blame] | 1013 | #ifdef CONFIG_ZONE_DMA |
| 1014 | for (i = 0; i <= KMALLOC_SHIFT_HIGH; i++) { |
| 1015 | struct kmem_cache *s = kmalloc_caches[i]; |
| 1016 | |
| 1017 | if (s) { |
| 1018 | int size = kmalloc_size(i); |
| 1019 | char *n = kasprintf(GFP_NOWAIT, |
| 1020 | "dma-kmalloc-%d", size); |
| 1021 | |
| 1022 | BUG_ON(!n); |
| 1023 | kmalloc_dma_caches[i] = create_kmalloc_cache(n, |
| 1024 | size, SLAB_CACHE_DMA | flags); |
| 1025 | } |
| 1026 | } |
| 1027 | #endif |
| 1028 | } |
Christoph Lameter | 45530c4 | 2012-11-28 16:23:07 +0000 | [diff] [blame] | 1029 | #endif /* !CONFIG_SLOB */ |
| 1030 | |
Vladimir Davydov | cea371f | 2014-06-04 16:07:04 -0700 | [diff] [blame] | 1031 | /* |
| 1032 | * To avoid unnecessary overhead, we pass through large allocation requests |
| 1033 | * directly to the page allocator. We use __GFP_COMP, because we will need to |
| 1034 | * know the allocation order to free the pages properly in kfree. |
| 1035 | */ |
Vladimir Davydov | 5238343 | 2014-06-04 16:06:39 -0700 | [diff] [blame] | 1036 | void *kmalloc_order(size_t size, gfp_t flags, unsigned int order) |
| 1037 | { |
| 1038 | void *ret; |
| 1039 | struct page *page; |
| 1040 | |
| 1041 | flags |= __GFP_COMP; |
Vladimir Davydov | 4949148 | 2016-07-26 15:24:24 -0700 | [diff] [blame] | 1042 | page = alloc_pages(flags, order); |
Vladimir Davydov | 5238343 | 2014-06-04 16:06:39 -0700 | [diff] [blame] | 1043 | ret = page ? page_address(page) : NULL; |
| 1044 | kmemleak_alloc(ret, size, 1, flags); |
Alexander Potapenko | 505f5dc | 2016-03-25 14:22:02 -0700 | [diff] [blame] | 1045 | kasan_kmalloc_large(ret, size, flags); |
Vladimir Davydov | 5238343 | 2014-06-04 16:06:39 -0700 | [diff] [blame] | 1046 | return ret; |
| 1047 | } |
| 1048 | EXPORT_SYMBOL(kmalloc_order); |
| 1049 | |
Christoph Lameter | f1b6eb6 | 2013-09-04 16:35:34 +0000 | [diff] [blame] | 1050 | #ifdef CONFIG_TRACING |
| 1051 | void *kmalloc_order_trace(size_t size, gfp_t flags, unsigned int order) |
| 1052 | { |
| 1053 | void *ret = kmalloc_order(size, flags, order); |
| 1054 | trace_kmalloc(_RET_IP_, ret, size, PAGE_SIZE << order, flags); |
| 1055 | return ret; |
| 1056 | } |
| 1057 | EXPORT_SYMBOL(kmalloc_order_trace); |
| 1058 | #endif |
Christoph Lameter | 45530c4 | 2012-11-28 16:23:07 +0000 | [diff] [blame] | 1059 | |
Thomas Garnier | 7c00fce | 2016-07-26 15:21:56 -0700 | [diff] [blame] | 1060 | #ifdef CONFIG_SLAB_FREELIST_RANDOM |
| 1061 | /* Randomize a generic freelist */ |
| 1062 | static void freelist_randomize(struct rnd_state *state, unsigned int *list, |
| 1063 | size_t count) |
| 1064 | { |
| 1065 | size_t i; |
| 1066 | unsigned int rand; |
| 1067 | |
| 1068 | for (i = 0; i < count; i++) |
| 1069 | list[i] = i; |
| 1070 | |
| 1071 | /* Fisher-Yates shuffle */ |
| 1072 | for (i = count - 1; i > 0; i--) { |
| 1073 | rand = prandom_u32_state(state); |
| 1074 | rand %= (i + 1); |
| 1075 | swap(list[i], list[rand]); |
| 1076 | } |
| 1077 | } |
| 1078 | |
| 1079 | /* Create a random sequence per cache */ |
| 1080 | int cache_random_seq_create(struct kmem_cache *cachep, unsigned int count, |
| 1081 | gfp_t gfp) |
| 1082 | { |
| 1083 | struct rnd_state state; |
| 1084 | |
| 1085 | if (count < 2 || cachep->random_seq) |
| 1086 | return 0; |
| 1087 | |
| 1088 | cachep->random_seq = kcalloc(count, sizeof(unsigned int), gfp); |
| 1089 | if (!cachep->random_seq) |
| 1090 | return -ENOMEM; |
| 1091 | |
| 1092 | /* Get best entropy at this stage of boot */ |
| 1093 | prandom_seed_state(&state, get_random_long()); |
| 1094 | |
| 1095 | freelist_randomize(&state, cachep->random_seq, count); |
| 1096 | return 0; |
| 1097 | } |
| 1098 | |
| 1099 | /* Destroy the per-cache random freelist sequence */ |
| 1100 | void cache_random_seq_destroy(struct kmem_cache *cachep) |
| 1101 | { |
| 1102 | kfree(cachep->random_seq); |
| 1103 | cachep->random_seq = NULL; |
| 1104 | } |
| 1105 | #endif /* CONFIG_SLAB_FREELIST_RANDOM */ |
| 1106 | |
Glauber Costa | b7454ad | 2012-10-19 18:20:25 +0400 | [diff] [blame] | 1107 | #ifdef CONFIG_SLABINFO |
Wanpeng Li | e9b4db2 | 2013-07-04 08:33:24 +0800 | [diff] [blame] | 1108 | |
| 1109 | #ifdef CONFIG_SLAB |
| 1110 | #define SLABINFO_RIGHTS (S_IWUSR | S_IRUSR) |
| 1111 | #else |
| 1112 | #define SLABINFO_RIGHTS S_IRUSR |
| 1113 | #endif |
| 1114 | |
Vladimir Davydov | b047501 | 2014-12-10 15:44:19 -0800 | [diff] [blame] | 1115 | static void print_slabinfo_header(struct seq_file *m) |
Glauber Costa | bcee6e2 | 2012-10-19 18:20:26 +0400 | [diff] [blame] | 1116 | { |
| 1117 | /* |
| 1118 | * Output format version, so at least we can change it |
| 1119 | * without _too_ many complaints. |
| 1120 | */ |
| 1121 | #ifdef CONFIG_DEBUG_SLAB |
| 1122 | seq_puts(m, "slabinfo - version: 2.1 (statistics)\n"); |
| 1123 | #else |
| 1124 | seq_puts(m, "slabinfo - version: 2.1\n"); |
| 1125 | #endif |
Joe Perches | 756a025 | 2016-03-17 14:19:47 -0700 | [diff] [blame] | 1126 | seq_puts(m, "# name <active_objs> <num_objs> <objsize> <objperslab> <pagesperslab>"); |
Glauber Costa | bcee6e2 | 2012-10-19 18:20:26 +0400 | [diff] [blame] | 1127 | seq_puts(m, " : tunables <limit> <batchcount> <sharedfactor>"); |
| 1128 | seq_puts(m, " : slabdata <active_slabs> <num_slabs> <sharedavail>"); |
| 1129 | #ifdef CONFIG_DEBUG_SLAB |
Joe Perches | 756a025 | 2016-03-17 14:19:47 -0700 | [diff] [blame] | 1130 | seq_puts(m, " : globalstat <listallocs> <maxobjs> <grown> <reaped> <error> <maxfreeable> <nodeallocs> <remotefrees> <alienoverflow>"); |
Glauber Costa | bcee6e2 | 2012-10-19 18:20:26 +0400 | [diff] [blame] | 1131 | seq_puts(m, " : cpustat <allochit> <allocmiss> <freehit> <freemiss>"); |
| 1132 | #endif |
| 1133 | seq_putc(m, '\n'); |
| 1134 | } |
| 1135 | |
Vladimir Davydov | 1df3b26 | 2014-12-10 15:42:16 -0800 | [diff] [blame] | 1136 | void *slab_start(struct seq_file *m, loff_t *pos) |
Glauber Costa | b7454ad | 2012-10-19 18:20:25 +0400 | [diff] [blame] | 1137 | { |
Glauber Costa | b7454ad | 2012-10-19 18:20:25 +0400 | [diff] [blame] | 1138 | mutex_lock(&slab_mutex); |
Glauber Costa | b7454ad | 2012-10-19 18:20:25 +0400 | [diff] [blame] | 1139 | return seq_list_start(&slab_caches, *pos); |
| 1140 | } |
| 1141 | |
Wanpeng Li | 276a243 | 2013-07-08 08:08:28 +0800 | [diff] [blame] | 1142 | void *slab_next(struct seq_file *m, void *p, loff_t *pos) |
Glauber Costa | b7454ad | 2012-10-19 18:20:25 +0400 | [diff] [blame] | 1143 | { |
| 1144 | return seq_list_next(p, &slab_caches, pos); |
| 1145 | } |
| 1146 | |
Wanpeng Li | 276a243 | 2013-07-08 08:08:28 +0800 | [diff] [blame] | 1147 | void slab_stop(struct seq_file *m, void *p) |
Glauber Costa | b7454ad | 2012-10-19 18:20:25 +0400 | [diff] [blame] | 1148 | { |
| 1149 | mutex_unlock(&slab_mutex); |
| 1150 | } |
| 1151 | |
Glauber Costa | 749c541 | 2012-12-18 14:23:01 -0800 | [diff] [blame] | 1152 | static void |
| 1153 | memcg_accumulate_slabinfo(struct kmem_cache *s, struct slabinfo *info) |
Glauber Costa | b7454ad | 2012-10-19 18:20:25 +0400 | [diff] [blame] | 1154 | { |
Glauber Costa | 749c541 | 2012-12-18 14:23:01 -0800 | [diff] [blame] | 1155 | struct kmem_cache *c; |
| 1156 | struct slabinfo sinfo; |
Glauber Costa | 749c541 | 2012-12-18 14:23:01 -0800 | [diff] [blame] | 1157 | |
| 1158 | if (!is_root_cache(s)) |
| 1159 | return; |
| 1160 | |
Vladimir Davydov | 426589f | 2015-02-12 14:59:23 -0800 | [diff] [blame] | 1161 | for_each_memcg_cache(c, s) { |
Glauber Costa | 749c541 | 2012-12-18 14:23:01 -0800 | [diff] [blame] | 1162 | memset(&sinfo, 0, sizeof(sinfo)); |
| 1163 | get_slabinfo(c, &sinfo); |
| 1164 | |
| 1165 | info->active_slabs += sinfo.active_slabs; |
| 1166 | info->num_slabs += sinfo.num_slabs; |
| 1167 | info->shared_avail += sinfo.shared_avail; |
| 1168 | info->active_objs += sinfo.active_objs; |
| 1169 | info->num_objs += sinfo.num_objs; |
| 1170 | } |
| 1171 | } |
| 1172 | |
Vladimir Davydov | b047501 | 2014-12-10 15:44:19 -0800 | [diff] [blame] | 1173 | static void cache_show(struct kmem_cache *s, struct seq_file *m) |
Glauber Costa | 749c541 | 2012-12-18 14:23:01 -0800 | [diff] [blame] | 1174 | { |
Glauber Costa | 0d7561c | 2012-10-19 18:20:27 +0400 | [diff] [blame] | 1175 | struct slabinfo sinfo; |
| 1176 | |
| 1177 | memset(&sinfo, 0, sizeof(sinfo)); |
| 1178 | get_slabinfo(s, &sinfo); |
| 1179 | |
Glauber Costa | 749c541 | 2012-12-18 14:23:01 -0800 | [diff] [blame] | 1180 | memcg_accumulate_slabinfo(s, &sinfo); |
| 1181 | |
Glauber Costa | 0d7561c | 2012-10-19 18:20:27 +0400 | [diff] [blame] | 1182 | seq_printf(m, "%-17s %6lu %6lu %6u %4u %4d", |
Glauber Costa | 749c541 | 2012-12-18 14:23:01 -0800 | [diff] [blame] | 1183 | cache_name(s), sinfo.active_objs, sinfo.num_objs, s->size, |
Glauber Costa | 0d7561c | 2012-10-19 18:20:27 +0400 | [diff] [blame] | 1184 | sinfo.objects_per_slab, (1 << sinfo.cache_order)); |
| 1185 | |
| 1186 | seq_printf(m, " : tunables %4u %4u %4u", |
| 1187 | sinfo.limit, sinfo.batchcount, sinfo.shared); |
| 1188 | seq_printf(m, " : slabdata %6lu %6lu %6lu", |
| 1189 | sinfo.active_slabs, sinfo.num_slabs, sinfo.shared_avail); |
| 1190 | slabinfo_show_stats(m, s); |
| 1191 | seq_putc(m, '\n'); |
Glauber Costa | b7454ad | 2012-10-19 18:20:25 +0400 | [diff] [blame] | 1192 | } |
| 1193 | |
Vladimir Davydov | 1df3b26 | 2014-12-10 15:42:16 -0800 | [diff] [blame] | 1194 | static int slab_show(struct seq_file *m, void *p) |
Glauber Costa | 749c541 | 2012-12-18 14:23:01 -0800 | [diff] [blame] | 1195 | { |
| 1196 | struct kmem_cache *s = list_entry(p, struct kmem_cache, list); |
| 1197 | |
Vladimir Davydov | 1df3b26 | 2014-12-10 15:42:16 -0800 | [diff] [blame] | 1198 | if (p == slab_caches.next) |
| 1199 | print_slabinfo_header(m); |
Vladimir Davydov | b047501 | 2014-12-10 15:44:19 -0800 | [diff] [blame] | 1200 | if (is_root_cache(s)) |
| 1201 | cache_show(s, m); |
| 1202 | return 0; |
Glauber Costa | 749c541 | 2012-12-18 14:23:01 -0800 | [diff] [blame] | 1203 | } |
| 1204 | |
Johannes Weiner | 127424c | 2016-01-20 15:02:32 -0800 | [diff] [blame] | 1205 | #if defined(CONFIG_MEMCG) && !defined(CONFIG_SLOB) |
Tejun Heo | bc2791f | 2017-02-22 15:41:21 -0800 | [diff] [blame^] | 1206 | void *memcg_slab_start(struct seq_file *m, loff_t *pos) |
Vladimir Davydov | b047501 | 2014-12-10 15:44:19 -0800 | [diff] [blame] | 1207 | { |
Vladimir Davydov | b047501 | 2014-12-10 15:44:19 -0800 | [diff] [blame] | 1208 | struct mem_cgroup *memcg = mem_cgroup_from_css(seq_css(m)); |
| 1209 | |
Tejun Heo | bc2791f | 2017-02-22 15:41:21 -0800 | [diff] [blame^] | 1210 | mutex_lock(&slab_mutex); |
| 1211 | return seq_list_start(&memcg->kmem_caches, *pos); |
| 1212 | } |
| 1213 | |
| 1214 | void *memcg_slab_next(struct seq_file *m, void *p, loff_t *pos) |
| 1215 | { |
| 1216 | struct mem_cgroup *memcg = mem_cgroup_from_css(seq_css(m)); |
| 1217 | |
| 1218 | return seq_list_next(p, &memcg->kmem_caches, pos); |
| 1219 | } |
| 1220 | |
| 1221 | void memcg_slab_stop(struct seq_file *m, void *p) |
| 1222 | { |
| 1223 | mutex_unlock(&slab_mutex); |
| 1224 | } |
| 1225 | |
| 1226 | int memcg_slab_show(struct seq_file *m, void *p) |
| 1227 | { |
| 1228 | struct kmem_cache *s = list_entry(p, struct kmem_cache, |
| 1229 | memcg_params.kmem_caches_node); |
| 1230 | struct mem_cgroup *memcg = mem_cgroup_from_css(seq_css(m)); |
| 1231 | |
| 1232 | if (p == memcg->kmem_caches.next) |
Vladimir Davydov | b047501 | 2014-12-10 15:44:19 -0800 | [diff] [blame] | 1233 | print_slabinfo_header(m); |
Tejun Heo | bc2791f | 2017-02-22 15:41:21 -0800 | [diff] [blame^] | 1234 | cache_show(s, m); |
Vladimir Davydov | b047501 | 2014-12-10 15:44:19 -0800 | [diff] [blame] | 1235 | return 0; |
| 1236 | } |
| 1237 | #endif |
| 1238 | |
Glauber Costa | b7454ad | 2012-10-19 18:20:25 +0400 | [diff] [blame] | 1239 | /* |
| 1240 | * slabinfo_op - iterator that generates /proc/slabinfo |
| 1241 | * |
| 1242 | * Output layout: |
| 1243 | * cache-name |
| 1244 | * num-active-objs |
| 1245 | * total-objs |
| 1246 | * object size |
| 1247 | * num-active-slabs |
| 1248 | * total-slabs |
| 1249 | * num-pages-per-slab |
| 1250 | * + further values on SMP and with statistics enabled |
| 1251 | */ |
| 1252 | static const struct seq_operations slabinfo_op = { |
Vladimir Davydov | 1df3b26 | 2014-12-10 15:42:16 -0800 | [diff] [blame] | 1253 | .start = slab_start, |
Wanpeng Li | 276a243 | 2013-07-08 08:08:28 +0800 | [diff] [blame] | 1254 | .next = slab_next, |
| 1255 | .stop = slab_stop, |
Vladimir Davydov | 1df3b26 | 2014-12-10 15:42:16 -0800 | [diff] [blame] | 1256 | .show = slab_show, |
Glauber Costa | b7454ad | 2012-10-19 18:20:25 +0400 | [diff] [blame] | 1257 | }; |
| 1258 | |
| 1259 | static int slabinfo_open(struct inode *inode, struct file *file) |
| 1260 | { |
| 1261 | return seq_open(file, &slabinfo_op); |
| 1262 | } |
| 1263 | |
| 1264 | static const struct file_operations proc_slabinfo_operations = { |
| 1265 | .open = slabinfo_open, |
| 1266 | .read = seq_read, |
| 1267 | .write = slabinfo_write, |
| 1268 | .llseek = seq_lseek, |
| 1269 | .release = seq_release, |
| 1270 | }; |
| 1271 | |
| 1272 | static int __init slab_proc_init(void) |
| 1273 | { |
Wanpeng Li | e9b4db2 | 2013-07-04 08:33:24 +0800 | [diff] [blame] | 1274 | proc_create("slabinfo", SLABINFO_RIGHTS, NULL, |
| 1275 | &proc_slabinfo_operations); |
Glauber Costa | b7454ad | 2012-10-19 18:20:25 +0400 | [diff] [blame] | 1276 | return 0; |
| 1277 | } |
| 1278 | module_init(slab_proc_init); |
| 1279 | #endif /* CONFIG_SLABINFO */ |
Andrey Ryabinin | 928cec9 | 2014-08-06 16:04:44 -0700 | [diff] [blame] | 1280 | |
| 1281 | static __always_inline void *__do_krealloc(const void *p, size_t new_size, |
| 1282 | gfp_t flags) |
| 1283 | { |
| 1284 | void *ret; |
| 1285 | size_t ks = 0; |
| 1286 | |
| 1287 | if (p) |
| 1288 | ks = ksize(p); |
| 1289 | |
Andrey Ryabinin | 0316bec | 2015-02-13 14:39:42 -0800 | [diff] [blame] | 1290 | if (ks >= new_size) { |
Alexander Potapenko | 505f5dc | 2016-03-25 14:22:02 -0700 | [diff] [blame] | 1291 | kasan_krealloc((void *)p, new_size, flags); |
Andrey Ryabinin | 928cec9 | 2014-08-06 16:04:44 -0700 | [diff] [blame] | 1292 | return (void *)p; |
Andrey Ryabinin | 0316bec | 2015-02-13 14:39:42 -0800 | [diff] [blame] | 1293 | } |
Andrey Ryabinin | 928cec9 | 2014-08-06 16:04:44 -0700 | [diff] [blame] | 1294 | |
| 1295 | ret = kmalloc_track_caller(new_size, flags); |
| 1296 | if (ret && p) |
| 1297 | memcpy(ret, p, ks); |
| 1298 | |
| 1299 | return ret; |
| 1300 | } |
| 1301 | |
| 1302 | /** |
| 1303 | * __krealloc - like krealloc() but don't free @p. |
| 1304 | * @p: object to reallocate memory for. |
| 1305 | * @new_size: how many bytes of memory are required. |
| 1306 | * @flags: the type of memory to allocate. |
| 1307 | * |
| 1308 | * This function is like krealloc() except it never frees the originally |
| 1309 | * allocated buffer. Use this if you don't want to free the buffer immediately |
| 1310 | * like, for example, with RCU. |
| 1311 | */ |
| 1312 | void *__krealloc(const void *p, size_t new_size, gfp_t flags) |
| 1313 | { |
| 1314 | if (unlikely(!new_size)) |
| 1315 | return ZERO_SIZE_PTR; |
| 1316 | |
| 1317 | return __do_krealloc(p, new_size, flags); |
| 1318 | |
| 1319 | } |
| 1320 | EXPORT_SYMBOL(__krealloc); |
| 1321 | |
| 1322 | /** |
| 1323 | * krealloc - reallocate memory. The contents will remain unchanged. |
| 1324 | * @p: object to reallocate memory for. |
| 1325 | * @new_size: how many bytes of memory are required. |
| 1326 | * @flags: the type of memory to allocate. |
| 1327 | * |
| 1328 | * The contents of the object pointed to are preserved up to the |
| 1329 | * lesser of the new and old sizes. If @p is %NULL, krealloc() |
| 1330 | * behaves exactly like kmalloc(). If @new_size is 0 and @p is not a |
| 1331 | * %NULL pointer, the object pointed to is freed. |
| 1332 | */ |
| 1333 | void *krealloc(const void *p, size_t new_size, gfp_t flags) |
| 1334 | { |
| 1335 | void *ret; |
| 1336 | |
| 1337 | if (unlikely(!new_size)) { |
| 1338 | kfree(p); |
| 1339 | return ZERO_SIZE_PTR; |
| 1340 | } |
| 1341 | |
| 1342 | ret = __do_krealloc(p, new_size, flags); |
| 1343 | if (ret && p != ret) |
| 1344 | kfree(p); |
| 1345 | |
| 1346 | return ret; |
| 1347 | } |
| 1348 | EXPORT_SYMBOL(krealloc); |
| 1349 | |
| 1350 | /** |
| 1351 | * kzfree - like kfree but zero memory |
| 1352 | * @p: object to free memory of |
| 1353 | * |
| 1354 | * The memory of the object @p points to is zeroed before freed. |
| 1355 | * If @p is %NULL, kzfree() does nothing. |
| 1356 | * |
| 1357 | * Note: this function zeroes the whole allocated buffer which can be a good |
| 1358 | * deal bigger than the requested buffer size passed to kmalloc(). So be |
| 1359 | * careful when using this function in performance sensitive code. |
| 1360 | */ |
| 1361 | void kzfree(const void *p) |
| 1362 | { |
| 1363 | size_t ks; |
| 1364 | void *mem = (void *)p; |
| 1365 | |
| 1366 | if (unlikely(ZERO_OR_NULL_PTR(mem))) |
| 1367 | return; |
| 1368 | ks = ksize(mem); |
| 1369 | memset(mem, 0, ks); |
| 1370 | kfree(mem); |
| 1371 | } |
| 1372 | EXPORT_SYMBOL(kzfree); |
| 1373 | |
| 1374 | /* Tracepoints definitions. */ |
| 1375 | EXPORT_TRACEPOINT_SYMBOL(kmalloc); |
| 1376 | EXPORT_TRACEPOINT_SYMBOL(kmem_cache_alloc); |
| 1377 | EXPORT_TRACEPOINT_SYMBOL(kmalloc_node); |
| 1378 | EXPORT_TRACEPOINT_SYMBOL(kmem_cache_alloc_node); |
| 1379 | EXPORT_TRACEPOINT_SYMBOL(kfree); |
| 1380 | EXPORT_TRACEPOINT_SYMBOL(kmem_cache_free); |