From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751471AbdIRXop convert rfc822-to-8bit (ORCPT ); Mon, 18 Sep 2017 19:44:45 -0400 Received: from esa2.microchip.iphmx.com ([68.232.149.84]:25944 "EHLO esa2.microchip.iphmx.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751377AbdIRXoo (ORCPT ); Mon, 18 Sep 2017 19:44:44 -0400 X-IronPort-AV: E=Sophos;i="5.42,415,1500966000"; d="scan'208";a="7091722" From: To: CC: , , , , , , , Subject: RE: [PATCH RFC 6/6] Modify tag_ksz.c to support other KSZ switch drivers Thread-Topic: [PATCH RFC 6/6] Modify tag_ksz.c to support other KSZ switch drivers Thread-Index: AdMoGgjwWn+O5iRqREClMgoWecPmmwAAub+wABAyfwACFI9x8AAQwOcAAA2JDcD//8R9AIAAb5wg Date: Mon, 18 Sep 2017 23:44:42 +0000 Message-ID: <93AF473E2DA327428DE3D46B72B1E9FD41124E0C@CHN-SV-EXMX02.mchp-main.com> References: <93AF473E2DA327428DE3D46B72B1E9FD41121901@CHN-SV-EXMX02.mchp-main.com> <93AF473E2DA327428DE3D46B72B1E9FD41121A22@CHN-SV-EXMX02.mchp-main.com> <20170907214834.GT11248@lunn.ch> <93AF473E2DA327428DE3D46B72B1E9FD41124D2E@CHN-SV-EXMX02.mchp-main.com> <20170918195708.GE15606@lunn.ch> <93AF473E2DA327428DE3D46B72B1E9FD41124D7C@CHN-SV-EXMX02.mchp-main.com> <20170918225142.GC29615@lunn.ch> In-Reply-To: <20170918225142.GC29615@lunn.ch> Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-originating-ip: [10.10.215.90] Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 8BIT MIME-Version: 1.0 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org > > In the old DSA implementation all the ports are partitioned into its own > device > > and the bridge joining them will do all the forwarding. This is useful for > quick > > testing with some protocols like RSTP but it is probably useless for real > > operation. > > It is a good minimal driver, to get something into the kernel. You can > then add features to it. > > > The new switchdev model tries to use the switch hardware as much as > > possible. This offload_fwd_mark bit means the frame is forwarded by the > > hardware switch, so the software bridge does not need to do it again. > Without > > this bit there will be duplicated multicast frames coming out the ports if > internal > > forwarding is enabled. > > Correct. Once you switch driver is clever enough, you can enable > offload_fwd_mark. > > > When RSTP is used the port can be put in blocked state and so the > forwarding > > will stop for that port. Currently the switch driver will check that > membership > > to decide whether to set that bit. > > This i don't get. RSTP or STP just break loops. How does RSTP vs STP > mean you need to set offload_fwd_mark differently? > The logic of the switch driver is if the membership of the port receiving the frame contains other ports--not counting cpu port--the bit offload_fwd_mark is set. In RSTP closing the blocked port is generally good enough, but there are exceptions, so the port is removed from the membership of other forwarding ports. A disabled port will have its membership completely reset so it cannot receive anything. It does not matter much in RSTP as the software bridge should know whether to forward the frame or not. We are back to square one. Is there any plan to add this offload_fwd_mark support to DSA driver so that it can be reported properly? It can be set all the time, except during port initialization or before bridge creation the forwarding state does not reflect reality. If not the port membership can be fixed and there is no internal switch forwarding, leaving everything handled by the software bridge.