提交 f2a2a710 编写于 作者: N Nick Piggin 提交者: Linus Torvalds

[PATCH] oom: less memdie

Don't cause all threads in all other thread groups to gain TIF_MEMDIE
otherwise we'll get a thundering herd eating our memory reserve.  This may not
be the optimal scheme, but it fits our policy of allowing just one TIF_MEMDIE
in the system at once.
Signed-off-by: NNick Piggin <npiggin@suse.de>
Signed-off-by: NAndrew Morton <akpm@osdl.org>
Signed-off-by: NLinus Torvalds <torvalds@osdl.org>
上级 f3af38d3
...@@ -323,11 +323,12 @@ static int oom_kill_task(struct task_struct *p) ...@@ -323,11 +323,12 @@ static int oom_kill_task(struct task_struct *p)
/* /*
* kill all processes that share the ->mm (i.e. all threads), * kill all processes that share the ->mm (i.e. all threads),
* but are in a different thread group. * but are in a different thread group. Don't let them have access
* to memory reserves though, otherwise we might deplete all memory.
*/ */
do_each_thread(g, q) { do_each_thread(g, q) {
if (q->mm == mm && q->tgid != p->tgid) if (q->mm == mm && q->tgid != p->tgid)
__oom_kill_task(q, 1); force_sig(SIGKILL, p);
} while_each_thread(g, q); } while_each_thread(g, q);
return 0; return 0;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册