diff options
author | Andrea Arcangeli <andrea@suse.de> | 2005-04-16 18:24:05 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-16 18:24:05 -0400 |
commit | 79befd0c08c4766f8fa27e37ac2a70e40840a56a (patch) | |
tree | d0600c289b1a54902e3b78eec0729dc7011569a3 /include/linux/mm.h | |
parent | d345734267dbec642f4e34a9d392d2fd85b5fa9b (diff) |
[PATCH] oom-killer disable for iscsi/lvm2/multipath userland critical sections
iscsi/lvm2/multipath needs guaranteed protection from the oom-killer, so
make the magical value of -17 in /proc/<pid>/oom_adj defeat the oom-killer
altogether.
(akpm: we still need to document oom_adj and friends in
Documentation/filesystems/proc.txt!)
Signed-off-by: Andrea Arcangeli <andrea@suse.de>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'include/linux/mm.h')
-rw-r--r-- | include/linux/mm.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/linux/mm.h b/include/linux/mm.h index 6a931374d6c4..85f7d1bea937 100644 --- a/include/linux/mm.h +++ b/include/linux/mm.h | |||
@@ -857,5 +857,8 @@ int in_gate_area_no_task(unsigned long addr); | |||
857 | #define in_gate_area(task, addr) ({(void)task; in_gate_area_no_task(addr);}) | 857 | #define in_gate_area(task, addr) ({(void)task; in_gate_area_no_task(addr);}) |
858 | #endif /* __HAVE_ARCH_GATE_AREA */ | 858 | #endif /* __HAVE_ARCH_GATE_AREA */ |
859 | 859 | ||
860 | /* /proc/<pid>/oom_adj set to -17 protects from the oom-killer */ | ||
861 | #define OOM_DISABLE -17 | ||
862 | |||
860 | #endif /* __KERNEL__ */ | 863 | #endif /* __KERNEL__ */ |
861 | #endif /* _LINUX_MM_H */ | 864 | #endif /* _LINUX_MM_H */ |