From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jiri Pirko Subject: Re: [PATCH net-next v4 2/2] net sched: Trivial whitespace and stylistic changes Date: Tue, 17 Jan 2017 13:12:31 +0100 Message-ID: <20170117121231.GB1807@nanopsycho.orion> References: <1484651509-27500-1-git-send-email-jhs@emojatatu.com> <1484651509-27500-3-git-send-email-jhs@emojatatu.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: davem@davemloft.net, netdev@vger.kernel.org, jiri@mellanox.com, paulb@mellanox.com, john.fastabend@gmail.com, simon.horman@netronome.com, mrv@mojatatu.com, hadarh@mellanox.com, ogerlitz@mellanox.com, roid@mellanox.com, xiyou.wangcong@gmail.com, daniel@iogearbox.net To: Jamal Hadi Salim Return-path: Received: from mail-wm0-f65.google.com ([74.125.82.65]:36847 "EHLO mail-wm0-f65.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751167AbdAQMMe (ORCPT ); Tue, 17 Jan 2017 07:12:34 -0500 Received: by mail-wm0-f65.google.com with SMTP id r126so38018455wmr.3 for ; Tue, 17 Jan 2017 04:12:34 -0800 (PST) Content-Disposition: inline In-Reply-To: <1484651509-27500-3-git-send-email-jhs@emojatatu.com> Sender: netdev-owner@vger.kernel.org List-ID: Tue, Jan 17, 2017 at 12:11:49PM CET, jhs@mojatatu.com wrote: >From: Jamal Hadi Salim > >Signed-off-by: Jamal Hadi Salim >--- [...] >-static inline unsigned long >-cls_set_class(struct tcf_proto *tp, unsigned long *clp, >+static inline unsigned long cls_set_class(struct tcf_proto *tp, >+ unsigned long *clp, > unsigned long cl) While you are at it, you can align this as well. > { > unsigned long old_cl; >- This empty line should definitelly stay. > tcf_tree_lock(tp); > old_cl = __cls_set_class(clp, cl); > tcf_tree_unlock(tp); >- > return old_cl; > } > [...] >@@ -237,7 +232,6 @@ static inline int tcf_em_early_end(struct tcf_ematch *em, int result) > > return 0; > } >- This empty line should stay. > /** > * struct tcf_ematch_tree - ematch tree handle > * >@@ -246,8 +240,7 @@ static inline int tcf_em_early_end(struct tcf_ematch *em, int result) > */ > struct tcf_ematch_tree { > struct tcf_ematch_tree_hdr hdr; >- struct tcf_ematch * matches; >- >+ struct tcf_ematch *matches; Well, to be pedantic, this still looks odd :) > };