Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753341AbdHOQmB (ORCPT ); Tue, 15 Aug 2017 12:42:01 -0400 Received: from bombadil.infradead.org ([65.50.211.133]:40626 "EHLO bombadil.infradead.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752828AbdHOQmA (ORCPT ); Tue, 15 Aug 2017 12:42:00 -0400 Subject: Re: [PATCH] Adding-Agile-SD-TCP-module-and-modifying-Kconfig-and-makefile To: Neal Cardwell , mohamedalrshah Cc: David Miller , Netdev , Linus Torvalds , LKML , Mohamed Othman , Borhanuddin Ali , Zurina Hanapi References: <20170815130806.25168-1-mohamed.a.alrshah@ieee.org> From: Randy Dunlap Message-ID: <5fac1100-c7d3-85ed-8230-53e6ffb3df0a@infradead.org> Date: Tue, 15 Aug 2017 09:41:53 -0700 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.2.1 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 664 Lines: 21 On 08/15/2017 06:51 AM, Neal Cardwell wrote: > On Tue, Aug 15, 2017 at 9:08 AM, mohamedalrshah > wrote: > >> +static void agilesdtcp_cong_avoid(struct sock *sk, u32 ack, u32 in_flight) >> +{ >> + struct tcp_sock *tp = tcp_sk(sk); >> + struct agilesdtcp *ca = inet_csk_ca(sk); >> + u32 inc_factor; >> + u32 ca_inc; >> + u32 current_gap, total_gap; > > For coding style, please order local variable declarations from > longest to shortest line, also know as Reverse Christmas Tree Format. Per what coding style, please? This is not in current coding style nor in the netdev-FAQ exceptions. -- ~Randy