From mboxrd@z Thu Jan 1 00:00:00 1970 From: Pablo Neira Ayuso Subject: Re: [PATCH] netfilter: nf_conntrack: remove exceptional & on function name Date: Fri, 25 Jul 2014 15:00:53 +0200 Message-ID: <20140725130053.GB13940@salvia> References: <20140724201716.GA16213@himangi-Dell> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: Patrick McHardy , Jozsef Kadlecsik , "David S. Miller" , Alexey Kuznetsov , James Morris , Hideaki YOSHIFUJI , netfilter-devel@vger.kernel.org, coreteam@netfilter.org, netdev@vger.kernel.org, linux-kernel@vger.kernel.org, Julia Lawall To: Himangi Saraogi Return-path: Content-Disposition: inline In-Reply-To: <20140724201716.GA16213@himangi-Dell> Sender: linux-kernel-owner@vger.kernel.org List-Id: netdev.vger.kernel.org On Fri, Jul 25, 2014 at 01:47:16AM +0530, Himangi Saraogi wrote: > In this file, function names are otherwise used as pointers without &. > > A simplified version of the Coccinelle semantic patch that makes this > change is as follows: > > // > @r@ > identifier f; > @@ > > f(...) { ... } > > @@ > identifier r.f; > @@ > > - &f > + f > // Applied, thanks Himangi.