Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1757216Ab1FPMMt (ORCPT ); Thu, 16 Jun 2011 08:12:49 -0400 Received: from e2.ny.us.ibm.com ([32.97.182.142]:38073 "EHLO e2.ny.us.ibm.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755849Ab1FPMMq (ORCPT ); Thu, 16 Jun 2011 08:12:46 -0400 Date: Thu, 16 Jun 2011 17:34:42 +0530 From: Srikar Dronamraju To: Peter Zijlstra Cc: Ingo Molnar , Steven Rostedt , Linux-mm , Arnaldo Carvalho de Melo , Linus Torvalds , Andi Kleen , Hugh Dickins , Christoph Hellwig , Jonathan Corbet , Thomas Gleixner , Masami Hiramatsu , Oleg Nesterov , LKML , Jim Keniston , Roland McGrath , Ananth N Mavinakayanahalli , Andrew Morton Subject: Re: [PATCH v4 3.0-rc2-tip 13/22] 13: uprobes: Handing int3 and singlestep exception. Message-ID: <20110616120442.GA4093@linux.vnet.ibm.com> Reply-To: Srikar Dronamraju References: <20110607125804.28590.92092.sendpatchset@localhost6.localdomain6> <20110607130051.28590.68088.sendpatchset@localhost6.localdomain6> <1308225141.13240.25.camel@twins> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline In-Reply-To: <1308225141.13240.25.camel@twins> User-Agent: Mutt/1.5.20 (2009-06-14) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1485 Lines: 48 > > + > > +cleanup_ret: > > + if (u) { > > + down_read(&mm->mmap_sem); > > + if (!set_orig_insn(current, u, probept, true)) > > we try to undo the probe? That doesn't make any sense. I thought you > meant to return to userspace, let it re-take the trap and try again > until you do manage to allocate the user resource. I meant removing the probe itself https://lkml.org/lkml/2011/4/21/279 We could try reseting and retrying the trap. Just that we might end up looping under memory pressure. > > This behaviour makes probes totally unreliable under memory pressure. Under memory pressure we could be unreliable. > > > + atomic_dec(&mm->uprobes_count); > > + up_read(&mm->mmap_sem); > > + put_uprobe(u); > > + } else { > > + /*TODO Return SIGTRAP signal */ > > + } > > + if (utask) { > > + utask->active_uprobe = NULL; > > + utask->state = UTASK_RUNNING; > > + } > > + set_instruction_pointer(regs, probept); > > +} > > Also, there's a scary amount of TODO in there... All of those deal with delaying the signals. I am working on it at this moment. -- Thanks and Regards Srikar -- 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/