On Fri 25-05-18 19:57:32, Tetsuo Handa wrote: > Michal Hocko wrote: > > On Fri 25-05-18 10:17:42, Tetsuo Handa wrote: > > > Then, please show me (by writing a patch yourself) how to tell whether > > > we should sleep there. What I can come up is shown below. > > > > > > -@@ -4241,6 +4240,12 @@ bool gfp_pfmemalloc_allowed(gfp_t gfp_mask) > > > - /* Retry as long as the OOM killer is making progress */ > > > - if (did_some_progress) { > > > - no_progress_loops = 0; > > > -+ /* > > > -+ * This schedule_timeout_*() serves as a guaranteed sleep for > > > -+ * PF_WQ_WORKER threads when __zone_watermark_ok() == false. > > > -+ */ > > > -+ if (!tsk_is_oom_victim(current)) > > > -+ schedule_timeout_uninterruptible(1); > > > - goto retry; > > > - } > > > +@@ -3927,6 +3926,14 @@ bool gfp_pfmemalloc_allowed(gfp_t gfp_mask) > > > + (*no_progress_loops)++; > > > > > > + /* > > > ++ * We do a short sleep here if the OOM killer/reaper/victims are > > > ++ * holding oom_lock, in order to try to give them some CPU resources > > > ++ * for releasing memory. > > > ++ */ > > > ++ if (mutex_is_locked(&oom_lock) && !tsk_is_oom_victim(current)) > > > ++ schedule_timeout_uninterruptible(1); > > > ++ > > > ++ /* > > > + * Make sure we converge to OOM if we cannot make any progress > > > + * several times in the row. > > > + */ > > > > > > As far as I know, whether a domain which the current thread belongs to is > > > already OOM is not known as of should_reclaim_retry(). Therefore, sleeping > > > there can become a pointless delay if the domain which the current thread > > > belongs to and the domain which the owner of oom_lock (it can be a random > > > thread inside out_of_memory() or exit_mmap()) belongs to differs. > > > > > > But you insist sleeping there means that you don't care about such > > > pointless delay? > > > > What is wrong with the folliwing? should_reclaim_retry should be a > > natural reschedule point. PF_WQ_WORKER is a special case which needs a > > stronger rescheduling policy. Doing that unconditionally seems more > > straightforward than depending on a zone being a good candidate for a > > further reclaim. > > Where is schedule_timeout_uninterruptible(1) for !PF_KTHREAD threads? Re-read what I've said. -- Michal Hocko SUSE Labs