Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752547Ab1BAT0G (ORCPT ); Tue, 1 Feb 2011 14:26:06 -0500 Received: from mx1.redhat.com ([209.132.183.28]:40157 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751745Ab1BAT0E (ORCPT ); Tue, 1 Feb 2011 14:26:04 -0500 Date: Tue, 1 Feb 2011 20:17:43 +0100 From: Oleg Nesterov To: Tejun Heo Cc: Roland McGrath , jan.kratochvil@redhat.com, linux-kernel@vger.kernel.org, torvalds@linux-foundation.org, akpm@linux-foundation.org Subject: Re: [PATCH] ptrace: use safer wake up on ptrace_detach() Message-ID: <20110201191743.GA8913@redhat.com> References: <1296227324-25295-1-git-send-email-tj@kernel.org> <1296227324-25295-3-git-send-email-tj@kernel.org> <20110128184601.CBF7C180996@magilla.sf.frob.com> <20110131103855.GD7459@htj.dyndns.org> <20110201102618.GE14211@htj.dyndns.org> <20110201134037.GA25392@redhat.com> <20110201150727.GP14211@htj.dyndns.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20110201150727.GP14211@htj.dyndns.org> 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: 1688 Lines: 49 On 02/01, Tejun Heo wrote: > > Hello, > > On Tue, Feb 01, 2011 at 02:40:37PM +0100, Oleg Nesterov wrote: > > On 02/01, Tejun Heo wrote: > > > > > > --- work.orig/kernel/ptrace.c > > > +++ work/kernel/ptrace.c > > > @@ -313,7 +313,7 @@ int ptrace_detach(struct task_struct *ch > > > child->exit_code = data; > > > dead = __ptrace_detach(current, child); > > > if (!child->exit_state) > > > - wake_up_process(child); > > > + wake_up_state(child, TASK_TRACED | TASK_STOPPED); > > > > Well, it can't be TASK_TRACED at this point. And of course this still > > contradicts to __set_task_state(child, TASK_STOPPED) in ptrace_untrace(). > > IOW, to me the previous patch makes more sense. > > Yeah, it can't be in TRACED but the whole point of the patch is > avoiding rude wakeups, so as long as it doesn't end up waking random > [un]interruptible sleeps... It will be removed later anyway. Yes, yes, I understand. > > But OK, I understand Roland's concerns. And, at least this change > > fixes the bug mentioned in 95a3540d. > > > > Acked-by: Oleg Nesterov > > Oleg, Roland, you guys are the maintainers, so how do you guys want to > route the patches which have been acked? Well. I know only one way, send it to akpm ;) > As it's likely that there > will be quite some number of ptrace patches, it will be better to have > a git tree. Probably yes... but everything in this area goes through -mm so far. 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/