From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-8.2 required=3.0 tests=HEADER_FROM_DIFFERENT_DOMAINS, INCLUDES_PATCH,MAILING_LIST_MULTI,SIGNED_OFF_BY,SPF_HELO_NONE,SPF_PASS, URIBL_BLOCKED,USER_AGENT_SANE_1 autolearn=unavailable autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 6AF1DC73C7C for ; Wed, 10 Jul 2019 07:29:56 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 4D18120838 for ; Wed, 10 Jul 2019 07:29:56 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727355AbfGJH3w (ORCPT ); Wed, 10 Jul 2019 03:29:52 -0400 Received: from kirsty.vergenet.net ([202.4.237.240]:41198 "EHLO kirsty.vergenet.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726979AbfGJH3w (ORCPT ); Wed, 10 Jul 2019 03:29:52 -0400 Received: from reginn.horms.nl (watermunt.horms.nl [80.127.179.77]) by kirsty.vergenet.net (Postfix) with ESMTPA id 4429E25B7D5; Wed, 10 Jul 2019 17:29:50 +1000 (AEST) Received: by reginn.horms.nl (Postfix, from userid 7100) id 3CF689402F1; Wed, 10 Jul 2019 09:29:48 +0200 (CEST) Date: Wed, 10 Jul 2019 09:29:48 +0200 From: Simon Horman To: xianfengting221@163.com, Pablo Neira Ayuso Cc: wensong@linux-vs.org, ja@ssi.bg, pablo@netfilter.org, kadlec@blackhole.kfki.hu, fw@strlen.de, davem@davemloft.net, netdev@vger.kernel.org, lvs-devel@vger.kernel.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH] ipvs: Delete some unused space characters in Kconfig Message-ID: <20190710072948.mpg4niors42zrqhc@verge.net.au> References: <1562473009-29726-1-git-send-email-xianfengting221@163.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1562473009-29726-1-git-send-email-xianfengting221@163.com> Organisation: Horms Solutions BV User-Agent: NeoMutt/20170113 (1.7.2) Sender: netdev-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: netdev@vger.kernel.org On Sun, Jul 07, 2019 at 12:16:49PM +0800, xianfengting221@163.com wrote: > From: Hu Haowen > > The space characters at the end of lines are always unused and > not easy to find. This patch deleted some of them I have found > in Kconfig. > > Signed-off-by: Hu Haowen > --- > > This is my first patch to the Linux kernel, so please forgive > me if anything went wrong. Acked-by: Simon Horman Thanks Hu, this looks good to me. Pablo, please consider this for inclusion in nf-next. > > net/netfilter/ipvs/Kconfig | 10 +++++----- > 1 file changed, 5 insertions(+), 5 deletions(-) > > diff --git a/net/netfilter/ipvs/Kconfig b/net/netfilter/ipvs/Kconfig > index f6f1a0d..54afad5 100644 > --- a/net/netfilter/ipvs/Kconfig > +++ b/net/netfilter/ipvs/Kconfig > @@ -120,7 +120,7 @@ config IP_VS_RR > > If you want to compile it in kernel, say Y. To compile it as a > module, choose M here. If unsure, say N. > - > + > config IP_VS_WRR > tristate "weighted round-robin scheduling" > ---help--- > @@ -138,7 +138,7 @@ config IP_VS_LC > tristate "least-connection scheduling" > ---help--- > The least-connection scheduling algorithm directs network > - connections to the server with the least number of active > + connections to the server with the least number of active > connections. > > If you want to compile it in kernel, say Y. To compile it as a > @@ -193,7 +193,7 @@ config IP_VS_LBLCR > tristate "locality-based least-connection with replication scheduling" > ---help--- > The locality-based least-connection with replication scheduling > - algorithm is also for destination IP load balancing. It is > + algorithm is also for destination IP load balancing. It is > usually used in cache cluster. It differs from the LBLC scheduling > as follows: the load balancer maintains mappings from a target > to a set of server nodes that can serve the target. Requests for > @@ -250,8 +250,8 @@ config IP_VS_SED > tristate "shortest expected delay scheduling" > ---help--- > The shortest expected delay scheduling algorithm assigns network > - connections to the server with the shortest expected delay. The > - expected delay that the job will experience is (Ci + 1) / Ui if > + connections to the server with the shortest expected delay. The > + expected delay that the job will experience is (Ci + 1) / Ui if > sent to the ith server, in which Ci is the number of connections > on the ith server and Ui is the fixed service rate (weight) > of the ith server. > -- > 2.7.4 > >