The patch titled allow oom_adj of saintly processes has been removed from the -mm tree. Its filename was allow-oom_adj-of-saintly-processes.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: allow oom_adj of saintly processes From: Joshua N Pritikin <jpritikin@xxxxxxxxx> If the badness of a process is zero then oom_adj>0 has no effect. This patch makes sure that the oom_adj shift actually increases badness points appropriately. Signed-off-by: Joshua N. Pritikin <jpritikin@xxxxxxxxx> Cc: Andrea Arcangeli <andrea@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- mm/oom_kill.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff -puN mm/oom_kill.c~allow-oom_adj-of-saintly-processes mm/oom_kill.c --- a/mm/oom_kill.c~allow-oom_adj-of-saintly-processes +++ a/mm/oom_kill.c @@ -147,9 +147,11 @@ unsigned long badness(struct task_struct * Adjust the score by oomkilladj. */ if (p->oomkilladj) { - if (p->oomkilladj > 0) + if (p->oomkilladj > 0) { + if (!points) + points = 1; points <<= p->oomkilladj; - else + } else points >>= -(p->oomkilladj); } _ Patches currently in -mm which might be from jpritikin@xxxxxxxxx are origin.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html