From mboxrd@z Thu Jan 1 00:00:00 1970 From: Guenter Roeck Subject: Re: [PATCH RFC 1/2] net: dsa: integrate with SWITCHDEV for HW bridging Date: Mon, 23 Feb 2015 10:35:37 -0800 Message-ID: <20150223183537.GA23456@roeck-us.net> References: <54EA8E7C.90401@roeck-us.net> <20150223031447.GA19267@lunn.ch> <54EAA767.6060105@roeck-us.net> <20150223042220.GA20063@lunn.ch> <54EAAEBC.6080609@roeck-us.net> <20150223133454.GB23581@lunn.ch> <54EB37C7.3090209@roeck-us.net> <20150223160109.GB27057@lunn.ch> <54EB6BF5.2020600@gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: Andrew Lunn , netdev , David Miller , Vivien Didelot , jerome.oufella@savoirfairelinux.com, Chris Healy To: Florian Fainelli Return-path: Received: from bh-25.webhostbox.net ([208.91.199.152]:54885 "EHLO bh-25.webhostbox.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752206AbbBWSft (ORCPT ); Mon, 23 Feb 2015 13:35:49 -0500 Received: from mailnull by bh-25.webhostbox.net with sa-checked (Exim 4.82) (envelope-from ) id 1YPxrA-0038w2-Ut for netdev@vger.kernel.org; Mon, 23 Feb 2015 18:35:49 +0000 Content-Disposition: inline In-Reply-To: <54EB6BF5.2020600@gmail.com> Sender: netdev-owner@vger.kernel.org List-ID: On Mon, Feb 23, 2015 at 10:05:41AM -0800, Florian Fainelli wrote: > On 23/02/15 08:01, Andrew Lunn wrote: > >> I currently use ATU command 110 (flush all non-static entries in a > >> particular FID). I see means to flush either all entries or all > >> non-static entries, but no means to only flush unicast or multicast > >> entries. Does any of the standards distinguish between learned unicast > >> and multicast addresses ? Flushing those selectively might be a > >> challenge. > > Lucky you, on Broadcom switches you have to issue an ARL search, get the > results (there are all valid MAC entries, fortunately), and invalidate > the entries one by one for your particular ports of interest, there is > no "flush all non-static entries". > > > > > You might need to walk the table and flush records individually if you > > are only interested in one type. > > > > We should also consider do we need to make these flush operations > > atomic with respect to other operations? Do we need to disable > > learning, flush, change the port STP status, and then enable learning? > Wonder what if anything RSTP specifies for flush operation details. > I think we may have to do this to guarantee no race conditions between > flushing the switch's FDB, although it would look like only "joining" a > bridge needs to be a more controlled operation, on leave we can probably > just leave the bridge, flush entries and the switch port will start > learning new MAC addresses, right? > > Alternatively, would not setting a very low aging timeout and > maintaining HW learning still allow us to simplify these operations? That is what STP specifies. With RSTP, the expectation is that the database is flushed immediately on port status changes. Also, the minimum aging period on Marvell switches is 15 seconds, which is way too long for RSTP. Guenter