Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751705AbdLLGw0 (ORCPT ); Tue, 12 Dec 2017 01:52:26 -0500 Received: from mailgw01.mediatek.com ([210.61.82.183]:43690 "EHLO mailgw01.mediatek.com" rhost-flags-OK-FAIL-OK-FAIL) by vger.kernel.org with ESMTP id S1750749AbdLLGwY (ORCPT ); Tue, 12 Dec 2017 01:52:24 -0500 X-UUID: 24d32aa09d4749e586da4294e3f1b673-20171212 Message-ID: <1513061537.28444.15.camel@mtkswgap22> Subject: Re: [PATCH net-next 1/3] net: dsa: mediatek: add VLAN support for MT7530 From: Sean Wang To: Andrew Lunn CC: , , , , , Date: Tue, 12 Dec 2017 14:52:17 +0800 In-Reply-To: <20171207152415.GB24750@lunn.ch> References: <792c2d52b8da717b55ead9d480863ca390fe91b3.1512625814.git.sean.wang@mediatek.com> <20171207152415.GB24750@lunn.ch> Content-Type: text/plain; charset="UTF-8" X-Mailer: Evolution 3.2.3-0ubuntu6 Content-Transfer-Encoding: 7bit MIME-Version: 1.0 X-MTK: N Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2084 Lines: 90 Hi, Andrew All sounds reasonable. All will be fixed in the next version. Sean On Thu, 2017-12-07 at 16:24 +0100, Andrew Lunn wrote: > > static void > > +mt7530_port_set_vlan_unware(struct dsa_switch *ds, int port) > > +{ > > + struct mt7530_priv *priv = ds->priv; > > + int i; > > + bool all_user_ports_removed = true; > > Hi Sean > > Reverse Christmas tree please. > will be fixed > > +static int > > +mt7530_vlan_cmd(struct mt7530_priv *priv, enum mt7530_vlan_cmd cmd, u16 vid) > > +{ > > + u32 val; > > + int ret; > > + struct mt7530_dummy_poll p; > > Here too. > will be fixed > > +static int > > +mt7530_port_vlan_prepare(struct dsa_switch *ds, int port, > > + const struct switchdev_obj_port_vlan *vlan, > > + struct switchdev_trans *trans) > > +{ > > + struct mt7530_priv *priv = ds->priv; > > + > > + /* The port is being kept as VLAN-unware port when bridge is set up > > + * with vlan_filtering not being set, Otherwise, the port and the > > + * corresponding CPU port is required the setup for becoming a > > + * VLAN-ware port. > > + */ > > + if (!priv->ports[port].vlan_filtering) > > + return 0; > > + > > + mt7530_port_set_vlan_ware(ds, port); > > + mt7530_port_set_vlan_ware(ds, MT7530_CPU_PORT); > > A prepare function should just validate that it is possible to carry > out the operation. It should not change any state. These two last > lines probably don't belong here. > okay, it will be moved into the proper place such as mt7530_port_vlan_filtering > > + > > + return 0; > > +} > > + > > +static void > > +mt7530_hw_vlan_add(struct mt7530_priv *priv, > > + struct mt7530_hw_vlan_entry *entry) > > +{ > > + u32 val; > > + u8 new_members; > > Reverse Christmas tree. Please check the whole patch. > will be fixed > > +static inline void INIT_MT7530_HW_ENTRY(struct mt7530_hw_vlan_entry *e, > > + int port, bool untagged) > > +{ > > + e->port = port; > > + e->untagged = untagged; > > +} > > All CAPITAL letters is for #defines. This is just a normal > function. Please use lower case. > will be fixed > Andrew >