From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S934309AbdDGQ2s (ORCPT ); Fri, 7 Apr 2017 12:28:48 -0400 Received: from mail.us.es ([193.147.175.20]:43256 "EHLO mail.us.es" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S934122AbdDGQ2k (ORCPT ); Fri, 7 Apr 2017 12:28:40 -0400 Date: Fri, 7 Apr 2017 18:28:33 +0200 From: Pablo Neira Ayuso To: Arushi Singhal Cc: kadlec@blackhole.kfki.hu, davem@davemloft.net, kuznet@ms2.inr.ac.ru, jmorris@namei.org, yoshfuji@linux-ipv6.org, kaber@trash.net, netfilter-devel@vger.kernel.org, coreteam@netfilter.org, netdev@vger.kernel.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH 1/4] net: netfilter:Remove exceptional & on function name Message-ID: <20170407162833.GA10487@salvia> References: <20170402092215.22792-1-arushisinghal19971997@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20170402092215.22792-1-arushisinghal19971997@gmail.com> User-Agent: Mutt/1.5.23 (2014-03-12) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Sun, Apr 02, 2017 at 02:52:12PM +0530, Arushi Singhal wrote: > Remove & from function pointers to conform to the style found elsewhere > in the file. Done using the following semantic patch > > // > @r@ > identifier f; > @@ > > f(...) { ... } > @@ > identifier r.f; > @@ > > - &f > + f > // I have collapsed these four patches. You only need to send one patch per logical update. I also detected that you missed one spot in nft_hash.c, I manually updated this but next time you have to be more careful. Thanks!