Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1759996Ab3DDPe2 (ORCPT ); Thu, 4 Apr 2013 11:34:28 -0400 Received: from cantor2.suse.de ([195.135.220.15]:46135 "EHLO mx2.suse.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754722Ab3DDPe1 (ORCPT ); Thu, 4 Apr 2013 11:34:27 -0400 Date: Thu, 4 Apr 2013 17:34:25 +0200 From: Michal Hocko To: Li Zefan Cc: linux-mm@kvack.org, LKML , Cgroups , Tejun Heo , Glauber Costa , KAMEZAWA Hiroyuki , Johannes Weiner Subject: Re: [RFC][PATCH 6/7] memcg: don't need to get a reference to the parent Message-ID: <20130404153425.GN29911@dhcp22.suse.cz> References: <515BF233.6070308@huawei.com> <515BF2B1.9060909@huawei.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <515BF2B1.9060909@huawei.com> User-Agent: Mutt/1.5.21 (2010-09-15) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2320 Lines: 71 On Wed 03-04-13 17:13:21, Li Zefan wrote: > The cgroup core guarantees it's always safe to access the parent. > > Signed-off-by: Li Zefan I would just prefer if you put a comment into place where we used to take a reference to parent so that it is more obvious in the code. See bellow. Acked-by: Michal Hocko > --- > mm/memcontrol.c | 14 +------------- > 1 file changed, 1 insertion(+), 13 deletions(-) > > diff --git a/mm/memcontrol.c b/mm/memcontrol.c > index ad576e8..45129cd 100644 > --- a/mm/memcontrol.c > +++ b/mm/memcontrol.c > @@ -6124,12 +6124,8 @@ static void mem_cgroup_get(struct mem_cgroup *memcg) > > static void __mem_cgroup_put(struct mem_cgroup *memcg, int count) > { > - if (atomic_sub_and_test(count, &memcg->refcnt)) { > - struct mem_cgroup *parent = parent_mem_cgroup(memcg); > + if (atomic_sub_and_test(count, &memcg->refcnt)) > call_rcu(&memcg->rcu_freeing, free_rcu); > - if (parent) > - mem_cgroup_put(parent); > - } > } > > static void mem_cgroup_put(struct mem_cgroup *memcg) > @@ -6229,14 +6225,6 @@ mem_cgroup_css_online(struct cgroup *cont) > res_counter_init(&memcg->res, &parent->res); > res_counter_init(&memcg->memsw, &parent->memsw); > res_counter_init(&memcg->kmem, &parent->kmem); > - > - /* > - * We increment refcnt of the parent to ensure that we can > - * safely access it on res_counter_charge/uncharge. > - * This refcnt will be decremented when freeing this > - * mem_cgroup(see mem_cgroup_put). > - */ > - mem_cgroup_get(parent); Maybe a little note would be nice /* * No need to take reference to parent because cgroup * core guarantees its existence */ > } else { > res_counter_init(&memcg->res, NULL); > res_counter_init(&memcg->memsw, NULL); > -- > 1.8.0.2 > > -- > To unsubscribe, send a message with 'unsubscribe linux-mm' in > the body to majordomo@kvack.org. For more info on Linux MM, > see: http://www.linux-mm.org/ . > Don't email: email@kvack.org -- Michal Hocko SUSE Labs -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/