cgroups.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Johannes Weiner <hannes@cmpxchg.org>
To: Michal Hocko <mhocko@suse.cz>
Cc: Andrew Morton <akpm@linux-foundation.org>,
	KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>,
	Balbir Singh <bsingharora@gmail.com>,
	cgroups@vger.kernel.org, linux-mm@kvack.org,
	linux-kernel@vger.kernel.org
Subject: Re: [patch 4/8] mm: memcg: lookup_page_cgroup (almost) never returns NULL
Date: Mon, 28 Nov 2011 10:15:18 +0100	[thread overview]
Message-ID: <20111128091518.GA9356@cmpxchg.org> (raw)
In-Reply-To: <20111124102606.GF26036@tiehlicka.suse.cz>

On Thu, Nov 24, 2011 at 11:26:06AM +0100, Michal Hocko wrote:
> On Thu 24-11-11 11:05:49, Johannes Weiner wrote:
> > On Thu, Nov 24, 2011 at 10:52:51AM +0100, Michal Hocko wrote:
> > > On Wed 23-11-11 16:42:27, Johannes Weiner wrote:
> > > > From: Johannes Weiner <jweiner@redhat.com>
> > > > 
> > > > Pages have their corresponding page_cgroup descriptors set up before
> > > > they are used in userspace, and thus managed by a memory cgroup.
> > > > 
> > > > The only time where lookup_page_cgroup() can return NULL is in the
> > > > page sanity checking code that executes while feeding pages into the
> > > > page allocator for the first time.
> > > > 
> > > > Remove the NULL checks against lookup_page_cgroup() results from all
> > > > callsites where we know that corresponding page_cgroup descriptors
> > > > must be allocated.
> > > 
> > > OK, shouldn't we add
> > > 
> > > diff --git a/mm/page_cgroup.c b/mm/page_cgroup.c
> > > index 2d123f9..cb93f64 100644
> > > --- a/mm/page_cgroup.c
> > > +++ b/mm/page_cgroup.c
> > > @@ -35,8 +35,7 @@ struct page_cgroup *lookup_page_cgroup(struct page *page)
> > >  	struct page_cgroup *base;
> > >  
> > >  	base = NODE_DATA(page_to_nid(page))->node_page_cgroup;
> > > -	if (unlikely(!base))
> > > -		return NULL;
> > > +	BUG_ON(!base);
> > >  
> > >  	offset = pfn - NODE_DATA(page_to_nid(page))->node_start_pfn;
> > >  	return base + offset;
> > > @@ -112,8 +111,7 @@ struct page_cgroup *lookup_page_cgroup(struct page *page)
> > >  	unsigned long pfn = page_to_pfn(page);
> > >  	struct mem_section *section = __pfn_to_section(pfn);
> > >  
> > > -	if (!section->page_cgroup)
> > > -		return NULL;
> > > +	BUG_ON(!section->page_cgroup);
> > >  	return section->page_cgroup + pfn;
> > >  }
> > >  
> > > just to make it explicit?
> > 
> > No, see the last hunk in this patch.  It's actually possible for this
> > to run, although only while feeding fresh pages into the allocator:
> 
> Bahh. Yes, I have noticed the hunk but then I started thinking about
> how to make the NULL case explicit and totally forgot about that.
> Sorry about the noise.
> 
> > 
> > > > @@ -3326,6 +3321,7 @@ static struct page_cgroup *lookup_page_cgroup_used(struct page *page)
> > > >  	struct page_cgroup *pc;
> > > >  
> > > >  	pc = lookup_page_cgroup(page);
> > > > +	/* Can be NULL while bootstrapping the page allocator */
> > > >  	if (likely(pc) && PageCgroupUsed(pc))
> > > >  		return pc;
> > > >  	return NULL;
> > 
> > We could add a lookup_page_cgroup_safe() for this DEBUG_VM-only
> > callsite as an optimization separately and remove the NULL check from
> > lookup_page_cgroup() itself.  But this patch was purely about removing
> > the actively misleading checks.
> 
> Yes, but I am not sure whether code duplication is worth it. Let's just
> stick with current form. Maybe just move the comment when it can be NULL
> to the lookup_page_cgroup directly?

Don't underestimate it, this function is used quite heavily while the
case of the array being NULL is a minor fraction of all calls.  But
it's for another patch, anyway.

The case for when lookup_page_cgroup() returns NULL is kinda obvious
to me when directly looking at the function itself, because the arrays
are allocated just a few lines below.  But care to send a patch?

--
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/ .
Fight unfair telecom internet charges in Canada: sign http://stopthemeter.ca/
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>

  reply	other threads:[~2011-11-28  9:15 UTC|newest]

Thread overview: 45+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-11-23 15:42 [patch 0/8] mm: memcg fixlets for 3.3 Johannes Weiner
2011-11-23 15:42 ` [patch 1/8] mm: oom_kill: remove memcg argument from oom_kill_task() Johannes Weiner
     [not found]   ` <1322062951-1756-2-git-send-email-hannes-druUgvl0LCNAfugRpC6u6w@public.gmane.org>
2011-11-23 22:35     ` David Rientjes
2011-11-23 23:57     ` KAMEZAWA Hiroyuki
2011-11-28  0:37     ` Balbir Singh
2011-11-24  9:07   ` Michal Hocko
2011-11-23 15:42 ` [patch 2/8] mm: unify remaining mem_cont, mem, etc. variable names to memcg Johannes Weiner
     [not found]   ` <1322062951-1756-3-git-send-email-hannes-druUgvl0LCNAfugRpC6u6w@public.gmane.org>
2011-11-23 22:40     ` David Rientjes
2011-11-23 23:58     ` KAMEZAWA Hiroyuki
2011-11-24  9:17   ` Michal Hocko
2011-11-28  0:42   ` Balbir Singh
2011-11-23 15:42 ` [patch 3/8] mm: memcg: clean up fault accounting Johannes Weiner
     [not found]   ` <1322062951-1756-4-git-send-email-hannes-druUgvl0LCNAfugRpC6u6w@public.gmane.org>
2011-11-24  0:00     ` KAMEZAWA Hiroyuki
2011-11-24  9:33   ` Michal Hocko
2011-11-24  9:51     ` Johannes Weiner
2011-11-28  0:45   ` Balbir Singh
2011-11-23 15:42 ` [patch 4/8] mm: memcg: lookup_page_cgroup (almost) never returns NULL Johannes Weiner
     [not found]   ` <1322062951-1756-5-git-send-email-hannes-druUgvl0LCNAfugRpC6u6w@public.gmane.org>
2011-11-24  0:01     ` KAMEZAWA Hiroyuki
2011-11-24  9:52     ` Michal Hocko
     [not found]       ` <20111124095251.GD26036-VqjxzfR4DlwKmadIfiO5sKVXKuFTiq87@public.gmane.org>
2011-11-24 10:05         ` Johannes Weiner
     [not found]           ` <20111124100549.GH6843-druUgvl0LCNAfugRpC6u6w@public.gmane.org>
2011-11-24 10:26             ` Michal Hocko
2011-11-28  9:15               ` Johannes Weiner [this message]
     [not found]                 ` <20111128091518.GA9356-druUgvl0LCNAfugRpC6u6w@public.gmane.org>
2011-11-28  9:34                   ` Johannes Weiner
     [not found]                     ` <20111128093435.GC9356-druUgvl0LCNAfugRpC6u6w@public.gmane.org>
2011-11-28 10:12                       ` Michal Hocko
2011-11-28  7:03     ` Balbir Singh
     [not found]       ` <CAKTCnz=CObdw0z4Qf36=afwwApuTer5C4Jp21QUko-H__q-+aA-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2011-11-28  9:17         ` Johannes Weiner
2011-11-23 15:42 ` [patch 5/8] mm: memcg: remove unneeded checks from newpage_charge() Johannes Weiner
     [not found]   ` <1322062951-1756-6-git-send-email-hannes-druUgvl0LCNAfugRpC6u6w@public.gmane.org>
2011-11-24  0:04     ` KAMEZAWA Hiroyuki
     [not found]       ` <20111124090443.d3f720c5.kamezawa.hiroyu-+CUm20s59erQFUHtdCDX3A@public.gmane.org>
2011-11-24  9:04         ` Johannes Weiner
     [not found]           ` <20111124090409.GC6843-druUgvl0LCNAfugRpC6u6w@public.gmane.org>
2011-11-24 10:30             ` Michal Hocko
     [not found]               ` <20111124103049.GG26036-VqjxzfR4DlwKmadIfiO5sKVXKuFTiq87@public.gmane.org>
2011-11-24 11:58                 ` Johannes Weiner
2011-11-23 15:42 ` [patch 6/8] mm: memcg: remove unneeded checks from uncharge_page() Johannes Weiner
     [not found]   ` <1322062951-1756-7-git-send-email-hannes-druUgvl0LCNAfugRpC6u6w@public.gmane.org>
2011-11-24  0:06     ` KAMEZAWA Hiroyuki
     [not found]       ` <20111124090619.895988e7.kamezawa.hiroyu-+CUm20s59erQFUHtdCDX3A@public.gmane.org>
2011-11-24  9:06         ` Johannes Weiner
2011-11-24 10:34           ` Michal Hocko
2011-11-23 15:42 ` [patch 7/8] mm: memcg: modify PageCgroupAcctLRU non-atomically Johannes Weiner
     [not found]   ` <1322062951-1756-8-git-send-email-hannes-druUgvl0LCNAfugRpC6u6w@public.gmane.org>
2011-11-23 18:52     ` Hugh Dickins
     [not found]       ` <alpine.LSU.2.00.1111231039390.2175-T/S/X05ZC3jbmfIwyoSfiQ@public.gmane.org>
2011-11-24  8:53         ` Johannes Weiner
2011-11-24  0:09     ` KAMEZAWA Hiroyuki
     [not found]       ` <20111124090915.2f6e2e2c.kamezawa.hiroyu-+CUm20s59erQFUHtdCDX3A@public.gmane.org>
2011-11-24  8:55         ` Johannes Weiner
2011-11-23 15:42 ` [patch 8/8] mm: memcg: modify PageCgroupCache non-atomically Johannes Weiner
     [not found]   ` <1322062951-1756-9-git-send-email-hannes-druUgvl0LCNAfugRpC6u6w@public.gmane.org>
2011-11-24  0:13     ` KAMEZAWA Hiroyuki
     [not found]       ` <20111124091328.d28d9f55.kamezawa.hiroyu-+CUm20s59erQFUHtdCDX3A@public.gmane.org>
2011-11-24  9:13         ` Johannes Weiner
     [not found] ` <1322062951-1756-1-git-send-email-hannes-druUgvl0LCNAfugRpC6u6w@public.gmane.org>
2011-11-24  6:09   ` [patch 0/8] mm: memcg fixlets for 3.3 Balbir Singh
     [not found]     ` <CAKTCnzk0Jzq+o1Qv9hOO5ssO7U_xe1ZqUaWDhWEeJAQQPjPudg-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2011-11-24  9:45       ` Johannes Weiner

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20111128091518.GA9356@cmpxchg.org \
    --to=hannes@cmpxchg.org \
    --cc=akpm@linux-foundation.org \
    --cc=bsingharora@gmail.com \
    --cc=cgroups@vger.kernel.org \
    --cc=kamezawa.hiroyu@jp.fujitsu.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-mm@kvack.org \
    --cc=mhocko@suse.cz \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).