> Date: Mon, 18 Jan 2016 13:22:51 +0900 > Subject: [PATCH 4/2] oom: change OOM reaper to walk the process list > > Signed-off-by: Tetsuo Handa <penguin-kernel@xxxxxxxxxxxxxxxxxxx> > --- > include/linux/sched.h | 4 + > mm/memcontrol.c | 8 +- > mm/oom_kill.c | 250 ++++++++++++++++++++++++++++++++++---------------- > 3 files changed, 183 insertions(+), 79 deletions(-) > Oops. I meant to move mark_oom_victim() to after sending SIGKILL to other processes sharing the same memory, but I can't move mark_oom_victim() to after task_unlock(). diff --git a/mm/oom_kill.c b/mm/oom_kill.c index d3a7cd8..51cb936 100644 --- a/mm/oom_kill.c +++ b/mm/oom_kill.c @@ -832,6 +832,7 @@ void oom_kill_process(struct oom_control *oc, struct task_struct *p, * space under its control. */ do_send_sig_info(SIGKILL, SEND_SIG_FORCED, victim, true); + mark_oom_victim(victim); pr_err("Killed process %d (%s) total-vm:%lukB, anon-rss:%lukB, file-rss:%lukB, shmem-rss:%lukB\n", task_pid_nr(victim), victim->comm, K(victim->mm->total_vm), K(get_mm_counter(victim->mm, MM_ANONPAGES)), @@ -864,7 +865,6 @@ void oom_kill_process(struct oom_control *oc, struct task_struct *p, rcu_read_unlock(); mmdrop(mm); - mark_oom_victim(victim); put_task_struct(victim); } #undef K -- 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>