[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-Id: <20100901093151.8d6cb0e8.kamezawa.hiroyu@jp.fujitsu.com>
Date: Wed, 1 Sep 2010 09:31:51 +0900
From: KAMEZAWA Hiroyuki <kamezawa.hiroyu@...fujitsu.com>
To: Daisuke Nishimura <nishimura@....nes.nec.co.jp>
Cc: linux-mm@...ck.org,
"balbir@...ux.vnet.ibm.com" <balbir@...ux.vnet.ibm.com>,
gthelen@...gle.com, m-ikeda@...jp.nec.com,
"akpm@...ux-foundation.org" <akpm@...ux-foundation.org>,
"linux-kernel@...r.kernel.org" <linux-kernel@...r.kernel.org>,
"menage@...gle.com" <menage@...gle.com>,
"lizf@...fujitsu.com" <lizf@...fujitsu.com>
Subject: Re: [PATCH 5/5] memcg: generic file stat accounting interface
On Tue, 31 Aug 2010 13:33:29 +0900
Daisuke Nishimura <nishimura@....nes.nec.co.jp> wrote:
> On Wed, 25 Aug 2010 17:11:40 +0900
> KAMEZAWA Hiroyuki <kamezawa.hiroyu@...fujitsu.com> wrote:
>
> > From: KAMEZAWA Hiroyuki <kamezawa.hiroyu@...fujitsu.com>
> >
> > Preparing for adding new status arounf file caches.(dirty, writeback,etc..)
> > Using a unified macro and more generic names.
> > All counters will have the same rule for updating.
> >
> > Signed-off-by: KAMEZAWA Hiroyuki <kamezawa.hiroyu@...fujitsu.com>
>
> Reviewed-by: Daisuke Nishimura <nishimura@....nes.nec.co.jp>
>
> one nitpick.
>
> > @@ -2042,17 +2031,20 @@ static void __mem_cgroup_commit_charge(s
> > static void __mem_cgroup_move_account(struct page_cgroup *pc,
> > struct mem_cgroup *from, struct mem_cgroup *to, bool uncharge)
> > {
> > + int i;
> > VM_BUG_ON(from == to);
> > VM_BUG_ON(PageLRU(pc->page));
> > VM_BUG_ON(!PageCgroupLocked(pc));
> > VM_BUG_ON(!PageCgroupUsed(pc));
> > VM_BUG_ON(id_to_memcg(pc->mem_cgroup, true) != from);
> >
> > - if (PageCgroupFileMapped(pc)) {
> > + for (i = MEM_CGROUP_FSTAT_BASE; i < MEM_CGROUP_FSTAT_END; ++i) {
> > + if (!test_bit(fflag_idx(MEMCG_FSTAT_IDX(i)), &pc->flags))
> > + continue;
> > /* Update mapped_file data for mem_cgroup */
> It might be better to update this comment too.
>
> /* Update file-stat data for mem_cgroup */
>
> or something ?
>
Nice catch. I'll fix this.
-Kame
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists