From: David Rientjes <rientjes@google.com>
To: Andrew Morton <akpm@linux-foundation.org>
Cc: Andrea Arcangeli <andrea@suse.de>, Paul Jackson <pj@sgi.com>,
Christoph Lameter <clameter@sgi.com>,
linux-mm@kvack.org
Subject: [patch 5/4] oom: add oom_kill_asking_task flag
Date: Thu, 28 Jun 2007 13:41:39 -0700 (PDT) [thread overview]
Message-ID: <alpine.DEB.0.99.0706281340380.30133@chino.kir.corp.google.com> (raw)
In-Reply-To: <alpine.DEB.0.99.0706261950140.24949@chino.kir.corp.google.com>
Adds an oom_kill_asking_task flag to cpusets. If unset (by default), we
iterate through the task list via select_bad_process() during a
cpuset-constrained OOM to find the best candidate task to kill. If set,
we simply kill current to avoid the overhead which is needed for some
customers with a large number of threads or heavy workload.
Cc: Andrea Arcangeli <andrea@suse.de>
Cc: Paul Jackson <pj@sgi.com>
Cc: Christoph Lameter <clameter@sgi.com>
Signed-off-by: David Rientjes <rientjes@google.com>
---
Documentation/cpusets.txt | 3 +++
include/linux/cpuset.h | 5 +++++
kernel/cpuset.c | 39 ++++++++++++++++++++++++++++++++++++++-
mm/oom_kill.c | 7 +++++++
4 files changed, 53 insertions(+), 1 deletions(-)
diff --git a/Documentation/cpusets.txt b/Documentation/cpusets.txt
--- a/Documentation/cpusets.txt
+++ b/Documentation/cpusets.txt
@@ -181,6 +181,9 @@ containing the following files describing that cpuset:
- tasks: list of tasks (by pid) attached to that cpuset
- notify_on_release flag: run /sbin/cpuset_release_agent on exit?
- memory_pressure: measure of how much paging pressure in cpuset
+ - oom_kill_asking_task flag: when this cpuset OOM's, should we kill
+ the task that asked for the memory or should we iterate through
+ the task list to find the best task to kill (can be expensive)?
In addition, the root cpuset only has the following file:
- memory_pressure_enabled flag: compute memory_pressure?
diff --git a/include/linux/cpuset.h b/include/linux/cpuset.h
--- a/include/linux/cpuset.h
+++ b/include/linux/cpuset.h
@@ -52,6 +52,7 @@ extern void cpuset_set_last_tif_memdie(struct task_struct *task,
unsigned long last_tif_memdie);
extern int cpuset_set_oom(struct task_struct *task);
extern void cpuset_clear_oom(struct task_struct *task);
+extern int cpuset_oom_kill_asking_task(struct task_struct *task);
#define cpuset_memory_pressure_bump() \
do { \
@@ -136,6 +137,10 @@ static inline int cpuset_set_oom(struct task_struct *task)
return 0;
}
static inline void cpuset_clear_oom(struct task_struct *task) {}
+static inline int cpuset_oom_kill_asking_task(struct task_struct *task)
+{
+ return 0;
+}
static inline void cpuset_memory_pressure_bump(void) {}
diff --git a/kernel/cpuset.c b/kernel/cpuset.c
--- a/kernel/cpuset.c
+++ b/kernel/cpuset.c
@@ -116,6 +116,7 @@ typedef enum {
CS_SPREAD_PAGE,
CS_SPREAD_SLAB,
CS_OOM,
+ CS_OOM_KILL_ASKING_TASK,
} cpuset_flagbits_t;
/* convenient tests for these bits */
@@ -159,6 +160,11 @@ static inline int is_oom(const struct cpuset *cs)
return test_bit(CS_OOM, &cs->flags);
}
+static inline int is_oom_kill_asking_task(const struct cpuset *cs)
+{
+ return test_bit(CS_OOM_KILL_ASKING_TASK, &cs->flags);
+}
+
/*
* Increment this integer everytime any cpuset changes its
* mems_allowed value. Users of cpusets can track this generation
@@ -1068,7 +1074,8 @@ static int update_memory_pressure_enabled(struct cpuset *cs, char *buf)
* update_flag - read a 0 or a 1 in a file and update associated flag
* bit: the bit to update (CS_CPU_EXCLUSIVE, CS_MEM_EXCLUSIVE,
* CS_NOTIFY_ON_RELEASE, CS_MEMORY_MIGRATE,
- * CS_SPREAD_PAGE, CS_SPREAD_SLAB)
+ * CS_SPREAD_PAGE, CS_SPREAD_SLAB,
+ * CS_OOM_KILL_ASKING_TASK)
* cs: the cpuset to update
* buf: the buffer where we read the 0 or 1
*
@@ -1320,6 +1327,7 @@ typedef enum {
FILE_NOTIFY_ON_RELEASE,
FILE_MEMORY_PRESSURE_ENABLED,
FILE_MEMORY_PRESSURE,
+ FILE_OOM_KILL_ASKING_TASK,
FILE_SPREAD_PAGE,
FILE_SPREAD_SLAB,
FILE_TASKLIST,
@@ -1382,6 +1390,9 @@ static ssize_t cpuset_common_file_write(struct file *file,
case FILE_MEMORY_PRESSURE:
retval = -EACCES;
break;
+ case FILE_OOM_KILL_ASKING_TASK:
+ retval = update_flag(CS_OOM_KILL_ASKING_TASK, cs, buffer);
+ break;
case FILE_SPREAD_PAGE:
retval = update_flag(CS_SPREAD_PAGE, cs, buffer);
cs->mems_generation = cpuset_mems_generation++;
@@ -1499,6 +1510,9 @@ static ssize_t cpuset_common_file_read(struct file *file, char __user *buf,
case FILE_MEMORY_PRESSURE:
s += sprintf(s, "%d", fmeter_getrate(&cs->fmeter));
break;
+ case FILE_OOM_KILL_ASKING_TASK:
+ *s++ = is_oom_kill_asking_task(cs) ? '1' : '0';
+ break;
case FILE_SPREAD_PAGE:
*s++ = is_spread_page(cs) ? '1' : '0';
break;
@@ -1863,6 +1877,11 @@ static struct cftype cft_memory_pressure = {
.private = FILE_MEMORY_PRESSURE,
};
+static struct cftype cft_oom_kill_asking_task = {
+ .name = "oom_kill_asking_task",
+ .private = FILE_OOM_KILL_ASKING_TASK,
+};
+
static struct cftype cft_spread_page = {
.name = "memory_spread_page",
.private = FILE_SPREAD_PAGE,
@@ -1891,6 +1910,8 @@ static int cpuset_populate_dir(struct dentry *cs_dentry)
return err;
if ((err = cpuset_add_file(cs_dentry, &cft_memory_pressure)) < 0)
return err;
+ if ((err = cpuset_add_file(cs_dentry, &cft_oom_kill_asking_task)) < 0)
+ return err;
if ((err = cpuset_add_file(cs_dentry, &cft_spread_page)) < 0)
return err;
if ((err = cpuset_add_file(cs_dentry, &cft_spread_slab)) < 0)
@@ -1923,6 +1944,8 @@ static long cpuset_create(struct cpuset *parent, const char *name, int mode)
cs->flags = 0;
if (notify_on_release(parent))
set_bit(CS_NOTIFY_ON_RELEASE, &cs->flags);
+ if (is_oom_kill_asking_task(parent))
+ set_bit(CS_OOM_KILL_ASKING_TASK, &cs->flags);
if (is_spread_page(parent))
set_bit(CS_SPREAD_PAGE, &cs->flags);
if (is_spread_slab(parent))
@@ -2658,6 +2681,20 @@ void cpuset_clear_oom(struct task_struct *task)
}
/*
+ * Returns 1 if current should simply be killed when a cpuset-constrained OOM
+ * occurs. Otherwise, we iterate through the task list and select the best
+ * candidate we can find.
+ */
+int cpuset_oom_kill_asking_task(struct task_struct *task)
+{
+ int ret;
+ task_lock(task);
+ ret = is_oom_kill_asking_task(task->cpuset);
+ task_unlock(task);
+ return ret;
+}
+
+/*
* Collection of memory_pressure is suppressed unless
* this flag is enabled by writing "1" to the special
* cpuset file 'memory_pressure_enabled' in the root cpuset.
diff --git a/mm/oom_kill.c b/mm/oom_kill.c
--- a/mm/oom_kill.c
+++ b/mm/oom_kill.c
@@ -456,6 +456,13 @@ void out_of_memory(struct zonelist *zonelist, gfp_t gfp_mask, int order)
case CONSTRAINT_CPUSET:
read_lock(&tasklist_lock);
+ if (cpuset_oom_kill_asking_task(current)) {
+ oom_kill_process(current, 0,
+ "No available memory in cpuset", gfp_mask,
+ order);
+ goto out_cpuset;
+ }
+
last_tif_memdie = cpuset_get_last_tif_memdie(current);
/*
* If current's cpuset is already in the OOM killer or its killed
--
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:[~2007-06-28 20:41 UTC|newest]
Thread overview: 25+ messages / expand[flat|nested] mbox.gz Atom feed top
2007-06-27 14:44 [patch 1/4] oom: extract deadlock helper function David Rientjes
2007-06-27 14:44 ` [patch 2/4] oom: select process to kill for cpusets David Rientjes
2007-06-27 14:44 ` [patch 3/4] oom: extract select helper function David Rientjes
2007-06-27 14:44 ` [patch 4/4] oom: serialize for cpusets David Rientjes
2007-06-27 21:53 ` Christoph Lameter
2007-06-27 22:13 ` Paul Jackson
2007-06-28 6:24 ` David Rientjes
2007-06-28 7:33 ` Paul Jackson
2007-06-28 8:05 ` David Rientjes
2007-06-28 9:03 ` Paul Jackson
2007-06-28 18:13 ` David Rientjes
2007-06-28 18:55 ` Paul Jackson
2007-06-28 19:27 ` Paul Menage
2007-06-28 20:15 ` Paul Jackson
2007-06-28 20:43 ` David Rientjes
2007-06-29 1:33 ` Christoph Lameter
2007-06-29 4:07 ` David Rientjes
2007-06-28 0:26 ` Andrea Arcangeli
2007-06-28 20:41 ` David Rientjes [this message]
2007-06-28 22:07 ` [patch 5/4] oom: add oom_kill_asking_task flag Paul Jackson
2007-06-27 21:52 ` [patch 2/4] oom: select process to kill for cpusets Christoph Lameter
2007-06-28 6:13 ` David Rientjes
2007-07-26 6:15 ` [patch 1/4] oom: extract deadlock helper function David Rientjes
2007-07-26 6:25 ` Andrew Morton
2007-07-26 7:29 ` David Rientjes
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.0.99.0706281340380.30133@chino.kir.corp.google.com \
--to=rientjes@google.com \
--cc=akpm@linux-foundation.org \
--cc=andrea@suse.de \
--cc=clameter@sgi.com \
--cc=linux-mm@kvack.org \
--cc=pj@sgi.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