From: Michal Hocko <mhocko@kernel.org>
To: Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
Cc: linux-mm@kvack.org, rientjes@google.com, oleg@redhat.com,
vdavydov@parallels.com, mgorman@techsingularity.net,
hughd@google.com, riel@redhat.com, akpm@linux-foundation.org,
linux-kernel@vger.kernel.org
Subject: Re: mm, oom_reaper: How to handle race with oom_killer_disable() ?
Date: Mon, 13 Jun 2016 13:19:43 +0200 [thread overview]
Message-ID: <20160613111943.GB6518@dhcp22.suse.cz> (raw)
In-Reply-To: <201606102323.BCC73478.FtOJHFQMSVFLOO@I-love.SAKURA.ne.jp>
On Fri 10-06-16 23:23:36, Tetsuo Handa wrote:
[...]
> (1) freeze_processes() starts freezing user space threads.
> (2) Somebody (maybe a kenrel thread) calls out_of_memory().
> (3) The OOM killer calls mark_oom_victim() on a user space thread
> P1 which is already in __refrigerator().
> (4) oom_killer_disable() sets oom_killer_disabled = true.
> (5) P1 leaves __refrigerator() and enters do_exit().
> (6) The OOM reaper calls exit_oom_victim(P1) before P1 can call
> exit_oom_victim(P1).
> (7) oom_killer_disable() returns while P1 is not yet frozen
> again (i.e. not yet marked as PF_FROZEN).
> (8) P1 perform IO/interfere with the freezer.
You are right. I missed that kernel threads are still alive when writing
e26796066fdf929c ("oom: make oom_reaper freezable").
I am trying to remember why we are disabling oom killer before kernel
threads are frozen but not really sure about that right away. I guess it
has something to do with freeze_kernel_threads being called from
different contexts as well so freeze_processes was just more convinient
and was OK for correctness at the time.
> try_to_freeze_tasks(false) from freeze_kernel_threads() will freeze
> P1 again, but it seems to me that freeze_kernel_threads() is not
> always called when freeze_processes() suceeded.
>
> Therefore, we need to do like
>
> - exit_oom_victim(tsk);
> + mutex_lock(&oom_lock);
> + if (!oom_killer_disabled)
> + exit_oom_victim(tsk);
> + mutex_unlock(&oom_lock);
>
> in oom_reap_task(), don't we?
I do not like this very much. I would rather make sure that all
freezable kernel threads are frozen when disabling the oom killer.
[...]
> But we might be able to do like below patch rather than above patch.
> If below approach is OK, "[PATCH 10/10] mm, oom: hide mm which is shared
> with kthread or global init" will be able to call exit_oom_victim() when
> can_oom_reap became false.
I believe this is not really needed. I will follow up on the 10/10
later.
--
Michal Hocko
SUSE Labs
--
To unsubscribe, send a message with 'unsubscribe linux-mm' in
the body to majordomo@kvack.org. For more info on Linux MM,
see: http://www.linux-mm.org/ .
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>
next prev parent reply other threads:[~2016-06-13 11:19 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-06-10 14:23 Tetsuo Handa
2016-06-13 11:19 ` Michal Hocko [this message]
2016-06-21 8:31 ` Michal Hocko
2016-06-21 11:03 ` Tetsuo Handa
2016-06-21 11:46 ` Michal Hocko
2016-06-21 13:27 ` Michal Hocko
2016-06-21 15:32 ` Tetsuo Handa
2016-06-21 17:46 ` Michal Hocko
2016-06-21 21:47 ` Tetsuo Handa
2016-06-22 6:40 ` Michal Hocko
2016-06-22 6:50 ` Michal Hocko
2016-06-22 10:57 ` Tetsuo Handa
2016-06-22 12:08 ` Michal Hocko
2016-06-22 12:15 ` Michal Hocko
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20160613111943.GB6518@dhcp22.suse.cz \
--to=mhocko@kernel.org \
--cc=akpm@linux-foundation.org \
--cc=hughd@google.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mm@kvack.org \
--cc=mgorman@techsingularity.net \
--cc=oleg@redhat.com \
--cc=penguin-kernel@I-love.SAKURA.ne.jp \
--cc=riel@redhat.com \
--cc=rientjes@google.com \
--cc=vdavydov@parallels.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox