diff options
author | David Rientjes <rientjes@google.com> | 2010-08-09 20:18:54 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2010-08-09 23:44:57 -0400 |
commit | 309ed882508cc471320ff79265e7340774d6746c (patch) | |
tree | 28321b30bc420c62554ef6a705ec4bc70651b473 /include/linux/oom.h | |
parent | 03668b3ceb0c7a95e09f1b6169f5270ffc1a19f6 (diff) |
oom: extract panic helper function
There are various points in the oom killer where the kernel must determine
whether to panic or not. It's better to extract this to a helper function
to remove all the confusion as to its semantics.
Also fix a call to dump_header() where tasklist_lock is not read- locked,
as required.
There's no functional change with this patch.
Acked-by: KOSAKI Motohiro <kosaki.motohiro@jp.fujitsu.com>
Signed-off-by: David Rientjes <rientjes@google.com>
Cc: KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'include/linux/oom.h')
-rw-r--r-- | include/linux/oom.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/oom.h b/include/linux/oom.h index 537662315627..3ae6d94d0540 100644 --- a/include/linux/oom.h +++ b/include/linux/oom.h | |||
@@ -22,6 +22,7 @@ enum oom_constraint { | |||
22 | CONSTRAINT_NONE, | 22 | CONSTRAINT_NONE, |
23 | CONSTRAINT_CPUSET, | 23 | CONSTRAINT_CPUSET, |
24 | CONSTRAINT_MEMORY_POLICY, | 24 | CONSTRAINT_MEMORY_POLICY, |
25 | CONSTRAINT_MEMCG, | ||
25 | }; | 26 | }; |
26 | 27 | ||
27 | extern int try_set_zone_oom(struct zonelist *zonelist, gfp_t gfp_flags); | 28 | extern int try_set_zone_oom(struct zonelist *zonelist, gfp_t gfp_flags); |