diff options
author | David Rientjes | 2010-08-10 02:18:56 +0200 |
---|---|---|
committer | Linus Torvalds | 2010-08-10 05:44:57 +0200 |
commit | 8e4228e1edb922afa83366803a1e5b3fa8e987c2 (patch) | |
tree | e741de337b409a430e0f34647e059dd35a84f72c /kernel | |
parent | oom: remove special handling for pagefault ooms (diff) | |
download | kernel-qcow2-linux-8e4228e1edb922afa83366803a1e5b3fa8e987c2.tar.gz kernel-qcow2-linux-8e4228e1edb922afa83366803a1e5b3fa8e987c2.tar.xz kernel-qcow2-linux-8e4228e1edb922afa83366803a1e5b3fa8e987c2.zip |
oom: move sysctl declarations to oom.h
The three oom killer sysctl variables (sysctl_oom_dump_tasks,
sysctl_oom_kill_allocating_task, and sysctl_panic_on_oom) are better
declared in include/linux/oom.h rather than kernel/sysctl.c.
Signed-off-by: David Rientjes <rientjes@google.com>
Acked-by: KOSAKI Motohiro <kosaki.motohiro@jp.fujitsu.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 'kernel')
-rw-r--r-- | kernel/sysctl.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/kernel/sysctl.c b/kernel/sysctl.c index 6d850bf0a517..6b005e4912b5 100644 --- a/kernel/sysctl.c +++ b/kernel/sysctl.c @@ -53,6 +53,7 @@ #include <linux/perf_event.h> #include <linux/kprobes.h> #include <linux/pipe_fs_i.h> +#include <linux/oom.h> #include <asm/uaccess.h> #include <asm/processor.h> @@ -85,9 +86,6 @@ /* External variables not in a header file. */ extern int sysctl_overcommit_memory; extern int sysctl_overcommit_ratio; -extern int sysctl_panic_on_oom; -extern int sysctl_oom_kill_allocating_task; -extern int sysctl_oom_dump_tasks; extern int max_threads; extern int core_uses_pid; extern int suid_dumpable; |