>From 3728807fe66ebc24a8a28455593754b9532bbe74 Mon Sep 17 00:00:00 2001 From: Tetsuo Handa <penguin-kernel@xxxxxxxxxxxxxxxxxxx> Date: Mon, 25 May 2015 22:26:07 +0900 Subject: [PATCH] mm/oom: Suppress unnecessary "sharing same memory" message. If the mm struct which the OOM victim is using is shared by e.g. 1000 threads, and the lock dependency prevents all threads except the OOM victim thread from terminating until they get TIF_MEMDIE flag, the OOM killer will be invoked for 1000 times on this mm struct. As a result, the kernel would emit "Kill process %d (%s) sharing same memory\n" line for 1000 * 1000 / 2 times. But once these threads got pending SIGKILL, emitting this information is nothing but noise. This patch filters them. Similarly, "[%5d] %5d %5d %8lu %8lu %7ld %7ld %8lu %5hd %s\n" lines in dump_task() might be sufficient for once per each mm struct. But this patch does not filter them because we want a marker field in the mm struct and a lock for protecting the marker if we want to eliminate duplication. Signed-off-by: Tetsuo Handa <penguin-kernel@xxxxxxxxxxxxxxxxxxx> --- mm/oom_kill.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/mm/oom_kill.c b/mm/oom_kill.c index 5cfda39..d0eccbb 100644 --- a/mm/oom_kill.c +++ b/mm/oom_kill.c @@ -583,6 +583,8 @@ void oom_kill_process(struct task_struct *p, gfp_t gfp_mask, int order, !(p->flags & PF_KTHREAD)) { if (p->signal->oom_score_adj == OOM_SCORE_ADJ_MIN) continue; + if (fatal_signal_pending(p)) + continue; task_lock(p); /* Protect ->comm from prctl() */ pr_err("Kill process %d (%s) sharing same memory\n", -- 1.8.3.1 -- To unsubscribe, send a message with 'unsubscribe linux-mm' in the body to majordomo@xxxxxxxxx. For more info on Linux MM, see: http://www.linux-mm.org/ . Don't email: <a href=mailto:"dont@xxxxxxxxx"> email@xxxxxxxxx </a>