From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail143.messagelabs.com (mail143.messagelabs.com [216.82.254.35]) by kanga.kvack.org (Postfix) with ESMTP id 46EB06B0062 for ; Fri, 6 Nov 2009 00:32:22 -0500 (EST) Date: Fri, 6 Nov 2009 14:14:18 +0900 From: Daisuke Nishimura Subject: [PATCH -mmotm 5/8] memcg: add interface to recharge at task move Message-Id: <20091106141418.07338b99.nishimura@mxp.nes.nec.co.jp> In-Reply-To: <20091106141011.3ded1551.nishimura@mxp.nes.nec.co.jp> References: <20091106141011.3ded1551.nishimura@mxp.nes.nec.co.jp> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-linux-mm@kvack.org To: linux-mm Cc: Andrew Morton , Balbir Singh , KAMEZAWA Hiroyuki , Li Zefan , Paul Menage , Daisuke Nishimura List-ID: In current memcg, charges associated with a task aren't moved to the new cgroup at task move. These patches are for this feature, that is, for recharging to the new cgroup and, of course, uncharging from old cgroup at task move. This patch adds "memory.recharge_at_immigrate" file, which is a flag file to determine whether charges should be moved to the new cgroup at task move or not, and read/write handlers of the file. This patch also adds no-op handlers for this feature. These handlers will be implemented in later patches. Signed-off-by: Daisuke Nishimura --- mm/memcontrol.c | 65 +++++++++++++++++++++++++++++++++++++++++++++++++----- 1 files changed, 59 insertions(+), 6 deletions(-) diff --git a/mm/memcontrol.c b/mm/memcontrol.c index 1ad3248..afa1179 100644 --- a/mm/memcontrol.c +++ b/mm/memcontrol.c @@ -227,6 +227,12 @@ struct mem_cgroup { bool memsw_is_minimum; /* + * Should we recharge charges of a task when a task is moved into this + * mem_cgroup ? + */ + bool recharge_at_immigrate; + + /* * statistics. This must be placed at the end of memcg. */ struct mem_cgroup_stat stat; @@ -2863,6 +2869,30 @@ static int mem_cgroup_reset(struct cgroup *cont, unsigned int event) return 0; } +static u64 mem_cgroup_recharge_read(struct cgroup *cgrp, + struct cftype *cft) +{ + return mem_cgroup_from_cont(cgrp)->recharge_at_immigrate; +} + +static int mem_cgroup_recharge_write(struct cgroup *cgrp, + struct cftype *cft, u64 val) +{ + struct mem_cgroup *mem = mem_cgroup_from_cont(cgrp); + + if (val != 0 && val != 1) + return -EINVAL; + /* + * We check this value both in can_attach() and attach(), so we need + * cgroup lock to prevent this value from being inconsistent. + */ + cgroup_lock(); + mem->recharge_at_immigrate = val; + cgroup_unlock(); + + return 0; +} + /* For read statistics */ enum { @@ -3096,6 +3126,11 @@ static struct cftype mem_cgroup_files[] = { .read_u64 = mem_cgroup_swappiness_read, .write_u64 = mem_cgroup_swappiness_write, }, + { + .name = "recharge_at_immigrate", + .read_u64 = mem_cgroup_recharge_read, + .write_u64 = mem_cgroup_recharge_write, + }, }; #ifdef CONFIG_CGROUP_MEM_RES_CTLR_SWAP @@ -3343,6 +3378,7 @@ mem_cgroup_create(struct cgroup_subsys *ss, struct cgroup *cont) if (parent) mem->swappiness = get_swappiness(parent); atomic_set(&mem->refcnt, 1); + mem->recharge_at_immigrate = 0; return &mem->css; free_out: __mem_cgroup_free(mem); @@ -3379,13 +3415,26 @@ static int mem_cgroup_populate(struct cgroup_subsys *ss, return ret; } +/* Handlers for recharge at task move. */ +static int mem_cgroup_can_recharge(struct mem_cgroup *mem, + struct task_struct *p) +{ + return 0; +} + static int mem_cgroup_can_attach(struct cgroup_subsys *ss, struct cgroup *cgroup, struct task_struct *p, bool threadgroup) { - mutex_lock(&memcg_tasklist); - return 0; + int ret = 0; + struct mem_cgroup *mem = mem_cgroup_from_cont(cgroup); + + if (mem->recharge_at_immigrate && thread_group_leader(p)) + ret = mem_cgroup_can_recharge(mem, p); + if (!ret) + mutex_lock(&memcg_tasklist); + return ret; } static void mem_cgroup_cancel_attach(struct cgroup_subsys *ss, @@ -3396,17 +3445,21 @@ static void mem_cgroup_cancel_attach(struct cgroup_subsys *ss, mutex_unlock(&memcg_tasklist); } +static void mem_cgroup_recharge(void) +{ +} + static void mem_cgroup_move_task(struct cgroup_subsys *ss, struct cgroup *cont, struct cgroup *old_cont, struct task_struct *p, bool threadgroup) { + struct mem_cgroup *mem = mem_cgroup_from_cont(cont); + mutex_unlock(&memcg_tasklist); - /* - * FIXME: It's better to move charges of this process from old - * memcg to new memcg. But it's just on TODO-List now. - */ + if (mem->recharge_at_immigrate && thread_group_leader(p)) + mem_cgroup_recharge(); } struct cgroup_subsys mem_cgroup_subsys = { -- 1.5.6.1 -- 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: email@kvack.org