From mboxrd@z Thu Jan 1 00:00:00 1970 From: Oleg Nesterov Subject: Re: [PATCH 6/6] clone4: Introduce new CLONE_FD flag to get task exit notification via fd Date: Sat, 14 Mar 2015 20:18:36 +0100 Message-ID: <20150314191836.GA8416@redhat.com> References: <20150314141414.GA11062@redhat.com> <20150314143235.GA12086@redhat.com> <28025621.k7WkrfHd4d@tjmaciei-mobl4> <20150314190132.GB22130@thin> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: Thiago Macieira , Al Viro , Andrew Morton , Andy Lutomirski , Ingo Molnar , Kees Cook , "Paul E. McKenney" , "H. Peter Anvin" , Rik van Riel , Thomas Gleixner , Michael Kerrisk , linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org, linux-api-u79uwXL29TY76Z2rM5mHXA@public.gmane.org, linux-fsdevel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org, x86-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org To: Josh Triplett Return-path: Content-Disposition: inline In-Reply-To: <20150314190132.GB22130@thin> Sender: linux-api-owner-u79uwXL29TY76Z2rM5mHXA@public.gmane.org List-Id: linux-fsdevel.vger.kernel.org On 03/14, Josh Triplett wrote: > > On Sat, Mar 14, 2015 at 11:38:29AM -0700, Thiago Macieira wrote: > > On Saturday 14 March 2015 15:32:35 Oleg Nesterov wrote: > > > It is not clear to me what do_wait() should do with ->autoreap child, even > > > ignoring ptrace. > > > > > > Just suppose that real_parent has a single "autoreap" child. Should > > > wait(NULL) hanf then? > > > > It should ignore the child that is set to autoreap. wait(NULL) should return - > > ECHILD, indicating there are no children waiting to be reaped. > > Right. And I don't think the current code does this. I think we need > to change wait_consider_task to early-return for ->autoreap just as it > does for task_state == EXIT_DEAD. No. This EXIT_DEAD is absolutely different. And this is another indication that you might use it wrongly ;) What we actually want is BUG_ON(task_state == EXIT_DEAD) here. We do not want the EXIT_DEAD tasks in ->children/ptraced lists. These EXIT_DEAD tasks complicate the exit/wait/reparent paths. However, currently this is TODO. The main problem is the locking in wait_task_zombie(), we can set EXIT_DEAD and remove the task from list under read_lock(). And please see another email from me. So far I disagree that wait(NULL) should return ECHILD unconditionally. At least unless this is discussed separately. Oleg.