From mboxrd@z Thu Jan 1 00:00:00 1970 From: Eric Dumazet Subject: Re: mmotm 2010-04-28 - RCU whinges Date: Mon, 03 May 2010 18:14:53 +0200 Message-ID: <1272903293.2226.50.camel@edumazet-laptop> References: <201004290021.o3T0L04Y028017@imap1.linux-foundation.org> <5702.1272822394@localhost> <1272865137.2173.179.camel@edumazet-laptop> <5933.1272897014@localhost> <1272898726.2226.47.camel@edumazet-laptop> <5112.1272900590@localhost> <20100503154357.GF2597@linux.vnet.ibm.com> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: QUOTED-PRINTABLE Cc: Valdis.Kletnieks@vt.edu, Andrew Morton , Peter Zijlstra , Patrick McHardy , "David S. Miller" , linux-kernel@vger.kernel.org, netfilter-devel@vger.kernel.org, netdev@vger.kernel.org To: paulmck@linux.vnet.ibm.com Return-path: Received: from mail-bw0-f219.google.com ([209.85.218.219]:52946 "EHLO mail-bw0-f219.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1758731Ab0ECQO7 (ORCPT ); Mon, 3 May 2010 12:14:59 -0400 In-Reply-To: <20100503154357.GF2597@linux.vnet.ibm.com> Sender: netdev-owner@vger.kernel.org List-ID: Le lundi 03 mai 2010 =C3=A0 08:43 -0700, Paul E. McKenney a =C3=A9crit = : > Highly recommended. ;-) >=20 > And thanks to you for your testing efforts and to Eric for the fixes!= !! >=20 =46or this last one, I think you should push following patch Paul =46ollowup of commit 3120438ad6 (rcu: Disable lockdep checking in RCU list-traversal primitives) Or we might introduce a hlist_for_each_entry_continue_rcu_bh() macro... diff --git a/include/linux/rculist.h b/include/linux/rculist.h index 004908b..b0c7e24 100644 --- a/include/linux/rculist.h +++ b/include/linux/rculist.h @@ -435,10 +435,10 @@ static inline void hlist_add_after_rcu(struct hli= st_node *prev, * @member: the name of the hlist_node within the struct. */ #define hlist_for_each_entry_continue_rcu(tpos, pos, member) \ - for (pos =3D rcu_dereference((pos)->next); \ + for (pos =3D rcu_dereference_raw((pos)->next); \ pos && ({ prefetch(pos->next); 1; }) && \ ({ tpos =3D hlist_entry(pos, typeof(*tpos), member); 1; }); \ - pos =3D rcu_dereference(pos->next)) + pos =3D rcu_dereference_raw(pos->next)) =20 =20 #endif /* __KERNEL__ */