From: Dave Young <hidave.darkstar@gmail.com>
To: linux-mm@kvack.org, linux-kernel@vger.kernel.org
Subject: [PATCH] use oom_killer_disabled in all oom pathes
Date: Tue, 26 Apr 2011 10:54:29 +0800 [thread overview]
Message-ID: <20110426025429.GA11812@darkstar> (raw)
oom_killer_disable should be a global switch, also fit for oom paths
other than __alloc_pages_slowpath
Here add it to mem_cgroup_handle_oom and pagefault_out_of_memory as well.
Signed-off-by: Dave Young <hidave.darkstar@gmail.com>
---
mm/memcontrol.c | 2 +-
mm/oom_kill.c | 3 +++
2 files changed, 4 insertions(+), 1 deletion(-)
--- linux-2.6.orig/mm/memcontrol.c 2011-04-20 15:49:10.336660690 +0800
+++ linux-2.6/mm/memcontrol.c 2011-04-26 10:41:04.746459757 +0800
@@ -1610,7 +1610,7 @@ bool mem_cgroup_handle_oom(struct mem_cg
* under OOM is always welcomed, use TASK_KILLABLE here.
*/
prepare_to_wait(&memcg_oom_waitq, &owait.wait, TASK_KILLABLE);
- if (!locked || mem->oom_kill_disable)
+ if (!locked || mem->oom_kill_disable || oom_killer_disabled)
need_to_kill = false;
if (locked)
mem_cgroup_oom_notify(mem);
--- linux-2.6.orig/mm/oom_kill.c 2011-04-20 15:49:10.353327356 +0800
+++ linux-2.6/mm/oom_kill.c 2011-04-26 10:41:04.753126423 +0800
@@ -747,6 +747,9 @@ out:
*/
void pagefault_out_of_memory(void)
{
+ if (oom_killer_disabled)
+ return;
+
if (try_set_system_oom()) {
out_of_memory(NULL, 0, 0, NULL);
clear_system_oom();
--
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>
next reply other threads:[~2011-04-26 2:43 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-04-26 2:54 Dave Young [this message]
2011-04-26 2:57 ` [PATCH] use oom_killer_disabled in all oom pathes KOSAKI Motohiro
2011-04-26 3:05 ` Dave Young
2011-04-26 3:14 ` KOSAKI Motohiro
2011-04-26 3:19 ` Dave Young
2011-04-26 3:17 ` KAMEZAWA Hiroyuki
2011-04-26 3:26 ` Dave Young
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=20110426025429.GA11812@darkstar \
--to=hidave.darkstar@gmail.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mm@kvack.org \
/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;
as well as URLs for NNTP newsgroup(s).