Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 33563C636D7 for ; Fri, 17 Feb 2023 17:40:15 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S229906AbjBQRkN (ORCPT ); Fri, 17 Feb 2023 12:40:13 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:43370 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229849AbjBQRkL (ORCPT ); Fri, 17 Feb 2023 12:40:11 -0500 Received: from vps0.lunn.ch (vps0.lunn.ch [156.67.10.101]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 7E21B714A7; Fri, 17 Feb 2023 09:40:09 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lunn.ch; s=20171124; h=In-Reply-To:Content-Disposition:Content-Type:MIME-Version: References:Message-ID:Subject:Cc:To:From:Date:From:Sender:Reply-To:Subject: Date:Message-ID:To:Cc:MIME-Version:Content-Type:Content-Transfer-Encoding: Content-ID:Content-Description:Content-Disposition:In-Reply-To:References; bh=o/Ixh04YsOuSmwGw24QhQlanGNMqW6xNp2H4bqYVuQ8=; b=IiLVD77gJcyS9iX+4f91zOE2cV TDjkesbORmR0IAH/3nuZyNqjbm34PmDF1y5u62JuOpVkNVFLXriXQBkvrmlfMY1IrcfLcD+gPffUk gNAacubEPaRrl+UGK04yOPRT8qUyiAuU6Hv5t8zKRWmAMtgHcwA7A6tEu1+sLN76oSMs=; Received: from andrew by vps0.lunn.ch with local (Exim 4.94.2) (envelope-from ) id 1pT4iM-005JW3-9t; Fri, 17 Feb 2023 18:40:06 +0100 Date: Fri, 17 Feb 2023 18:40:06 +0100 From: Andrew Lunn To: Vladimir Oltean Cc: Rakesh Sankaranarayanan , netdev@vger.kernel.org, linux-kernel@vger.kernel.org, woojung.huh@microchip.com, UNGLinuxDriver@microchip.com, f.fainelli@gmail.com, davem@davemloft.net, edumazet@google.com, kuba@kernel.org, pabeni@redhat.com, Thangaraj Samynathan Subject: Re: [PATCH v2 net-next 1/5] net: dsa: microchip: add rmon grouping for ethtool statistics Message-ID: References: <20230217110211.433505-1-rakesh.sankaranarayanan@microchip.com> <20230217110211.433505-2-rakesh.sankaranarayanan@microchip.com> <20230217165346.2eaualia32kmliz6@skbuf> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20230217165346.2eaualia32kmliz6@skbuf> Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Fri, Feb 17, 2023 at 06:53:46PM +0200, Vladimir Oltean wrote: > On Fri, Feb 17, 2023 at 04:32:07PM +0530, Rakesh Sankaranarayanan wrote: > > Add support for ethtool standard device statistics grouping. Support rmon > > statistics grouping using rmon groups parameter in ethtool command. rmon > > provides packet size based range grouping. Common mib parameters are used > > across all KSZ series swtches for packet size statistics, except for > > KSZ8830. KSZ series have mib counters for packets with size: > > - less than 64 Bytes, > > - 65 to 127 Bytes, > > - 128 to 255 Bytes, > > - 256 to 511 Bytes, > > - 512 to 1023 Bytes, > > - 1024 to 1522 Bytes, > > - 1523 to 2000 Bytes and > > - More than 2001 Bytes > > KSZ8830 have mib counters upto 1024-1522 range only. Since no other change, > > common range used across all KSZ series, but used upto only upto 1024-1522 > > for KSZ8830. > > Why are all commit messages indented in this way? Please keep the > default text indentation at 0 characters. I have never seen this style > in "git log". I can make a guess git show HEAD notice how the commit message is indented. So if you where to cut/paste that, you get the extra indent. It is better to do: git commit -C 8e757b50555f3ae ; git commit --am to copy a commit message from 8e757b50555f3ae, and then edit it to suite. Andrew