Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752820AbdHORKt (ORCPT ); Tue, 15 Aug 2017 13:10:49 -0400 Received: from bombadil.infradead.org ([65.50.211.133]:46004 "EHLO bombadil.infradead.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751605AbdHORKr (ORCPT ); Tue, 15 Aug 2017 13:10:47 -0400 Subject: Re: [PATCH] Adding-Agile-SD-TCP-module-and-modifying-Kconfig-and-makefile To: mohamedalrshah , davem@davemloft.net Cc: netdev@vger.kernel.org, torvalds@linux-foundation.org, linux-kernel@vger.kernel.org, Mohamed Othman , Borhanuddin Ali , Zurina Hanapi References: <20170815130806.25168-1-mohamed.a.alrshah@ieee.org> From: Randy Dunlap Message-ID: Date: Tue, 15 Aug 2017 10:10:46 -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: <20170815130806.25168-1-mohamed.a.alrshah@ieee.org> 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: 1680 Lines: 60 On 08/15/2017 06:08 AM, mohamedalrshah wrote: > diff --git a/net/ipv4/Kconfig b/net/ipv4/Kconfig > index 91a2557..474f72c 100644 > --- a/net/ipv4/Kconfig > +++ b/net/ipv4/Kconfig > @@ -677,6 +677,17 @@ config TCP_CONG_BBR > bufferbloat, policers, or AQM schemes that do not provide a delay > signal. It requires the fq ("Fair Queue") pacing packet scheduler. > > +config TCP_CONG_AGILESD > + tristate "Agile-SD Congestion control" > + default n > + ---help--- > + > + This is version 1.0 of Agile-SD TCP. It is a sender-side only. It is a sender-side only . > + It contributes the Agility Factor (AF) to shorten the epoch time > + and to make TCP independent from RTT. AF reduces the sensitivity > + to packet losses, which in turn Agile-SD to achieve better throughput in turn allows Agile-SD > + over high-speed networks. > + Please drop the tab(s) and space(s) at the ends of lines. > choice > prompt "Default TCP congestion control" > default DEFAULT_CUBIC > @@ -713,6 +724,9 @@ choice > > config DEFAULT_BBR > bool "BBR" if TCP_CONG_BBR=y > + > + config DEFAULT_AGILESD Indent above with tab, not spaces. > + bool "AGILESD" if TCP_CONG_AGILESD=y > > config DEFAULT_RENO > bool "Reno" > @@ -738,6 +752,7 @@ config DEFAULT_TCP_CONG > default "dctcp" if DEFAULT_DCTCP > default "cdg" if DEFAULT_CDG > default "bbr" if DEFAULT_BBR > + default "agilesd" if DEFAULT_AGILESD Indent above with tab, not spaces. > default "cubic" > > config TCP_MD5SIG -- ~Randy