Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1761941Ab2FVM3V (ORCPT ); Fri, 22 Jun 2012 08:29:21 -0400 Received: from zene.cmpxchg.org ([85.214.230.12]:52051 "EHLO zene.cmpxchg.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1761641Ab2FVM3U (ORCPT ); Fri, 22 Jun 2012 08:29:20 -0400 Date: Fri, 22 Jun 2012 14:29:07 +0200 From: Johannes Weiner To: Wanpeng Li Cc: "linux-mm@kvack.org" , cgroups@vger.kernel.org, KAMEZAWA Hiroyuki , Michal Hocko , Frederic Weisbecker , Han Ying , Glauber Costa , Tejun Heo , "Aneesh Kumar K.V" , Andrew Morton , Hiroyuki Kamezawa , Linux Kernel Subject: Re: [PATCH 1/2] memcg: use existing function to judge root mem cgroup Message-ID: <20120622122907.GA20760@cmpxchg.org> References: <1340366243-28104-1-git-send-email-liwp.linux@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1340366243-28104-1-git-send-email-liwp.linux@gmail.com> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 915 Lines: 26 On Fri, Jun 22, 2012 at 07:57:22PM +0800, Wanpeng Li wrote: > From: Wanpeng Li > > Signed-off-by: Wanpeng Li > --- > mm/memcontrol.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/mm/memcontrol.c b/mm/memcontrol.c > index f72b5e5..776fc57 100644 > --- a/mm/memcontrol.c > +++ b/mm/memcontrol.c > @@ -4873,7 +4873,7 @@ mem_cgroup_create(struct cgroup *cont) > goto free_out; > > /* root ? */ > - if (cont->parent == NULL) { > + if (!(mem_cgroup_is_root(cont))) { cont is struct cgroup *, but this function takes struct mem_cgroup *. The compiler should have warned you about this. -- 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/