linux-mm.kvack.org archive mirror
 help / color / mirror / Atom feed
From: KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>
To: Li Zefan <lizf@cn.fujitsu.com>
Cc: Balbir Singh <balbir@linux.vnet.ibm.com>,
	Paul Menage <menage@google.com>,
	Daisuke Nishimura <nishimura@mxp.nes.nec.co.jp>,
	Linux Containers <containers@lists.linux-foundation.org>,
	"linux-mm@kvack.org" <linux-mm@kvack.org>
Subject: Re: [RFC][PATCH] memcg: fix a race when setting memcg.swappiness
Date: Wed, 14 Jan 2009 13:26:16 +0900	[thread overview]
Message-ID: <20090114132616.3cb7d568.kamezawa.hiroyu@jp.fujitsu.com> (raw)
In-Reply-To: <496D5AE2.2020403@cn.fujitsu.com>

On Wed, 14 Jan 2009 11:24:18 +0800
Li Zefan <lizf@cn.fujitsu.com> wrote:

> (suppose: memcg->use_hierarchy == 0 and memcg->swappiness == 60)
> 
> echo 10 > /memcg/0/swappiness   |
>   mem_cgroup_swappiness_write() |
>     ...                         | echo 1 > /memcg/0/use_hierarchy
>                                 | mkdir /mnt/0/1
>                                 |   sub_memcg->swappiness = 60;
>     memcg->swappiness = 10;     |
> 
> In the above scenario, we end up having 2 different swappiness
> values in a single hierarchy.
> 
> Note we can't use hierarchy_lock here, because it doesn't protect
> the create() method.
> 
> Though IMO use cgroup_lock() in simple write functions is OK,
> Paul would like to avoid it. And he sugguested use a counter to
> count the number of children instead of check cgrp->children list:
> 
> =================
> create() does:
> 
> lock memcg_parent
> memcg->swappiness = memcg->parent->swappiness;
> memcg_parent->child_count++;
> unlock memcg_parent
> 
> and write() does:
> 
> lock memcg
> if (!memcg->child_count) {
>   memcg->swappiness = swappiness;
> } else {
>   report error;
> }
> unlock memcg
> 
> destroy() does:
> lock memcg_parent
> memcg_parent->child_count--;
> unlock memcg_parent
> 
> =================
> 
> And there is a suble differnce with checking cgrp->children,
> that a cgroup is removed from parent's list in cgroup_rmdir(),
> while memcg->child_count is decremented in cgroup_diput().
> 
> 
> Signed-off-by: Li Zefan <lizf@cn.fujitsu.com>

Seems reasonable, but, hmm...

Why hierarchy_mutex can't be used for create() ?

-Kame

> ---
>  mm/memcontrol.c |   10 +++++++++-
>  1 files changed, 9 insertions(+), 1 deletions(-)
> 
> diff --git a/mm/memcontrol.c b/mm/memcontrol.c
> index e2996b8..0274223 100644
> --- a/mm/memcontrol.c
> +++ b/mm/memcontrol.c
> @@ -1971,6 +1971,7 @@ static int mem_cgroup_swappiness_write(struct cgroup *cgrp, struct cftype *cft,
>  {
>  	struct mem_cgroup *memcg = mem_cgroup_from_cont(cgrp);
>  	struct mem_cgroup *parent;
> +
>  	if (val > 100)
>  		return -EINVAL;
>  
> @@ -1978,15 +1979,22 @@ static int mem_cgroup_swappiness_write(struct cgroup *cgrp, struct cftype *cft,
>  		return -EINVAL;
>  
>  	parent = mem_cgroup_from_cont(cgrp->parent);
> +
> +	cgroup_lock();
> +
>  	/* If under hierarchy, only empty-root can set this value */
>  	if ((parent->use_hierarchy) ||
> -	    (memcg->use_hierarchy && !list_empty(&cgrp->children)))
> +	    (memcg->use_hierarchy && !list_empty(&cgrp->children))) {
> +		cgroup_unlock();
>  		return -EINVAL;
> +	}
>  
>  	spin_lock(&memcg->reclaim_param_lock);
>  	memcg->swappiness = val;
>  	spin_unlock(&memcg->reclaim_param_lock);
>  
> +	cgroup_unlock();
> +
>  	return 0;
>  }
>  
> -- 
> 1.5.4.rc3
> 
> --
> 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/ .
> Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>
> 

--
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/ .
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>

  reply	other threads:[~2009-01-14  4:27 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-01-14  3:24 Li Zefan
2009-01-14  4:26 ` KAMEZAWA Hiroyuki [this message]
2009-01-14  6:47   ` Li Zefan
2009-01-14  7:05     ` KAMEZAWA Hiroyuki
2009-01-14  7:22       ` Li Zefan
2009-01-14  7:29         ` KAMEZAWA Hiroyuki

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=20090114132616.3cb7d568.kamezawa.hiroyu@jp.fujitsu.com \
    --to=kamezawa.hiroyu@jp.fujitsu.com \
    --cc=balbir@linux.vnet.ibm.com \
    --cc=containers@lists.linux-foundation.org \
    --cc=linux-mm@kvack.org \
    --cc=lizf@cn.fujitsu.com \
    --cc=menage@google.com \
    --cc=nishimura@mxp.nes.nec.co.jp \
    /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