Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753265Ab0FDKGX (ORCPT ); Fri, 4 Jun 2010 06:06:23 -0400 Received: from mx1.redhat.com ([209.132.183.28]:3942 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750785Ab0FDKGV (ORCPT ); Fri, 4 Jun 2010 06:06:21 -0400 Date: Fri, 4 Jun 2010 12:04:16 +0200 From: Oleg Nesterov To: David Rientjes Cc: KOSAKI Motohiro , "Luis Claudio R. Goncalves" , LKML , linux-mm , Andrew Morton , KAMEZAWA Hiroyuki , Nick Piggin Subject: Re: [PATCH 09/12] oom: remove PF_EXITING check completely Message-ID: <20100604100416.GB8569@redhat.com> References: <20100603135106.7247.A69D9226@jp.fujitsu.com> <20100603152436.7262.A69D9226@jp.fujitsu.com> <20100603140008.GA3548@redhat.com> <20100603221145.GB8511@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.18 (2008-05-17) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2674 Lines: 66 On 06/03, David Rientjes wrote: > > On Fri, 4 Jun 2010, Oleg Nesterov wrote: > > > > > > > Currently, PF_EXITING check is completely broken. because 1) It only > > > > > > care main-thread and ignore sub-threads > > > > > > > > > > Then check the subthreads. > > > > > > > > > > > Did you want to respond to this? > > > > Please explain what you mean. There were already a lot of discussions > > about mt issues, I do not know what you have in mind. > > Can you check the subthreads to see if they are not PF_EXITING? To detect the process with the dead group leader? Yes, we can. We already discussed this. Probably it is better to check PF_EXITING and signal_group_exit(). > > > I'm guessing at the relevancy here because the changelog is extremely > > > poorly worded (if I were Andrew I would have no idea how important this > > > patch is based on the description other than the alarmist words of "... is > > > completely broken)", but if we're concerned about the coredumper not being > > > able to find adequate resources to allocate memory from, we can give it > > > access to reserves specifically, > > > > I don't think so. If oom-kill wants to kill the task which dumps the > > code, it should stop the coredumping and exit. > > That's a coredump change, not an oom killer change. Yes. do_coredump() should be fixed. This is not trivial (and needs the subtle changes outside of fs/exec.c), we are looking for the simple fix for now. > If the coredumper > needs memory and runs into the oom killer, this PF_EXITING check, which > you want to remove, gives it access to memory reserves by setting > TIF_MEMDIE so it can quickly finish and die. This allows it to exit > without oom killing anything else because the tasklist scan in the oom > killer is not preempted by finding a TIF_MEMDIE task. David, sorry. I already tried to explain (at least twice) that TIF_MEMDIE (or SIGKILL even if do_coredump() was interruptible) can not help unless you find the right thread, this is not trivial even if we forget about CLONE_VM tasks. And personally I disagree that it should use memory reserves, but this doesn't matter. Let's stop this. You shouldn't convince me. I am not the author of this patch, and I said many times that I do not pretend I understand oom-kill needs. I jumped into this discussion because your initial objection (fatal_signal_pending() should fix the problems) was technically wrong. Oleg. -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/