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 C2D0EC0502C for ; Sun, 28 Aug 2022 11:27:59 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S229565AbiH1L16 (ORCPT ); Sun, 28 Aug 2022 07:27:58 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:38574 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229907AbiH1L1L (ORCPT ); Sun, 28 Aug 2022 07:27:11 -0400 Received: from mailout-taastrup.gigahost.dk (mailout-taastrup.gigahost.dk [46.183.139.199]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 1005333E0B; Sun, 28 Aug 2022 04:27:09 -0700 (PDT) Received: from mailout.gigahost.dk (mailout.gigahost.dk [89.186.169.112]) by mailout-taastrup.gigahost.dk (Postfix) with ESMTP id 9A5F018846A8; Sun, 28 Aug 2022 11:27:08 +0000 (UTC) Received: from smtp.gigahost.dk (smtp.gigahost.dk [89.186.169.109]) by mailout.gigahost.dk (Postfix) with ESMTP id 8DC6425032B7; Sun, 28 Aug 2022 11:27:08 +0000 (UTC) Received: by smtp.gigahost.dk (Postfix, from userid 1000) id 788FE9EC0009; Sun, 28 Aug 2022 11:27:08 +0000 (UTC) X-Screener-Id: 413d8c6ce5bf6eab4824d0abaab02863e8e3f662 MIME-Version: 1.0 Date: Sun, 28 Aug 2022 13:27:08 +0200 From: netdev@kapio-technology.com To: Ido Schimmel Cc: davem@davemloft.net, kuba@kernel.org, netdev@vger.kernel.org, Florian Fainelli , Andrew Lunn , Vivien Didelot , Vladimir Oltean , Eric Dumazet , Paolo Abeni , Kurt Kanzenbach , Hauke Mehrtens , Woojung Huh , UNGLinuxDriver@microchip.com, Sean Wang , Landen Chao , DENG Qingfang , Matthias Brugger , Claudiu Manoil , Alexandre Belloni , Jiri Pirko , Ivan Vecera , Roopa Prabhu , Nikolay Aleksandrov , Shuah Khan , Christian Marangi , Daniel Borkmann , Yuwei Wang , linux-kernel@vger.kernel.org, linux-arm-kernel@lists.infradead.org, linux-mediatek@lists.infradead.org, bridge@lists.linux-foundation.org, linux-kselftest@vger.kernel.org Subject: Re: [PATCH v5 net-next 2/6] net: switchdev: add support for offloading of fdb locked flag In-Reply-To: References: <20220826114538.705433-1-netdev@kapio-technology.com> <20220826114538.705433-3-netdev@kapio-technology.com> User-Agent: Gigahost Webmail Message-ID: <4206d70598694689acf6b6ec30ef6523@kapio-technology.com> X-Sender: netdev@kapio-technology.com Content-Type: text/plain; charset=US-ASCII; format=flowed Content-Transfer-Encoding: 7bit Precedence: bulk List-ID: X-Mailing-List: netdev@vger.kernel.org On 2022-08-27 17:46, Ido Schimmel wrote: > On Fri, Aug 26, 2022 at 01:45:34PM +0200, Hans Schultz wrote: >> diff --git a/include/net/switchdev.h b/include/net/switchdev.h >> index 7dcdc97c0bc3..437945179373 100644 >> --- a/include/net/switchdev.h >> +++ b/include/net/switchdev.h >> @@ -247,7 +247,10 @@ struct switchdev_notifier_fdb_info { >> const unsigned char *addr; >> u16 vid; >> u8 added_by_user:1, >> + sticky:1, > > If mv88e6xxx reports entries with 'is_local=1, locked=1, blackhole=1', > then the 'sticky' bit can be removed for now (we will need it some day > to support sticky entries notified from the bridge). This takes care of > the discrepancy Nik mentioned here: > > https://lore.kernel.org/netdev/d1de0337-ae16-7dca-b212-1a4e85129c31@blackwall.org/ > >> is_local:1, >> + locked:1, >> + blackhole:1, >> offloaded:1; >> }; Right!