aboutsummaryrefslogtreecommitdiffstats
path: root/mm/oom_kill.c
diff options
context:
space:
mode:
authorOleg Nesterov <oleg@redhat.com>2012-03-23 18:02:45 -0400
committerLinus Torvalds <torvalds@linux-foundation.org>2012-03-23 19:58:41 -0400
commitd2d393099de21eda91c5ec6a05d60e5dee4d5175 (patch)
tree92f2f5eaed87e35c43d8461a86f618b6f2a28406 /mm/oom_kill.c
parentdef8cf72562e17ec8316ce0cb5697c7afd6400e3 (diff)
signal: oom_kill_task: use SEND_SIG_FORCED instead of force_sig()
Change oom_kill_task() to use do_send_sig_info(SEND_SIG_FORCED) instead of force_sig(SIGKILL). With the recent changes we do not need force_ to kill the CLONE_NEWPID tasks. And this is more correct. force_sig() can race with the exiting thread even if oom_kill_task() checks p->mm != NULL, while do_send_sig_info(group => true) kille the whole process. Signed-off-by: Oleg Nesterov <oleg@redhat.com> Cc: Tejun Heo <tj@kernel.org> Cc: Anton Vorontsov <anton.vorontsov@linaro.org> Cc: "Eric W. Biederman" <ebiederm@xmission.com> Cc: KOSAKI Motohiro <kosaki.motohiro@gmail.com> Cc: David Rientjes <rientjes@google.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'mm/oom_kill.c')
-rw-r--r--mm/oom_kill.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/mm/oom_kill.c b/mm/oom_kill.c
index 4198e000f41a..46bf2ed5594c 100644
--- a/mm/oom_kill.c
+++ b/mm/oom_kill.c
@@ -521,11 +521,11 @@ static void oom_kill_process(struct task_struct *p, gfp_t gfp_mask, int order,
521 pr_err("Kill process %d (%s) sharing same memory\n", 521 pr_err("Kill process %d (%s) sharing same memory\n",
522 task_pid_nr(p), p->comm); 522 task_pid_nr(p), p->comm);
523 task_unlock(p); 523 task_unlock(p);
524 force_sig(SIGKILL, p); 524 do_send_sig_info(SIGKILL, SEND_SIG_FORCED, p, true);
525 } 525 }
526 526
527 set_tsk_thread_flag(victim, TIF_MEMDIE); 527 set_tsk_thread_flag(victim, TIF_MEMDIE);
528 force_sig(SIGKILL, victim); 528 do_send_sig_info(SIGKILL, SEND_SIG_FORCED, victim, true);
529} 529}
530#undef K 530#undef K
531 531