From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754575Ab1LANpH (ORCPT ); Thu, 1 Dec 2011 08:45:07 -0500 Received: from e33.co.us.ibm.com ([32.97.110.151]:52412 "EHLO e33.co.us.ibm.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754141Ab1LANpF (ORCPT ); Thu, 1 Dec 2011 08:45:05 -0500 Date: Thu, 1 Dec 2011 19:11:36 +0530 From: Srikar Dronamraju To: Peter Zijlstra Cc: Linus Torvalds , Oleg Nesterov , Andrew Morton , LKML , Linux-mm , Ingo Molnar , Andi Kleen , Christoph Hellwig , Steven Rostedt , Roland McGrath , Thomas Gleixner , Masami Hiramatsu , Arnaldo Carvalho de Melo , Anton Arapov , Ananth N Mavinakayanahalli , Jim Keniston , Stephen Wilson Subject: Re: [PATCH v7 3.2-rc2 3/30] uprobes: register/unregister probes. Message-ID: <20111201134136.GJ18380@linux.vnet.ibm.com> Reply-To: Srikar Dronamraju References: <20111118110631.10512.73274.sendpatchset@srdronam.in.ibm.com> <20111118110713.10512.9461.sendpatchset@srdronam.in.ibm.com> <1322494194.2921.147.camel@twins> <20111129074807.GA13445@linux.vnet.ibm.com> <1322563948.2921.199.camel@twins> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline In-Reply-To: <1322563948.2921.199.camel@twins> User-Agent: Mutt/1.5.20 (2009-06-14) x-cbid: 11120113-2398-0000-0000-0000026E21CA Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org > > You could use the stuff from patch 29 to effectively disable the uprobe > and return -ENOMEM to whoemever is unregistering. Basically failing the > unreg. > > That way you can leave the uprobe in existance and half installed but > functionally fully disabled. Userspace (assuming we go back that far) > can then either re-try the removal later, or even reinstate it by doing > a register again or so. > > Its still not pretty, but its better than pretending the unreg > completed. > This approach has its own disadvantages. perf record which does the unregister_uprobe() might be get stuck under low memory conditions while it tries to complete unregistration. Also the user would be confused if the tracer is still collecting information, once the unregister_uprobe has returned an error. So I would still think using a kworker thread to complete unregistration on a low memory condition might be a better solution. While I work on getting the kworker thread implementation ready, we could use delay deleting the probe, set the not_run_handler flag and also see if we can remove the breakpoint while the breakpoint is hit. This way the only worse thing that can happen is the probed processes still take a hit. If the kworker thread were to face a low memory situation, then it will try to schedule another kworker thread or itself again (at a later point in time). I still need to investigate some more on this. -- Thanks and Regards Srikar