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 1EDC48D0039 for ; Wed, 16 Mar 2011 03:52:47 -0400 (EDT) Received: from canuck.infradead.org ([2001:4978:20e::1]) by bombadil.infradead.org with esmtps (Exim 4.72 #1 (Red Hat Linux)) id 1PzlXA-00076j-6i for linux-mm@kvack.org; Wed, 16 Mar 2011 07:52:44 +0000 Received: from j77219.upc-j.chello.nl ([24.132.77.219] helo=dyad.programming.kicks-ass.net) by canuck.infradead.org with esmtpsa (Exim 4.72 #1 (Red Hat Linux)) id 1PzlX8-0001GC-8l for linux-mm@kvack.org; Wed, 16 Mar 2011 07:52:42 +0000 Subject: Re: [PATCH v2 2.6.38-rc8-tip 4/20] 4: uprobes: Adding and remove a uprobe in a rb tree. From: Peter Zijlstra In-Reply-To: <1300228944.2565.19.camel@edumazet-laptop> References: <20110314133403.27435.7901.sendpatchset@localhost6.localdomain6> <20110314133444.27435.50684.sendpatchset@localhost6.localdomain6> <20110315173041.GB24254@linux.vnet.ibm.com> <1300218499.2250.12.camel@laptop> <1300228944.2565.19.camel@edumazet-laptop> Content-Type: text/plain; charset="UTF-8" Date: Wed, 16 Mar 2011 08:54:27 +0100 Message-ID: <1300262067.2250.49.camel@laptop> Mime-Version: 1.0 Content-Transfer-Encoding: 8bit Sender: owner-linux-mm@kvack.org List-ID: To: Eric Dumazet Cc: Thomas Gleixner , Srikar Dronamraju , Ingo Molnar , Steven Rostedt , Linux-mm , Arnaldo Carvalho de Melo , Linus Torvalds , Masami Hiramatsu , Christoph Hellwig , Ananth N Mavinakayanahalli , Andi Kleen , Oleg Nesterov , Andrew Morton , Jim Keniston , Roland McGrath , SystemTap , LKML , "Paul E. McKenney" On Tue, 2011-03-15 at 23:42 +0100, Eric Dumazet wrote: > Le mardi 15 mars 2011 A 20:48 +0100, Peter Zijlstra a A(C)crit : > > On Tue, 2011-03-15 at 20:22 +0100, Thomas Gleixner wrote: > > > I am not sure if its a good idea to walk the tree > > > > as and when the tree is changing either because of a insertion or > > > > deletion of a probe. > > > > > > I know that you cannot walk the tree lockless except you would use > > > some rcu based container for your probes. > > > > You can in fact combine a seqlock, rb-trees and RCU to do lockless > > walks. > > > > https://lkml.org/lkml/2010/10/20/160 > > > > and > > > > https://lkml.org/lkml/2010/10/20/437 > > > > But doing that would be an optimization best done once we get all this > > working nicely. > > > > We have such schem in net/ipv4/inetpeer.c function inet_getpeer() (using > a seqlock on latest net-next-2.6 tree), but we added a counter to make > sure a reader could not enter an infinite loop while traversing tree Right, Linus suggested a single lockless iteration, but a limited count works too. > (AVL tree in inetpeer case). Ooh, there's an AVL implementation in the kernel? I have to ask, why not use the RB-tree? (I know AVL has a slightly stronger balancing condition which reduces the max depth from 2*log(n) to 1+log(n)). Also, if it does make sense to have both and AVL and RB implementation, does it then also make sense to lift the AVL thing to generic code into lib/ ? -- 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