Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755945AbXFOTa7 (ORCPT ); Fri, 15 Jun 2007 15:30:59 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1753245AbXFOTav (ORCPT ); Fri, 15 Jun 2007 15:30:51 -0400 Received: from e31.co.us.ibm.com ([32.97.110.149]:43742 "EHLO e31.co.us.ibm.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752962AbXFOTau (ORCPT ); Fri, 15 Jun 2007 15:30:50 -0400 Date: Sat, 16 Jun 2007 00:59:40 +0530 From: Dipankar Sarma To: Peter Zijlstra Cc: Dmitry Torokhov , LKML , "Paul E. McKenney" Subject: Re: Using RCU with rcu_read_lock()? Message-ID: <20070615192940.GA2996@in.ibm.com> Reply-To: dipankar@in.ibm.com References: <1181934259.11113.6.camel@lappy> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1181934259.11113.6.camel@lappy> User-Agent: Mutt/1.5.14 (2007-02-12) Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1605 Lines: 36 On Fri, Jun 15, 2007 at 09:04:19PM +0200, Peter Zijlstra wrote: > On Fri, 2007-06-15 at 15:00 -0400, Dmitry Torokhov wrote: > > Hi, > > > > I have a piece of code that is always called under a spinlock with > > interrups disabled. Within that piece of code I iterate through a > > list. I have another piece of code that wants to modify that list. I > > have 2 options: > > > > I don't want to do 1) because the otheir piece of code does not really > > care about object owning the spinlock and so acquiring the spinlock is > > "not nice". However it is guaranteed that the piece of code that > > accesses lock runs atomically with interrupts disabled. So > > rcu_read_lock() would be superfluos there. > > > > Is it possible to still use list_for_each_rcu() and friends to access > > that list without rcu_read_lock()? Or it is betteruse complete RCU > > interface and eat cost of couple of extra instrctions? > > Yes, preemptible rcu requires that you use the full interface, also, it > more clearly documents the code. Trying to find code that breaks these > assumptions is very tedious work after the fact. > > Please do use the RCU interface in full. As Peter said, you should use the strict RCU APIs and not rely on the current implementation of RCU to optimize. Things change. Plus static/dynamic checking becomes easier that way. Thanks Dipankar - 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/