提交 8d76a979 编写于 作者: L Li Zefan 提交者: Linus Torvalds

memcg: don't need to get a reference to the parent

The cgroup core guarantees it's always safe to access the parent.
Signed-off-by: NLi Zefan <lizefan@huawei.com>
Acked-by: NMichal Hocko <mhocko@suse.cz>
Acked-by: NKAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>
Cc: Hugh Dickins <hughd@google.com>
Cc: Tejun Heo <tj@kernel.org>
Cc: Glauber Costa <glommer@openvz.org>
Cc: Johannes Weiner <hannes@cmpxchg.org>
Signed-off-by: NAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: NLinus Torvalds <torvalds@linux-foundation.org>
上级 4050377b
...@@ -503,7 +503,6 @@ enum res_type { ...@@ -503,7 +503,6 @@ enum res_type {
*/ */
static DEFINE_MUTEX(memcg_create_mutex); static DEFINE_MUTEX(memcg_create_mutex);
static void mem_cgroup_get(struct mem_cgroup *memcg);
static void mem_cgroup_put(struct mem_cgroup *memcg); static void mem_cgroup_put(struct mem_cgroup *memcg);
static inline static inline
...@@ -6239,19 +6238,10 @@ static void free_rcu(struct rcu_head *rcu_head) ...@@ -6239,19 +6238,10 @@ static void free_rcu(struct rcu_head *rcu_head)
schedule_work(&memcg->work_freeing); schedule_work(&memcg->work_freeing);
} }
static void mem_cgroup_get(struct mem_cgroup *memcg)
{
atomic_inc(&memcg->refcnt);
}
static void __mem_cgroup_put(struct mem_cgroup *memcg, int count) static void __mem_cgroup_put(struct mem_cgroup *memcg, int count)
{ {
if (atomic_sub_and_test(count, &memcg->refcnt)) { if (atomic_sub_and_test(count, &memcg->refcnt))
struct mem_cgroup *parent = parent_mem_cgroup(memcg);
call_rcu(&memcg->rcu_freeing, free_rcu); call_rcu(&memcg->rcu_freeing, free_rcu);
if (parent)
mem_cgroup_put(parent);
}
} }
static void mem_cgroup_put(struct mem_cgroup *memcg) static void mem_cgroup_put(struct mem_cgroup *memcg)
...@@ -6354,12 +6344,9 @@ mem_cgroup_css_online(struct cgroup *cont) ...@@ -6354,12 +6344,9 @@ mem_cgroup_css_online(struct cgroup *cont)
res_counter_init(&memcg->kmem, &parent->kmem); res_counter_init(&memcg->kmem, &parent->kmem);
/* /*
* We increment refcnt of the parent to ensure that we can * No need to take a reference to the parent because cgroup
* safely access it on res_counter_charge/uncharge. * core guarantees its existence.
* This refcnt will be decremented when freeing this
* mem_cgroup(see mem_cgroup_put).
*/ */
mem_cgroup_get(parent);
} else { } else {
res_counter_init(&memcg->res, NULL); res_counter_init(&memcg->res, NULL);
res_counter_init(&memcg->memsw, NULL); res_counter_init(&memcg->memsw, NULL);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册