diff options
author | Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp> | 2016-10-07 19:58:48 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2016-10-07 21:46:27 -0400 |
commit | 8496afaba93ece80a83cbd096f0675a1020ddfc4 (patch) | |
tree | 825d05640f386d2a773db46c4b449373b9422292 | |
parent | 7ebffa45551fe7db86a2b32bf586f124ef484e6e (diff) |
mm,oom_reaper: do not attempt to reap a task twice
"mm, oom_reaper: do not attempt to reap a task twice" tried to give the
OOM reaper one more chance to retry using MMF_OOM_NOT_REAPABLE flag.
But the usefulness of the flag is rather limited and actually never
shown in practice. If the flag is set, it means that the holder of
mm->mmap_sem cannot call up_write() due to presumably being blocked at
unkillable wait waiting for other thread's memory allocation. But since
one of threads sharing that mm will queue that mm immediately via
task_will_free_mem() shortcut (otherwise, oom_badness() will select the
same mm again due to oom_score_adj value unchanged), retrying
MMF_OOM_NOT_REAPABLE mm is unlikely helpful.
Let's always set MMF_OOM_REAPED.
Link: http://lkml.kernel.org/r/1472119394-11342-3-git-send-email-mhocko@kernel.org
Signed-off-by: Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
Signed-off-by: Michal Hocko <mhocko@suse.com>
Cc: Oleg Nesterov <oleg@redhat.com>
Cc: David Rientjes <rientjes@google.com>
Cc: Vladimir Davydov <vdavydov@parallels.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
-rw-r--r-- | include/linux/sched.h | 1 | ||||
-rw-r--r-- | mm/oom_kill.c | 15 |
2 files changed, 3 insertions, 13 deletions
diff --git a/include/linux/sched.h b/include/linux/sched.h index 7543a476178b..b48cd32be445 100644 --- a/include/linux/sched.h +++ b/include/linux/sched.h | |||
@@ -525,7 +525,6 @@ static inline int get_dumpable(struct mm_struct *mm) | |||
525 | #define MMF_HAS_UPROBES 19 /* has uprobes */ | 525 | #define MMF_HAS_UPROBES 19 /* has uprobes */ |
526 | #define MMF_RECALC_UPROBES 20 /* MMF_HAS_UPROBES can be wrong */ | 526 | #define MMF_RECALC_UPROBES 20 /* MMF_HAS_UPROBES can be wrong */ |
527 | #define MMF_OOM_REAPED 21 /* mm has been already reaped */ | 527 | #define MMF_OOM_REAPED 21 /* mm has been already reaped */ |
528 | #define MMF_OOM_NOT_REAPABLE 22 /* mm couldn't be reaped */ | ||
529 | 528 | ||
530 | #define MMF_INIT_MASK (MMF_DUMPABLE_MASK | MMF_DUMP_FILTER_MASK) | 529 | #define MMF_INIT_MASK (MMF_DUMPABLE_MASK | MMF_DUMP_FILTER_MASK) |
531 | 530 | ||
diff --git a/mm/oom_kill.c b/mm/oom_kill.c index 87fad956c96b..45097f5a8f30 100644 --- a/mm/oom_kill.c +++ b/mm/oom_kill.c | |||
@@ -578,20 +578,11 @@ static void oom_reap_task(struct task_struct *tsk) | |||
578 | if (attempts <= MAX_OOM_REAP_RETRIES) | 578 | if (attempts <= MAX_OOM_REAP_RETRIES) |
579 | goto done; | 579 | goto done; |
580 | 580 | ||
581 | /* Ignore this mm because somebody can't call up_write(mmap_sem). */ | ||
582 | set_bit(MMF_OOM_REAPED, &mm->flags); | ||
583 | |||
581 | pr_info("oom_reaper: unable to reap pid:%d (%s)\n", | 584 | pr_info("oom_reaper: unable to reap pid:%d (%s)\n", |
582 | task_pid_nr(tsk), tsk->comm); | 585 | task_pid_nr(tsk), tsk->comm); |
583 | |||
584 | /* | ||
585 | * If we've already tried to reap this task in the past and | ||
586 | * failed it probably doesn't make much sense to try yet again | ||
587 | * so hide the mm from the oom killer so that it can move on | ||
588 | * to another task with a different mm struct. | ||
589 | */ | ||
590 | if (test_and_set_bit(MMF_OOM_NOT_REAPABLE, &mm->flags)) { | ||
591 | pr_info("oom_reaper: giving up pid:%d (%s)\n", | ||
592 | task_pid_nr(tsk), tsk->comm); | ||
593 | set_bit(MMF_OOM_REAPED, &mm->flags); | ||
594 | } | ||
595 | debug_show_all_locks(); | 586 | debug_show_all_locks(); |
596 | 587 | ||
597 | done: | 588 | done: |