mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-04-05 14:04:35 +00:00
oom: stop allocating user memory if TIF_MEMDIE is set
get_user_pages() can try to allocate a nearly unlimited amount of memory on behalf of a user process, even if that process has been OOM killed. The OOM kill occurs upon return to user space via a SIGKILL, but get_user_pages() will try allocate all its memory before returning. Change get_user_pages() to check for TIF_MEMDIE, and if set then return immediately. Signed-off-by: Ethan Solomita <solo@google.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
b71636e298
commit
462e00cc71
1 changed files with 8 additions and 0 deletions
|
@ -1055,6 +1055,14 @@ int get_user_pages(struct task_struct *tsk, struct mm_struct *mm,
|
||||||
do {
|
do {
|
||||||
struct page *page;
|
struct page *page;
|
||||||
|
|
||||||
|
/*
|
||||||
|
* If tsk is ooming, cut off its access to large memory
|
||||||
|
* allocations. It has a pending SIGKILL, but it can't
|
||||||
|
* be processed until returning to user space.
|
||||||
|
*/
|
||||||
|
if (unlikely(test_tsk_thread_flag(tsk, TIF_MEMDIE)))
|
||||||
|
return -ENOMEM;
|
||||||
|
|
||||||
if (write)
|
if (write)
|
||||||
foll_flags |= FOLL_WRITE;
|
foll_flags |= FOLL_WRITE;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue