From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ingo Molnar Subject: Re: [PATCH 1/4] [RFC] net: Explicitly initialize u64_stats_sync structures for lockdep Date: Fri, 27 Sep 2013 07:44:55 +0200 Message-ID: <20130927054455.GA6597@gmail.com> References: <1380220464-28840-1-git-send-email-john.stultz@linaro.org> <1380220464-28840-2-git-send-email-john.stultz@linaro.org> <1380223585.3165.205.camel@edumazet-glaptop> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: John Stultz , LKML , Thomas Petazzoni , Mirko Lindner , Stephen Hemminger , Roger Luethi , Patrick McHardy , Rusty Russell , "Michael S. Tsirkin" , Alexey Kuznetsov , James Morris , Hideaki YOSHIFUJI , Wensong Zhang , Simon Horman , Julian Anastasov , Jesse Gross , Mathieu Desnoyers , Steven Rostedt , Peter Zijlstra , Thomas Gleixner , "David S. Miller" , netdev@vger.kernel.org, netfilter-devel@vger.kernel. To: Eric Dumazet Return-path: Content-Disposition: inline In-Reply-To: <1380223585.3165.205.camel@edumazet-glaptop> Sender: netdev-owner@vger.kernel.org List-Id: netfilter-devel.vger.kernel.org * Eric Dumazet wrote: > On Thu, 2013-09-26 at 11:34 -0700, John Stultz wrote: > > In order to enable lockdep on seqcount/seqlock structures, we > > must explicitly initialize any locks. > > > > > diff --git a/include/linux/u64_stats_sync.h b/include/linux/u64_stats_sync.h > > index 8da8c4e..c450e11 100644 > > --- a/include/linux/u64_stats_sync.h > > +++ b/include/linux/u64_stats_sync.h > > @@ -67,6 +67,13 @@ struct u64_stats_sync { > > #endif > > }; > > > > + > > +#if BITS_PER_LONG == 32 && defined(CONFIG_SMP) > > +#define u64_stats_init(syncp) seqcount_init(syncp.seq) > > +#else > > +#define u64_stats_init(syncp) > > +#endif > > + > > I would prefer a function. C cannot pass along symbolic names, unfortunately, so we are stuck with 1970's tech and the C preprocessor. There's a way to make such macros look a tiny bit more structured and thus be more palatable: #if BITS_PER_LONG == 32 && defined(CONFIG_SMP) # define u64_stats_init(syncp) seqcount_init(syncp.seq) #else # define u64_stats_init(syncp) #endif Note, the 'else' branch should probably be: # define u64_stats_init(syncp) do { } while (0) Thanks, Ingo