From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752269Ab1IZLTk (ORCPT ); Mon, 26 Sep 2011 07:19:40 -0400 Received: from merlin.infradead.org ([205.233.59.134]:35197 "EHLO merlin.infradead.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751909Ab1IZLTh convert rfc822-to-8bit (ORCPT ); Mon, 26 Sep 2011 07:19:37 -0400 Subject: Re: [PATCH v5 3.1.0-rc4-tip 1/26] uprobes: Auxillary routines to insert, find, delete uprobes From: Peter Zijlstra To: Srikar Dronamraju 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 Date: Mon, 26 Sep 2011 13:18:40 +0200 In-Reply-To: <20110920115949.25326.2469.sendpatchset@srdronam.in.ibm.com> References: <20110920115938.25326.93059.sendpatchset@srdronam.in.ibm.com> <20110920115949.25326.2469.sendpatchset@srdronam.in.ibm.com> Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 8BIT X-Mailer: Evolution 3.0.3- Message-ID: <1317035920.9084.84.camel@twins> Mime-Version: 1.0 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Tue, 2011-09-20 at 17:29 +0530, Srikar Dronamraju wrote: > +static struct uprobe *__insert_uprobe(struct uprobe *uprobe) > +{ > + struct rb_node **p = &uprobes_tree.rb_node; > + struct rb_node *parent = NULL; > + struct uprobe *u; > + int match; > + > + while (*p) { > + parent = *p; > + u = rb_entry(parent, struct uprobe, rb_node); > + match = match_uprobe(uprobe, u); > + if (!match) { > + atomic_inc(&u->ref); > + return u; > + } > + > + if (match < 0) > + p = &parent->rb_left; > + else > + p = &parent->rb_right; > + > + } > + u = NULL; > + rb_link_node(&uprobe->rb_node, parent, p); > + rb_insert_color(&uprobe->rb_node, &uprobes_tree); > + /* get access + drop ref */ > + atomic_set(&uprobe->ref, 2); > + return u; > +} If you ever want to make a 'lockless' lookup work you need to set the refcount of the new object before its fully visible, instead of after. Now much of a problem now since its fully serialized by that uprobes_treelock thing.