From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wm0-f72.google.com (mail-wm0-f72.google.com [74.125.82.72]) by kanga.kvack.org (Postfix) with ESMTP id 940126B025F for ; Tue, 12 Jul 2016 10:53:57 -0400 (EDT) Received: by mail-wm0-f72.google.com with SMTP id o80so15353350wme.1 for ; Tue, 12 Jul 2016 07:53:57 -0700 (PDT) Received: from mx2.suse.de (mx2.suse.de. [195.135.220.15]) by mx.google.com with ESMTPS id x14si21032989wma.128.2016.07.12.07.53.56 for (version=TLS1 cipher=AES128-SHA bits=128/128); Tue, 12 Jul 2016 07:53:56 -0700 (PDT) Date: Tue, 12 Jul 2016 16:53:56 +0200 From: Michal Hocko Subject: Re: [PATCH 7/8] mm,oom: Stop clearing TIF_MEMDIE on remote thread. Message-ID: <20160712145355.GQ14586@dhcp22.suse.cz> References: <1468330163-4405-1-git-send-email-penguin-kernel@I-love.SAKURA.ne.jp> <1468330163-4405-8-git-send-email-penguin-kernel@I-love.SAKURA.ne.jp> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1468330163-4405-8-git-send-email-penguin-kernel@I-love.SAKURA.ne.jp> Sender: owner-linux-mm@kvack.org List-ID: To: Tetsuo Handa Cc: akpm@linux-foundation.org, linux-mm@kvack.org, oleg@redhat.com, rientjes@google.com, vdavydov@parallels.com, mst@redhat.com On Tue 12-07-16 22:29:22, Tetsuo Handa wrote: > Since no kernel code path needs to clear TIF_MEMDIE flag on a remote > thread we can drop the task parameter and enforce that actually. > > Signed-off-by: Tetsuo Handa > Acked-by: Michal Hocko Please wait with this one along with removing exit_oom_victim from the oom reaper after we settle with the rest of the series. I believe we really need to handle oom_killer_disable in the same batch and that sounds outside of the scope of this series. I can even pick your patch and rebase it along with the rest that I have posted recently, unless you have objections of course. > --- > include/linux/oom.h | 2 +- > kernel/exit.c | 2 +- > mm/oom_kill.c | 5 ++--- > 3 files changed, 4 insertions(+), 5 deletions(-) > > diff --git a/include/linux/oom.h b/include/linux/oom.h > index 27be4ba..90e98ea 100644 > --- a/include/linux/oom.h > +++ b/include/linux/oom.h > @@ -90,7 +90,7 @@ extern enum oom_scan_t oom_scan_process_thread(struct oom_control *oc, > > extern bool out_of_memory(struct oom_control *oc); > > -extern void exit_oom_victim(struct task_struct *tsk); > +extern void exit_oom_victim(void); > > extern int register_oom_notifier(struct notifier_block *nb); > extern int unregister_oom_notifier(struct notifier_block *nb); > diff --git a/kernel/exit.c b/kernel/exit.c > index 84ae830..1b1dada 100644 > --- a/kernel/exit.c > +++ b/kernel/exit.c > @@ -511,7 +511,7 @@ static void exit_mm(struct task_struct *tsk) > mm_update_next_owner(mm); > mmput(mm); > if (test_thread_flag(TIF_MEMDIE)) > - exit_oom_victim(tsk); > + exit_oom_victim(); > } > > static struct task_struct *find_alive_thread(struct task_struct *p) > diff --git a/mm/oom_kill.c b/mm/oom_kill.c > index 7ee6b70..fab0bec 100644 > --- a/mm/oom_kill.c > +++ b/mm/oom_kill.c > @@ -692,10 +692,9 @@ void mark_oom_victim(struct task_struct *tsk) > /** > * exit_oom_victim - note the exit of an OOM victim > */ > -void exit_oom_victim(struct task_struct *tsk) > +void exit_oom_victim(void) > { > - if (!test_and_clear_tsk_thread_flag(tsk, TIF_MEMDIE)) > - return; > + clear_thread_flag(TIF_MEMDIE); > > if (!atomic_dec_return(&oom_victims)) > wake_up_all(&oom_victims_wait); > -- > 1.8.3.1 > -- 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: email@kvack.org