diff options
author | Vladimir Davydov <vdavydov@parallels.com> | 2014-01-23 18:52:56 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2014-01-23 19:36:51 -0500 |
commit | 363a044f739b0f07a8c063b838c5528d10720e02 (patch) | |
tree | 94ed7eda83ddb72ffe775bfe7540890c409f3ec3 | |
parent | 3965fc3652244651006ebb31c8c45318ce84818f (diff) |
memcg, slab: kmem_cache_create_memcg(): fix memleak on fail path
We do not free the cache's memcg_params if __kmem_cache_create fails.
Fix this.
Plus, rename memcg_register_cache() to memcg_alloc_cache_params(),
because it actually does not register the cache anywhere, but simply
initialize kmem_cache::memcg_params.
[akpm@linux-foundation.org: fix build]
Signed-off-by: Vladimir Davydov <vdavydov@parallels.com>
Cc: Michal Hocko <mhocko@suse.cz>
Cc: Glauber Costa <glommer@gmail.com>
Cc: Johannes Weiner <hannes@cmpxchg.org>
Cc: Balbir Singh <bsingharora@gmail.com>
Cc: KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>
Cc: Pekka Enberg <penberg@kernel.org>
Cc: Christoph Lameter <cl@linux.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
-rw-r--r-- | include/linux/memcontrol.h | 14 | ||||
-rw-r--r-- | mm/memcontrol.c | 11 | ||||
-rw-r--r-- | mm/slab_common.c | 3 |
3 files changed, 19 insertions, 9 deletions
diff --git a/include/linux/memcontrol.h b/include/linux/memcontrol.h index b3e7a667e03c..284daff507fb 100644 --- a/include/linux/memcontrol.h +++ b/include/linux/memcontrol.h | |||
@@ -497,8 +497,9 @@ void __memcg_kmem_commit_charge(struct page *page, | |||
497 | void __memcg_kmem_uncharge_pages(struct page *page, int order); | 497 | void __memcg_kmem_uncharge_pages(struct page *page, int order); |
498 | 498 | ||
499 | int memcg_cache_id(struct mem_cgroup *memcg); | 499 | int memcg_cache_id(struct mem_cgroup *memcg); |
500 | int memcg_register_cache(struct mem_cgroup *memcg, struct kmem_cache *s, | 500 | int memcg_alloc_cache_params(struct mem_cgroup *memcg, struct kmem_cache *s, |
501 | struct kmem_cache *root_cache); | 501 | struct kmem_cache *root_cache); |
502 | void memcg_free_cache_params(struct kmem_cache *s); | ||
502 | void memcg_release_cache(struct kmem_cache *cachep); | 503 | void memcg_release_cache(struct kmem_cache *cachep); |
503 | void memcg_cache_list_add(struct mem_cgroup *memcg, struct kmem_cache *cachep); | 504 | void memcg_cache_list_add(struct mem_cgroup *memcg, struct kmem_cache *cachep); |
504 | 505 | ||
@@ -640,13 +641,16 @@ static inline int memcg_cache_id(struct mem_cgroup *memcg) | |||
640 | return -1; | 641 | return -1; |
641 | } | 642 | } |
642 | 643 | ||
643 | static inline int | 644 | static inline int memcg_alloc_cache_params(struct mem_cgroup *memcg, |
644 | memcg_register_cache(struct mem_cgroup *memcg, struct kmem_cache *s, | 645 | struct kmem_cache *s, struct kmem_cache *root_cache) |
645 | struct kmem_cache *root_cache) | ||
646 | { | 646 | { |
647 | return 0; | 647 | return 0; |
648 | } | 648 | } |
649 | 649 | ||
650 | static inline void memcg_free_cache_params(struct kmem_cache *s) | ||
651 | { | ||
652 | } | ||
653 | |||
650 | static inline void memcg_release_cache(struct kmem_cache *cachep) | 654 | static inline void memcg_release_cache(struct kmem_cache *cachep) |
651 | { | 655 | { |
652 | } | 656 | } |
diff --git a/mm/memcontrol.c b/mm/memcontrol.c index 72f2d90e7ef6..b8ebe71f872d 100644 --- a/mm/memcontrol.c +++ b/mm/memcontrol.c | |||
@@ -3231,8 +3231,8 @@ int memcg_update_cache_size(struct kmem_cache *s, int num_groups) | |||
3231 | return 0; | 3231 | return 0; |
3232 | } | 3232 | } |
3233 | 3233 | ||
3234 | int memcg_register_cache(struct mem_cgroup *memcg, struct kmem_cache *s, | 3234 | int memcg_alloc_cache_params(struct mem_cgroup *memcg, struct kmem_cache *s, |
3235 | struct kmem_cache *root_cache) | 3235 | struct kmem_cache *root_cache) |
3236 | { | 3236 | { |
3237 | size_t size; | 3237 | size_t size; |
3238 | 3238 | ||
@@ -3260,6 +3260,11 @@ int memcg_register_cache(struct mem_cgroup *memcg, struct kmem_cache *s, | |||
3260 | return 0; | 3260 | return 0; |
3261 | } | 3261 | } |
3262 | 3262 | ||
3263 | void memcg_free_cache_params(struct kmem_cache *s) | ||
3264 | { | ||
3265 | kfree(s->memcg_params); | ||
3266 | } | ||
3267 | |||
3263 | void memcg_release_cache(struct kmem_cache *s) | 3268 | void memcg_release_cache(struct kmem_cache *s) |
3264 | { | 3269 | { |
3265 | struct kmem_cache *root; | 3270 | struct kmem_cache *root; |
@@ -3288,7 +3293,7 @@ void memcg_release_cache(struct kmem_cache *s) | |||
3288 | 3293 | ||
3289 | css_put(&memcg->css); | 3294 | css_put(&memcg->css); |
3290 | out: | 3295 | out: |
3291 | kfree(s->memcg_params); | 3296 | memcg_free_cache_params(s); |
3292 | } | 3297 | } |
3293 | 3298 | ||
3294 | /* | 3299 | /* |
diff --git a/mm/slab_common.c b/mm/slab_common.c index f70df3ef6f1a..70f9e249ac30 100644 --- a/mm/slab_common.c +++ b/mm/slab_common.c | |||
@@ -205,7 +205,7 @@ kmem_cache_create_memcg(struct mem_cgroup *memcg, const char *name, size_t size, | |||
205 | if (!s->name) | 205 | if (!s->name) |
206 | goto out_free_cache; | 206 | goto out_free_cache; |
207 | 207 | ||
208 | err = memcg_register_cache(memcg, s, parent_cache); | 208 | err = memcg_alloc_cache_params(memcg, s, parent_cache); |
209 | if (err) | 209 | if (err) |
210 | goto out_free_cache; | 210 | goto out_free_cache; |
211 | 211 | ||
@@ -235,6 +235,7 @@ out_unlock: | |||
235 | return s; | 235 | return s; |
236 | 236 | ||
237 | out_free_cache: | 237 | out_free_cache: |
238 | memcg_free_cache_params(s); | ||
238 | kfree(s->name); | 239 | kfree(s->name); |
239 | kmem_cache_free(kmem_cache, s); | 240 | kmem_cache_free(kmem_cache, s); |
240 | goto out_unlock; | 241 | goto out_unlock; |