From: David Rientjes <rientjes@google.com>
To: KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>
Cc: Ying Han <yinghan@google.com>,
KOSAKI Motohiro <kosaki.motohiro@jp.fujitsu.com>,
Minchan Kim <minchan.kim@gmail.com>,
Daisuke Nishimura <nishimura@mxp.nes.nec.co.jp>,
Balbir Singh <balbir@linux.vnet.ibm.com>,
Tejun Heo <tj@kernel.org>,
Mark Brown <broonie@opensource.wolfsonmicro.com>,
Andrew Morton <akpm@linux-foundation.org>,
linux-mm@kvack.org
Subject: Re: [PATCH V3] Add the pagefault count into memcg stats
Date: Wed, 13 Apr 2011 17:47:01 -0700 (PDT) [thread overview]
Message-ID: <alpine.DEB.2.00.1104131742250.16515@chino.kir.corp.google.com> (raw)
In-Reply-To: <20110414085239.a597fb5c.kamezawa.hiroyu@jp.fujitsu.com>
On Thu, 14 Apr 2011, KAMEZAWA Hiroyuki wrote:
> > I'm wondering if we can just modify count_vm_event() directly for
> > CONFIG_CGROUP_MEM_RES_CTLR so that we automatically track all vmstat items
> > (those in enum vm_event_item) for each memcg. We could add an array of
> > NR_VM_EVENT_ITEMS into each struct mem_cgroup to be incremented on
> > count_vm_event() for current's memcg.
> >
> > If that's done, we wouldn't have to add additional calls for every vmstat
> > item we want to duplicate from the global counters.
> >
>
> Maybe we do that finally.
>
> For now, IIUC, over 50% of VM_EVENTS are needless for memcg (ex. per zone stats)
> and this array consumes large size of percpu area. I think we need to select
> events carefully even if we do that. And current memcg's percpu stat is mixture
> of vm_events and vm_stat. We may need to sort out them and re-design it.
> My concern is that I'm not sure we have enough percpu area for vmstat+vmevents
> for 1000+ memcg, and it's allowed even if we can do.
>
What I proposed above was adding an array directly into struct mem_cgroup
so that we don't collect the stats percpu, they are incremented directly
in the mem_cgroup. Perhaps if we separated enum vm_event_item out into
two separate arrays (those useful only globally and those useful for both
global and memcg), then this would be simple.
Something like
enum vm_event_item {
PGPGIN,
PGPGOUT,
PSWPIN,
PSWPOUT,
...
NR_VM_EVENT_ITEMS,
};
enum vm_global_event_item {
KSWAPD_STEAL = NR_VM_EVENT_ITEMS,
KSWAPD_INODESTEAL,
...
};
and then in count_vm_event(), check
if (item < NR_VM_EVENT_ITEMS) {
memcg_add_vm_event(mem, item, count);
}
I don't think we need to be concerned about reordering the global
/proc/vmstat to fit this purpose.
--
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>
next prev parent reply other threads:[~2011-04-14 0:47 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-03-29 17:32 Ying Han
2011-03-30 1:16 ` KOSAKI Motohiro
2011-03-30 1:37 ` Ying Han
2011-03-30 1:54 ` KOSAKI Motohiro
2011-03-31 20:01 ` Andrew Morton
2011-04-13 20:12 ` David Rientjes
2011-04-13 23:52 ` KAMEZAWA Hiroyuki
2011-04-14 0:47 ` David Rientjes [this message]
2011-04-14 1:18 ` KAMEZAWA Hiroyuki
-- strict thread matches above, loose matches on Subject: below --
2011-03-29 6:16 Ying Han
2011-03-29 21:36 ` Minchan Kim
2011-03-30 2:47 ` Balbir Singh
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=alpine.DEB.2.00.1104131742250.16515@chino.kir.corp.google.com \
--to=rientjes@google.com \
--cc=akpm@linux-foundation.org \
--cc=balbir@linux.vnet.ibm.com \
--cc=broonie@opensource.wolfsonmicro.com \
--cc=kamezawa.hiroyu@jp.fujitsu.com \
--cc=kosaki.motohiro@jp.fujitsu.com \
--cc=linux-mm@kvack.org \
--cc=minchan.kim@gmail.com \
--cc=nishimura@mxp.nes.nec.co.jp \
--cc=tj@kernel.org \
--cc=yinghan@google.com \
/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