aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--fs/proc/base.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/fs/proc/base.c b/fs/proc/base.c
index 29595af32866..bd3e9e68125b 100644
--- a/fs/proc/base.c
+++ b/fs/proc/base.c
@@ -1032,6 +1032,16 @@ static ssize_t oom_adj_read(struct file *file, char __user *buf, size_t count,
1032 return simple_read_from_buffer(buf, count, ppos, buffer, len); 1032 return simple_read_from_buffer(buf, count, ppos, buffer, len);
1033} 1033}
1034 1034
1035/*
1036 * /proc/pid/oom_adj exists solely for backwards compatibility with previous
1037 * kernels. The effective policy is defined by oom_score_adj, which has a
1038 * different scale: oom_adj grew exponentially and oom_score_adj grows linearly.
1039 * Values written to oom_adj are simply mapped linearly to oom_score_adj.
1040 * Processes that become oom disabled via oom_adj will still be oom disabled
1041 * with this implementation.
1042 *
1043 * oom_adj cannot be removed since existing userspace binaries use it.
1044 */
1035static ssize_t oom_adj_write(struct file *file, const char __user *buf, 1045static ssize_t oom_adj_write(struct file *file, const char __user *buf,
1036 size_t count, loff_t *ppos) 1046 size_t count, loff_t *ppos)
1037{ 1047{