From: KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>
To: KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>
Cc: "linux-mm@kvack.org" <linux-mm@kvack.org>,
"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
"balbir@linux.vnet.ibm.com" <balbir@linux.vnet.ibm.com>,
"nishimura@mxp.nes.nec.co.jp" <nishimura@mxp.nes.nec.co.jp>,
"kosaki.motohiro@jp.fujitsu.com" <kosaki.motohiro@jp.fujitsu.com>
Subject: [RFC][PATCH 2/5] add softlimit to res_counter
Date: Thu, 12 Mar 2009 09:56:12 +0900 [thread overview]
Message-ID: <20090312095612.4a7758e1.kamezawa.hiroyu@jp.fujitsu.com> (raw)
In-Reply-To: <20090312095247.bf338fe8.kamezawa.hiroyu@jp.fujitsu.com>
From: KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>
Adds an interface for defining sotlimit per memcg. (no handler in this patch.)
softlimit paramater itself is added to res_counter and
res_counter_set_softlimit() and
res_counter_check_under_softlimit() is provided as an interface.
Changelog v2->v3:
- softlimit is moved to res_counter
Changelog v1->v2:
- For refactoring, divided a patch into 2 part and this patch just
involves memory.softlimit interface.
- Removed governor-detect routine, it was buggy in design.
Signed-off-by: KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>
---
include/linux/res_counter.h | 9 +++++++++
kernel/res_counter.c | 29 +++++++++++++++++++++++++++++
mm/memcontrol.c | 12 ++++++++++++
3 files changed, 50 insertions(+)
Index: mmotm-2.6.29-Mar10/mm/memcontrol.c
===================================================================
--- mmotm-2.6.29-Mar10.orig/mm/memcontrol.c
+++ mmotm-2.6.29-Mar10/mm/memcontrol.c
@@ -2002,6 +2002,12 @@ static int mem_cgroup_write(struct cgrou
else
ret = mem_cgroup_resize_memsw_limit(memcg, val);
break;
+ case RES_SOFTLIMIT:
+ ret = res_counter_memparse_write_strategy(buffer, &val);
+ if (ret)
+ break;
+ ret = res_counter_set_softlimit(&memcg->res, val);
+ break;
default:
ret = -EINVAL; /* should be BUG() ? */
break;
@@ -2251,6 +2257,12 @@ static struct cftype mem_cgroup_files[]
.read_u64 = mem_cgroup_read,
},
{
+ .name = "softlimit_in_bytes",
+ .private = MEMFILE_PRIVATE(_MEM, RES_SOFTLIMIT),
+ .write_string = mem_cgroup_write,
+ .read_u64 = mem_cgroup_read,
+ },
+ {
.name = "failcnt",
.private = MEMFILE_PRIVATE(_MEM, RES_FAILCNT),
.trigger = mem_cgroup_reset,
Index: mmotm-2.6.29-Mar10/include/linux/res_counter.h
===================================================================
--- mmotm-2.6.29-Mar10.orig/include/linux/res_counter.h
+++ mmotm-2.6.29-Mar10/include/linux/res_counter.h
@@ -39,6 +39,10 @@ struct res_counter {
*/
unsigned long long failcnt;
/*
+ * the softlimit.
+ */
+ unsigned long long softlimit;
+ /*
* the lock to protect all of the above.
* the routines below consider this to be IRQ-safe
*/
@@ -85,6 +89,7 @@ enum {
RES_MAX_USAGE,
RES_LIMIT,
RES_FAILCNT,
+ RES_SOFTLIMIT,
};
/*
@@ -178,4 +183,8 @@ static inline int res_counter_set_limit(
return ret;
}
+/* res_counter's softlimit check can handles hierarchy in proper way */
+int res_counter_set_softlimit(struct res_counter *cnt, unsigned long long val);
+bool res_counter_check_under_softlimit(struct res_counter *cnt);
+
#endif
Index: mmotm-2.6.29-Mar10/kernel/res_counter.c
===================================================================
--- mmotm-2.6.29-Mar10.orig/kernel/res_counter.c
+++ mmotm-2.6.29-Mar10/kernel/res_counter.c
@@ -20,6 +20,7 @@ void res_counter_init(struct res_counter
spin_lock_init(&counter->lock);
counter->limit = (unsigned long long)LLONG_MAX;
counter->parent = parent;
+ counter->softlimit = (unsigned long long)LLONG_MAX;
}
int res_counter_charge_locked(struct res_counter *counter, unsigned long val)
@@ -88,6 +89,32 @@ void res_counter_uncharge(struct res_cou
local_irq_restore(flags);
}
+int res_counter_set_softlimit(struct res_counter *cnt, unsigned long long val)
+{
+ unsigned long flags;
+
+ spin_lock_irqsave(&cnt->lock, flags);
+ cnt->softlimit = val;
+ spin_unlock_irqrestore(&cnt->lock, flags);
+ return 0;
+}
+
+bool res_counter_check_under_softlimit(struct res_counter *cnt)
+{
+ struct res_counter *c;
+ unsigned long flags;
+ bool ret = true;
+
+ local_irq_save(flags);
+ for (c = cnt; ret && c != NULL; c = c->parent) {
+ spin_lock(&c->lock);
+ if (c->softlimit < c->usage)
+ ret = false;
+ spin_unlock(&c->lock);
+ }
+ local_irq_restore(flags);
+ return ret;
+}
static inline unsigned long long *
res_counter_member(struct res_counter *counter, int member)
@@ -101,6 +128,8 @@ res_counter_member(struct res_counter *c
return &counter->limit;
case RES_FAILCNT:
return &counter->failcnt;
+ case RES_SOFTLIMIT:
+ return &counter->softlimit;
};
BUG();
--
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>
next prev parent reply other threads:[~2009-03-12 0:57 UTC|newest]
Thread overview: 34+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-03-12 0:52 [RFC][PATCH 0/5] memcg softlimit (Another one) v4 KAMEZAWA Hiroyuki
2009-03-12 0:55 ` [BUGFIX][PATCH 1/5] memcg use correct scan number at reclaim KAMEZAWA Hiroyuki
2009-03-12 3:49 ` Balbir Singh
2009-03-12 3:51 ` KAMEZAWA Hiroyuki
2009-03-12 4:00 ` Balbir Singh
2009-03-12 4:05 ` KAMEZAWA Hiroyuki
2009-03-12 4:14 ` Balbir Singh
2009-03-12 4:17 ` KAMEZAWA Hiroyuki
2009-03-12 7:45 ` KOSAKI Motohiro
2009-03-12 9:45 ` Balbir Singh
2009-03-12 11:23 ` KOSAKI Motohiro
2009-03-12 0:56 ` KAMEZAWA Hiroyuki [this message]
2009-03-12 3:54 ` [RFC][PATCH 2/5] add softlimit to res_counter Balbir Singh
2009-03-12 3:58 ` KAMEZAWA Hiroyuki
2009-03-12 4:10 ` Balbir Singh
2009-03-12 4:14 ` KAMEZAWA Hiroyuki
2009-03-12 0:57 ` [RFC][PATCH 3/5] memcg per zone softlimit scheduler core KAMEZAWA Hiroyuki
2009-03-12 0:58 ` [RFC][PATCH 4/5] memcg softlimit_priority KAMEZAWA Hiroyuki
2009-03-12 1:00 ` [RFC][PATCH 5/5] memcg softlimit hooks to kswapd KAMEZAWA Hiroyuki
2009-03-12 3:58 ` Balbir Singh
2009-03-12 4:02 ` KAMEZAWA Hiroyuki
2009-03-12 4:59 ` KAMEZAWA Hiroyuki
2009-03-12 1:01 ` [RFC][PATCH 6/5] softlimit document KAMEZAWA Hiroyuki
2009-03-12 1:54 ` Li Zefan
2009-03-12 2:01 ` KAMEZAWA Hiroyuki
2009-03-12 3:46 ` [RFC][PATCH 0/5] memcg softlimit (Another one) v4 Balbir Singh
2009-03-12 4:39 ` KAMEZAWA Hiroyuki
2009-03-12 5:04 ` Balbir Singh
2009-03-12 5:32 ` KAMEZAWA Hiroyuki
2009-03-12 8:26 ` Balbir Singh
2009-03-12 8:45 ` KAMEZAWA Hiroyuki
2009-03-12 9:53 ` Balbir Singh
2009-03-14 18:52 ` Balbir Singh
2009-03-16 0:10 ` 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=20090312095612.4a7758e1.kamezawa.hiroyu@jp.fujitsu.com \
--to=kamezawa.hiroyu@jp.fujitsu.com \
--cc=balbir@linux.vnet.ibm.com \
--cc=kosaki.motohiro@jp.fujitsu.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mm@kvack.org \
--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