From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail137.messagelabs.com (mail137.messagelabs.com [216.82.249.19]) by kanga.kvack.org (Postfix) with ESMTP id DB5B090013A for ; Tue, 21 Jun 2011 09:33:38 -0400 (EDT) Subject: Re: [PATCH v4 3.0-rc2-tip 14/22] 14: x86: uprobes exception notifier for x86. From: Peter Zijlstra In-Reply-To: <1308663084.26237.145.camel@twins> References: <20110607125804.28590.92092.sendpatchset@localhost6.localdomain6> <20110607130101.28590.99984.sendpatchset@localhost6.localdomain6> <1308663084.26237.145.camel@twins> Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable Date: Tue, 21 Jun 2011 15:32:47 +0200 Message-ID: <1308663167.26237.146.camel@twins> Mime-Version: 1.0 Sender: owner-linux-mm@kvack.org List-ID: To: Srikar Dronamraju Cc: Ingo Molnar , Steven Rostedt , Linux-mm , Arnaldo Carvalho de Melo , Linus Torvalds , Masami Hiramatsu , Hugh Dickins , Christoph Hellwig , Andi Kleen , Thomas Gleixner , Jonathan Corbet , Oleg Nesterov , Andrew Morton , Jim Keniston , Roland McGrath , Ananth N Mavinakayanahalli , LKML On Tue, 2011-06-21 at 15:31 +0200, Peter Zijlstra wrote: > On Tue, 2011-06-07 at 18:31 +0530, Srikar Dronamraju wrote: > > @@ -844,6 +845,19 @@ do_notify_resume(struct pt_regs *regs, void *unuse= d, __u32 thread_info_flags) > > if (thread_info_flags & _TIF_SIGPENDING) > > do_signal(regs); > > =20 > > + if (thread_info_flags & _TIF_UPROBE) { > > + clear_thread_flag(TIF_UPROBE); > > +#ifdef CONFIG_X86_32 > > + /* > > + * On x86_32, do_notify_resume() gets called with > > + * interrupts disabled. Hence enable interrupts if they > > + * are still disabled. > > + */ > > + local_irq_enable(); > > +#endif > > + uprobe_notify_resume(regs); > > + }=20 >=20 > Would it make sense to do TIF_UPROBE before TIF_SIGPENDING? That way > when uprobe decides it ought to have send a signal we don't have to do > another loop through all this. Also, it might be good to unify x86_86 and i386 on the interrupt thing, instead of propagating this difference (unless of course there's a good reason they're different, but I really don't know this code well). -- 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/ . Fight unfair telecom internet charges in Canada: sign http://stopthemeter.ca/ Don't email: email@kvack.org