* [RFC] [PATCH 0/6 v3] memcg: page cgroup diet
@ 2012-02-06 10:06 KAMEZAWA Hiroyuki
2012-02-06 10:07 ` [PATCH 1/6] memcg: simplify move_account() check KAMEZAWA Hiroyuki
` (5 more replies)
0 siblings, 6 replies; 9+ messages in thread
From: KAMEZAWA Hiroyuki @ 2012-02-06 10:06 UTC (permalink / raw)
To: linux-mm@kvack.org
Cc: linux-kernel@vger.kernel.org, hannes@cmpxchg.org, Michal Hocko,
Ying Han, Hugh Dickins, akpm@linux-foundation.org
Here is my page_cgroup diet series v3. Since v2, "remove PCG_CACHE" is alread
merged.
This series changes page-stat-accounting per memcg
from:
if (change page's state)
mem_cgroup_update_page_state()
to:
mem_cgroup_begin_update_page_state()
if (change page's state)
mem_cgroup_update_page_state()
mem_cgroup_end_update_page_state()
(see patch 4 for details.) This allows us not to duplicate page struct's
information in page_cgroup's flag field.
Because above sequence adds 2 extra calls to hot-path, performance will be problem.
Patch 6 is a fix for performance, and I don't see performance regression in my
small test. (see patch 6 for details.)
Thanks,
-Kame
--
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>
^ permalink raw reply [flat|nested] 9+ messages in thread
* [PATCH 1/6] memcg: simplify move_account() check.
2012-02-06 10:06 [RFC] [PATCH 0/6 v3] memcg: page cgroup diet KAMEZAWA Hiroyuki
@ 2012-02-06 10:07 ` KAMEZAWA Hiroyuki
2012-02-06 22:38 ` Andrew Morton
2012-02-06 10:09 ` [RFC] [PATCH 2/6 v3] memcg: remove EXPORT_SYMBOL(mem_cgroup_update_page_stat) KAMEZAWA Hiroyuki
` (4 subsequent siblings)
5 siblings, 1 reply; 9+ messages in thread
From: KAMEZAWA Hiroyuki @ 2012-02-06 10:07 UTC (permalink / raw)
To: KAMEZAWA Hiroyuki
Cc: linux-mm@kvack.org, linux-kernel@vger.kernel.org,
hannes@cmpxchg.org, Michal Hocko, Ying Han, Hugh Dickins,
akpm@linux-foundation.org
^ permalink raw reply [flat|nested] 9+ messages in thread
* [RFC] [PATCH 2/6 v3] memcg: remove EXPORT_SYMBOL(mem_cgroup_update_page_stat)
2012-02-06 10:06 [RFC] [PATCH 0/6 v3] memcg: page cgroup diet KAMEZAWA Hiroyuki
2012-02-06 10:07 ` [PATCH 1/6] memcg: simplify move_account() check KAMEZAWA Hiroyuki
@ 2012-02-06 10:09 ` KAMEZAWA Hiroyuki
2012-02-06 10:09 ` [PATCH 3/6] memcg: remove PCG_MOVE_LOCK flag from page_cgroup KAMEZAWA Hiroyuki
` (3 subsequent siblings)
5 siblings, 0 replies; 9+ messages in thread
From: KAMEZAWA Hiroyuki @ 2012-02-06 10:09 UTC (permalink / raw)
To: KAMEZAWA Hiroyuki
Cc: linux-mm@kvack.org, linux-kernel@vger.kernel.org,
hannes@cmpxchg.org, Michal Hocko, Ying Han, Hugh Dickins,
akpm@linux-foundation.org
Michal pointed out this.
^ permalink raw reply [flat|nested] 9+ messages in thread
* [PATCH 3/6] memcg: remove PCG_MOVE_LOCK flag from page_cgroup.
2012-02-06 10:06 [RFC] [PATCH 0/6 v3] memcg: page cgroup diet KAMEZAWA Hiroyuki
2012-02-06 10:07 ` [PATCH 1/6] memcg: simplify move_account() check KAMEZAWA Hiroyuki
2012-02-06 10:09 ` [RFC] [PATCH 2/6 v3] memcg: remove EXPORT_SYMBOL(mem_cgroup_update_page_stat) KAMEZAWA Hiroyuki
@ 2012-02-06 10:09 ` KAMEZAWA Hiroyuki
2012-02-06 10:10 ` [RFC][PATCH 4/6] memcg: use new logic for page stat accounting KAMEZAWA Hiroyuki
` (2 subsequent siblings)
5 siblings, 0 replies; 9+ messages in thread
From: KAMEZAWA Hiroyuki @ 2012-02-06 10:09 UTC (permalink / raw)
To: KAMEZAWA Hiroyuki
Cc: linux-mm@kvack.org, linux-kernel@vger.kernel.org,
hannes@cmpxchg.org, Michal Hocko, Ying Han, Hugh Dickins,
akpm@linux-foundation.org
^ permalink raw reply [flat|nested] 9+ messages in thread
* [RFC][PATCH 4/6] memcg: use new logic for page stat accounting.
2012-02-06 10:06 [RFC] [PATCH 0/6 v3] memcg: page cgroup diet KAMEZAWA Hiroyuki
` (2 preceding siblings ...)
2012-02-06 10:09 ` [PATCH 3/6] memcg: remove PCG_MOVE_LOCK flag from page_cgroup KAMEZAWA Hiroyuki
@ 2012-02-06 10:10 ` KAMEZAWA Hiroyuki
2012-02-06 10:10 ` [RFC][PATCH 5/6] memcg: remove PCG_FILE_MAPPED KAMEZAWA Hiroyuki
2012-02-06 10:11 ` [RFC] [PATCH 6/6] memcg: fix performance of mem_cgroup_begin_update_page_stat() KAMEZAWA Hiroyuki
5 siblings, 0 replies; 9+ messages in thread
From: KAMEZAWA Hiroyuki @ 2012-02-06 10:10 UTC (permalink / raw)
To: KAMEZAWA Hiroyuki
Cc: linux-mm@kvack.org, linux-kernel@vger.kernel.org,
hannes@cmpxchg.org, Michal Hocko, Ying Han, Hugh Dickins,
akpm@linux-foundation.org
^ permalink raw reply [flat|nested] 9+ messages in thread
* [RFC][PATCH 5/6] memcg: remove PCG_FILE_MAPPED
2012-02-06 10:06 [RFC] [PATCH 0/6 v3] memcg: page cgroup diet KAMEZAWA Hiroyuki
` (3 preceding siblings ...)
2012-02-06 10:10 ` [RFC][PATCH 4/6] memcg: use new logic for page stat accounting KAMEZAWA Hiroyuki
@ 2012-02-06 10:10 ` KAMEZAWA Hiroyuki
2012-02-06 10:11 ` [RFC] [PATCH 6/6] memcg: fix performance of mem_cgroup_begin_update_page_stat() KAMEZAWA Hiroyuki
5 siblings, 0 replies; 9+ messages in thread
From: KAMEZAWA Hiroyuki @ 2012-02-06 10:10 UTC (permalink / raw)
To: KAMEZAWA Hiroyuki
Cc: linux-mm@kvack.org, linux-kernel@vger.kernel.org,
hannes@cmpxchg.org, Michal Hocko, Ying Han, Hugh Dickins,
akpm@linux-foundation.org
^ permalink raw reply [flat|nested] 9+ messages in thread
* [RFC] [PATCH 6/6] memcg: fix performance of mem_cgroup_begin_update_page_stat()
2012-02-06 10:06 [RFC] [PATCH 0/6 v3] memcg: page cgroup diet KAMEZAWA Hiroyuki
` (4 preceding siblings ...)
2012-02-06 10:10 ` [RFC][PATCH 5/6] memcg: remove PCG_FILE_MAPPED KAMEZAWA Hiroyuki
@ 2012-02-06 10:11 ` KAMEZAWA Hiroyuki
5 siblings, 0 replies; 9+ messages in thread
From: KAMEZAWA Hiroyuki @ 2012-02-06 10:11 UTC (permalink / raw)
To: KAMEZAWA Hiroyuki
Cc: linux-mm@kvack.org, linux-kernel@vger.kernel.org,
hannes@cmpxchg.org, Michal Hocko, Ying Han, Hugh Dickins,
akpm@linux-foundation.org
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH 1/6] memcg: simplify move_account() check.
2012-02-06 10:07 ` [PATCH 1/6] memcg: simplify move_account() check KAMEZAWA Hiroyuki
@ 2012-02-06 22:38 ` Andrew Morton
2012-02-07 0:19 ` KAMEZAWA Hiroyuki
0 siblings, 1 reply; 9+ messages in thread
From: Andrew Morton @ 2012-02-06 22:38 UTC (permalink / raw)
To: KAMEZAWA Hiroyuki
Cc: linux-mm@kvack.org, linux-kernel@vger.kernel.org,
hannes@cmpxchg.org, Michal Hocko, Ying Han, Hugh Dickins
On Mon, 6 Feb 2012 19:07:59 +0900
KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com> wrote:
> >From c75cc843ca0cb36de97ab814e59fb4ab7b1ffbd1 Mon Sep 17 00:00:00 2001
> From: KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>
> Date: Thu, 2 Feb 2012 10:02:39 +0900
> Subject: [PATCH 1/6] memcg: simplify move_account() check.
>
> In memcg, for avoiding take-lock-irq-off at accessing page_cgroup,
> a logic, flag + rcu_read_lock(), is used. This works as following
>
> CPU-A CPU-B
> rcu_read_lock()
> set flag
> if(flag is set)
> take heavy lock
> do job.
> synchronize_rcu() rcu_read_unlock()
>
> In recent discussion, it's argued that using per-cpu value for this
> flag just complicates the code because 'set flag' is very rare.
>
> This patch changes 'flag' implementation from percpu to atomic_t.
> This will be much simpler.
>
To me, "RFC" says "might not be ready for merging yet". You're up to
v3 - why is it still RFC? You're still expecting to make significant
changes?
>
> }
> +/*
> + * memcg->moving_account is used for checking possibility that some thread is
> + * calling move_account(). When a thread on CPU-A starts moving pages under
> + * a memcg, other threads sholud check memcg->moving_account under
"should"
> + * rcu_read_lock(), like this:
> + *
> + * CPU-A CPU-B
> + * rcu_read_lock()
> + * memcg->moving_account+1 if (memcg->mocing_account)
> + * take havier locks.
> + * syncronize_rcu() update something.
> + * rcu_read_unlock()
> + * start move here.
> + */
>
> static void mem_cgroup_start_move(struct mem_cgroup *memcg)
> {
> - int cpu;
> -
> - get_online_cpus();
> - spin_lock(&memcg->pcp_counter_lock);
> - for_each_online_cpu(cpu)
> - per_cpu(memcg->stat->count[MEM_CGROUP_ON_MOVE], cpu) += 1;
> - memcg->nocpu_base.count[MEM_CGROUP_ON_MOVE] += 1;
> - spin_unlock(&memcg->pcp_counter_lock);
> - put_online_cpus();
> -
> + atomic_inc(&memcg->moving_account);
> synchronize_rcu();
> }
>
> static void mem_cgroup_end_move(struct mem_cgroup *memcg)
> {
> - int cpu;
> -
> - if (!memcg)
> - return;
> - get_online_cpus();
> - spin_lock(&memcg->pcp_counter_lock);
> - for_each_online_cpu(cpu)
> - per_cpu(memcg->stat->count[MEM_CGROUP_ON_MOVE], cpu) -= 1;
> - memcg->nocpu_base.count[MEM_CGROUP_ON_MOVE] -= 1;
> - spin_unlock(&memcg->pcp_counter_lock);
> - put_online_cpus();
> + if (memcg)
> + atomic_dec(&memcg->moving_account);
> }
It's strange that end_move handles a NULL memcg but start_move does not.
> /*
> * 2 routines for checking "mem" is under move_account() or not.
> @@ -1298,7 +1297,7 @@ static void mem_cgroup_end_move(struct mem_cgroup *memcg)
> static bool mem_cgroup_stealed(struct mem_cgroup *memcg)
> {
> VM_BUG_ON(!rcu_read_lock_held());
> - return this_cpu_read(memcg->stat->count[MEM_CGROUP_ON_MOVE]) > 0;
> + return atomic_read(&memcg->moving_account);
> }
So a bool-returning function can return something > 1?
I don't know what the compiler would make of that. Presumably "if (b)"
will work OK, but will "if (b1 == b2)"?
--
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>
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH 1/6] memcg: simplify move_account() check.
2012-02-06 22:38 ` Andrew Morton
@ 2012-02-07 0:19 ` KAMEZAWA Hiroyuki
0 siblings, 0 replies; 9+ messages in thread
From: KAMEZAWA Hiroyuki @ 2012-02-07 0:19 UTC (permalink / raw)
To: Andrew Morton
Cc: linux-mm@kvack.org, linux-kernel@vger.kernel.org,
hannes@cmpxchg.org, Michal Hocko, Ying Han, Hugh Dickins
On Mon, 6 Feb 2012 14:38:53 -0800
Andrew Morton <akpm@linux-foundation.org> wrote:
> On Mon, 6 Feb 2012 19:07:59 +0900
> KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com> wrote:
>
> > >From c75cc843ca0cb36de97ab814e59fb4ab7b1ffbd1 Mon Sep 17 00:00:00 2001
> > From: KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>
> > Date: Thu, 2 Feb 2012 10:02:39 +0900
> > Subject: [PATCH 1/6] memcg: simplify move_account() check.
> >
> > In memcg, for avoiding take-lock-irq-off at accessing page_cgroup,
> > a logic, flag + rcu_read_lock(), is used. This works as following
> >
> > CPU-A CPU-B
> > rcu_read_lock()
> > set flag
> > if(flag is set)
> > take heavy lock
> > do job.
> > synchronize_rcu() rcu_read_unlock()
> >
> > In recent discussion, it's argued that using per-cpu value for this
> > flag just complicates the code because 'set flag' is very rare.
> >
> > This patch changes 'flag' implementation from percpu to atomic_t.
> > This will be much simpler.
> >
>
> To me, "RFC" says "might not be ready for merging yet". You're up to
> v3 - why is it still RFC? You're still expecting to make significant
> changes?
>
Yes, I made changes discussed in v2. and need to show how it looks.
I'm sorry that changelog wasn't enough.
> >
> > }
> > +/*
> > + * memcg->moving_account is used for checking possibility that some thread is
> > + * calling move_account(). When a thread on CPU-A starts moving pages under
> > + * a memcg, other threads sholud check memcg->moving_account under
>
> "should"
>
Sure..
> > + * rcu_read_lock(), like this:
> > + *
> > + * CPU-A CPU-B
> > + * rcu_read_lock()
> > + * memcg->moving_account+1 if (memcg->mocing_account)
> > + * take havier locks.
> > + * syncronize_rcu() update something.
> > + * rcu_read_unlock()
> > + * start move here.
> > + */
> >
> > static void mem_cgroup_start_move(struct mem_cgroup *memcg)
> > {
> > - int cpu;
> > -
> > - get_online_cpus();
> > - spin_lock(&memcg->pcp_counter_lock);
> > - for_each_online_cpu(cpu)
> > - per_cpu(memcg->stat->count[MEM_CGROUP_ON_MOVE], cpu) += 1;
> > - memcg->nocpu_base.count[MEM_CGROUP_ON_MOVE] += 1;
> > - spin_unlock(&memcg->pcp_counter_lock);
> > - put_online_cpus();
> > -
> > + atomic_inc(&memcg->moving_account);
> > synchronize_rcu();
> > }
> >
> > static void mem_cgroup_end_move(struct mem_cgroup *memcg)
> > {
> > - int cpu;
> > -
> > - if (!memcg)
> > - return;
> > - get_online_cpus();
> > - spin_lock(&memcg->pcp_counter_lock);
> > - for_each_online_cpu(cpu)
> > - per_cpu(memcg->stat->count[MEM_CGROUP_ON_MOVE], cpu) -= 1;
> > - memcg->nocpu_base.count[MEM_CGROUP_ON_MOVE] -= 1;
> > - spin_unlock(&memcg->pcp_counter_lock);
> > - put_online_cpus();
> > + if (memcg)
> > + atomic_dec(&memcg->moving_account);
> > }
>
> It's strange that end_move handles a NULL memcg but start_move does not.
>
Ah, the reason was that mem_cgroup_end_move() can called in mem_cgroup_clear_mc().
This mem_cgroup_clear_mc() can call mem_cgroup_end_move(NULL)...
Then, this function has NULL check in callee side.
I'll add comments.
> > /*
> > * 2 routines for checking "mem" is under move_account() or not.
> > @@ -1298,7 +1297,7 @@ static void mem_cgroup_end_move(struct mem_cgroup *memcg)
> > static bool mem_cgroup_stealed(struct mem_cgroup *memcg)
> > {
> > VM_BUG_ON(!rcu_read_lock_held());
> > - return this_cpu_read(memcg->stat->count[MEM_CGROUP_ON_MOVE]) > 0;
> > + return atomic_read(&memcg->moving_account);
> > }
>
> So a bool-returning function can return something > 1?
>
> I don't know what the compiler would make of that. Presumably "if (b)"
> will work OK, but will "if (b1 == b2)"?
>
if (!mem_cgroup_stealed(memcg))
ffffffff8116e278: 85 c0 test %eax,%eax
ffffffff8116e27a: 74 1f je ffffffff8116e29b <__mem_cgroup_begin_update_page_stat+0x7b>
return;
ffffffff8116e29b: 5b pop %rbx
ffffffff8116e29c: 41 5c pop %r12
ffffffff8116e29e: 41 5d pop %r13
ffffffff8116e2a0: 41 5e pop %r14
ffffffff8116e2a2: c9 leaveq
ffffffff8116e2a3: c3 retq
Maybe works as expected but... I'll rewrite..how about this ?.
^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2012-02-07 0:20 UTC | newest]
Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-02-06 10:06 [RFC] [PATCH 0/6 v3] memcg: page cgroup diet KAMEZAWA Hiroyuki
2012-02-06 10:07 ` [PATCH 1/6] memcg: simplify move_account() check KAMEZAWA Hiroyuki
2012-02-06 22:38 ` Andrew Morton
2012-02-07 0:19 ` KAMEZAWA Hiroyuki
2012-02-06 10:09 ` [RFC] [PATCH 2/6 v3] memcg: remove EXPORT_SYMBOL(mem_cgroup_update_page_stat) KAMEZAWA Hiroyuki
2012-02-06 10:09 ` [PATCH 3/6] memcg: remove PCG_MOVE_LOCK flag from page_cgroup KAMEZAWA Hiroyuki
2012-02-06 10:10 ` [RFC][PATCH 4/6] memcg: use new logic for page stat accounting KAMEZAWA Hiroyuki
2012-02-06 10:10 ` [RFC][PATCH 5/6] memcg: remove PCG_FILE_MAPPED KAMEZAWA Hiroyuki
2012-02-06 10:11 ` [RFC] [PATCH 6/6] memcg: fix performance of mem_cgroup_begin_update_page_stat() KAMEZAWA Hiroyuki
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).