From mboxrd@z Thu Jan 1 00:00:00 1970 From: Eric Dumazet Subject: Re: [PATCH net-next-2.6] bridge: add __rcu annotations Date: Sat, 13 Nov 2010 23:04:21 +0100 Message-ID: <1289685861.2743.38.camel@edumazet-laptop> References: <1289636128.2743.15.camel@edumazet-laptop> <20101113093545.6fe9c077@nehalam> <1289671130.2743.28.camel@edumazet-laptop> <20101113101320.4b1c9ba7@nehalam> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: QUOTED-PRINTABLE Cc: David Miller , netdev To: Stephen Hemminger Return-path: Received: from mail-wy0-f174.google.com ([74.125.82.174]:48348 "EHLO mail-wy0-f174.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752034Ab0KMWE0 (ORCPT ); Sat, 13 Nov 2010 17:04:26 -0500 Received: by wyb28 with SMTP id 28so3170667wyb.19 for ; Sat, 13 Nov 2010 14:04:25 -0800 (PST) In-Reply-To: <20101113101320.4b1c9ba7@nehalam> Sender: netdev-owner@vger.kernel.org List-ID: Le samedi 13 novembre 2010 =C3=A0 10:13 -0800, Stephen Hemminger a =C3=A9= crit : > On Sat, 13 Nov 2010 18:58:50 +0100 > Eric Dumazet wrote: >=20 > > Le samedi 13 novembre 2010 =C3=A0 09:35 -0800, Stephen Hemminger a = =C3=A9crit : > > > On Sat, 13 Nov 2010 09:15:28 +0100 > > > Eric Dumazet wrote: > > >=20 > > > > diff --git a/include/linux/netdevice.h b/include/linux/netdevic= e.h > > > > index 578debb..ffbd177 100644 > > > > --- a/include/linux/netdevice.h > > > > +++ b/include/linux/netdevice.h > > > > @@ -996,7 +996,10 @@ struct net_device { > > > > #endif > > > > =20 > > > > rx_handler_func_t *rx_handler; > > > > - void *rx_handler_data; > > > > + union { > > > > + void *rx_handler_data; > > > > + struct net_bridge_port __rcu *br_port_rcu; > > > > + }; > > > > =20 > > > > struct netdev_queue __rcu *ingress_queue; > > >=20 > > > I don't like making the generic hook typed again. > > > We don't do this for other callbacks, timers, workqueues, ... > > > Why is it necessary for RCU notation. > > >=20 > >=20 > > because rcu_dereference() needs the type for __CHECKER__/sparse che= cks > >=20 > > #define __rcu_dereference_check(p, c, space) \ > > ({ \ > > typeof(*p) *_________p1 =3D (typeof(*p)*__force )AC= CESS_ONCE(p); \ > > rcu_lockdep_assert(c); \ > > rcu_dereference_sparse(p, space); \ > > smp_read_barrier_depends(); \ > > ((typeof(*p) __force __kernel *)(_________p1)); \ > > }) > >=20 > > So using a "void *ptr" is not an option > >=20 > > Its also cleaner to use > >=20 > > rcu_dereference(dev->br_port_rcu) > >=20 > > instead of=20 > >=20 > > (struct net_bridge_port *)rcu_dereference(dev->rx_handler_data) >=20 > There must be a better way. What about use of that hook by macvlan an= d openvswitch? macvlan and openvswitch (is it part of linux yet ???) I honestly dont understand your point Stephen, maybe you could explain = a bit more what is the problem ? I use a union, like many other ones in the kernel. This is the first time I ear this is not good to add type safety. You can use either one or other field at your convenience. If you are talking about stacking hooks, that has nothing to do with this (cleanup) rcu patch, but previous introduction of rx_handler_data/rx_handler ? Please run sparse on x86_64 machine and watch all the warnings in bridg= e code. (with CONFIG_SPARSE_RCU_POINTER=3Dy) Me confused.