From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-ot1-f72.google.com (mail-ot1-f72.google.com [209.85.210.72]) by kanga.kvack.org (Postfix) with ESMTP id E945B6B0007 for ; Mon, 22 Oct 2018 05:42:44 -0400 (EDT) Received: by mail-ot1-f72.google.com with SMTP id x30so20377340ota.7 for ; Mon, 22 Oct 2018 02:42:44 -0700 (PDT) Received: from www262.sakura.ne.jp (www262.sakura.ne.jp. [202.181.97.72]) by mx.google.com with ESMTPS id 33si14947515otu.91.2018.10.22.02.42.43 for (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Mon, 22 Oct 2018 02:42:43 -0700 (PDT) Subject: Re: [RFC PATCH 1/2] mm, oom: marks all killed tasks as oom victims References: <20181022071323.9550-1-mhocko@kernel.org> <20181022071323.9550-2-mhocko@kernel.org> <201810220758.w9M7wojE016890@www262.sakura.ne.jp> <20181022084842.GW18839@dhcp22.suse.cz> From: Tetsuo Handa Message-ID: Date: Mon, 22 Oct 2018 18:42:30 +0900 MIME-Version: 1.0 In-Reply-To: <20181022084842.GW18839@dhcp22.suse.cz> Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 7bit Sender: owner-linux-mm@kvack.org List-ID: To: Michal Hocko Cc: linux-mm@kvack.org, Johannes Weiner , David Rientjes , Andrew Morton , LKML On 2018/10/22 17:48, Michal Hocko wrote: > On Mon 22-10-18 16:58:50, Tetsuo Handa wrote: >> Michal Hocko wrote: >>> --- a/mm/oom_kill.c >>> +++ b/mm/oom_kill.c >>> @@ -898,6 +898,7 @@ static void __oom_kill_process(struct task_struct *victim) >>> if (unlikely(p->flags & PF_KTHREAD)) >>> continue; >>> do_send_sig_info(SIGKILL, SEND_SIG_FORCED, p, PIDTYPE_TGID); >>> + mark_oom_victim(p); >>> } >>> rcu_read_unlock(); >>> >>> -- >> >> Wrong. Either > > You are right. The mm might go away between process_shares_mm and here. > While your find_lock_task_mm would be correct I believe we can do better > by using the existing mm that we already have. I will make it a separate > patch to clarity. Still wrong. p->mm == NULL means that we are too late to set TIF_MEMDIE on that thread. Passing non-NULL mm to mark_oom_victim() won't help. > @@ -898,7 +897,7 @@ static void __oom_kill_process(struct task_struct *victim) > if (unlikely(p->flags & PF_KTHREAD)) > continue; > do_send_sig_info(SIGKILL, SEND_SIG_FORCED, p, PIDTYPE_TGID); > - mark_oom_victim(p); > + mark_oom_victim(p, mm); > } > rcu_read_unlock(); >