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 Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 1AE57C433FE for ; Tue, 29 Nov 2022 05:36:14 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S235603AbiK2FgM (ORCPT ); Tue, 29 Nov 2022 00:36:12 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:56344 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S235177AbiK2FgH (ORCPT ); Tue, 29 Nov 2022 00:36:07 -0500 Received: from metis.ext.pengutronix.de (metis.ext.pengutronix.de [IPv6:2001:67c:670:201:290:27ff:fe1d:cc33]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 232D127CE1 for ; Mon, 28 Nov 2022 21:36:05 -0800 (PST) Received: from ptx.hi.pengutronix.de ([2001:67c:670:100:1d::c0]) by metis.ext.pengutronix.de with esmtps (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1oztHT-0007aB-BQ; Tue, 29 Nov 2022 06:35:43 +0100 Received: from ore by ptx.hi.pengutronix.de with local (Exim 4.92) (envelope-from ) id 1oztHP-0004If-Vo; Tue, 29 Nov 2022 06:35:39 +0100 Date: Tue, 29 Nov 2022 06:35:39 +0100 From: Oleksij Rempel To: Jacob Keller Cc: Woojung Huh , UNGLinuxDriver@microchip.com, Andrew Lunn , Vivien Didelot , Florian Fainelli , Vladimir Oltean , "David S. Miller" , Eric Dumazet , Jakub Kicinski , Paolo Abeni , netdev@vger.kernel.org, Arun.Ramadoss@microchip.com, linux-kernel@vger.kernel.org, kernel@pengutronix.de Subject: Re: [PATCH v1 00/26] net: dsa: microchip: stats64, fdb, error Message-ID: <20221129053539.GA25526@pengutronix.de> References: <20221128115958.4049431-1-o.rempel@pengutronix.de> <7f0a7acc-4b6b-8e33-7098-e5dfcb67945f@intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: <7f0a7acc-4b6b-8e33-7098-e5dfcb67945f@intel.com> X-Sent-From: Pengutronix Hildesheim X-URL: http://www.pengutronix.de/ X-Accept-Language: de,en X-Accept-Content-Type: text/plain User-Agent: Mutt/1.10.1 (2018-07-13) X-SA-Exim-Connect-IP: 2001:67c:670:100:1d::c0 X-SA-Exim-Mail-From: ore@pengutronix.de X-SA-Exim-Scanned: No (on metis.ext.pengutronix.de); SAEximRunCond expanded to false X-PTX-Original-Recipient: linux-kernel@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Mon, Nov 28, 2022 at 03:09:19PM -0800, Jacob Keller wrote: > > > On 11/28/2022 3:59 AM, Oleksij Rempel wrote: > > This patch series is a result of maintaining work on ksz8 part of > > microchip driver. It includes stats64 and fdb support. Error handling. > > Loopback fix and so on... > > > > Oleksij Rempel (26): > > net: dsa: microchip: add stats64 support for ksz8 series of switches > > net: dsa: microchip: ksz8: ksz8_fdb_dump: fix port validation and VID > > information > > net: dsa: microchip: ksz8: ksz8_fdb_dump: fix not complete fdb > > extraction > > net: dsa: microchip: ksz8: ksz8_fdb_dump: fix time stamp extraction > > net: dsa: microchip: ksz8: ksz8_fdb_dump: do not extract ghost entry > > from empty table > > net: dsa: microchip: ksz8863_smi: fix bulk access > > net: dsa: microchip: ksz8_r_dyn_mac_table(): remove timestamp support > > net: dsa: microchip: make ksz8_r_dyn_mac_table() static > > net: dsa: microchip: ksz8_r_dyn_mac_table(): remove fid support > > net: dsa: microchip: ksz8: refactor ksz8_fdb_dump() > > net: dsa: microchip: ksz8: ksz8_fdb_dump: dump static MAC table > > net: dsa: microchip: ksz8: move static mac table operations to a > > separate functions > > net: dsa: microchip: ksz8: add fdb_add/del support > > net: dsa: microchip: KSZ88x3 fix loopback support > > net: dsa: microchip: ksz8_r_dyn_mac_table(): move main part of the > > code out of if statement > > net: dsa: microchip: ksz8_r_dyn_mac_table(): use ret instead of rc > > net: dsa: microchip: ksz8_r_dyn_mac_table(): ksz: do not return EAGAIN > > on timeout > > net: dsa: microchip: ksz8_r_dyn_mac_table(): return read/write error > > if we got any > > net: dsa: microchip: ksz8_r_dyn_mac_table(): use entries variable to > > signal 0 entries > > net: dsa: microchip: make ksz8_r_sta_mac_table() static > > net: dsa: microchip: ksz8_r_sta_mac_table(): do not use error code for > > empty entries > > net: dsa: microchip: ksz8_r_sta_mac_table(): make use of error values > > provided by read/write functions > > net: dsa: microchip: make ksz8_w_sta_mac_table() static > > net: dsa: microchip: ksz8_w_sta_mac_table(): make use of error values > > provided by read/write functions > > net: dsa: microchip: remove ksz_port:on variable > > net: dsa: microchip: ksz8: do not force flow control by default > > > > > My understanding is that we typically limit series to 15 patches. Do you > have some justification for why this goes over 15 and can't reasonably be > split into two series? > > At a glance it seems like a bunch of smaller cleanups. The previous patch set got request to do more clean ups: https://lore.kernel.org/all/20221124101458.3353902-1-o.rempel@pengutronix.de/ I need to show, there are already more patches in the queue. Regards, Oleksij -- Pengutronix e.K. | | Steuerwalder Str. 21 | http://www.pengutronix.de/ | 31137 Hildesheim, Germany | Phone: +49-5121-206917-0 | Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 |