Re: [PATCH net-next] net: dsa: mt7530: manually set up VLAN ID 0

From: DENG Qingfang
Date: Tue Aug 24 2021 - 13:57:34 EST


On Tue, Aug 24, 2021 at 07:57:42PM +0300, Vladimir Oltean wrote:
> I understand that this is how you noticed the issue, but please remember
> that one can always compile a kernel with CONFIG_VLAN_8021Q=n. So the
> issue predates my patch by much longer. You might reconsider the Fixes:
> tag in light of this, maybe the patch needs to be sent to stable.

Okay. So the Fixes tag should be 6087175b7991, which initially adds the
software fallback support for mt7530.

>
> > +static int
> > +mt7530_setup_vlan0(struct mt7530_priv *priv)
> > +{
> > + u32 val;
> > +
> > + /* Validate the entry with independent learning, keep the original
> > + * ingress tag attribute.
> > + */
> > + val = IVL_MAC | EG_CON | PORT_MEM(MT7530_ALL_MEMBERS) | FID(FID_BRIDGED) |
>
> FID_BRIDGED?

What's wrong with that?

>
> > + VLAN_VALID;
> > + mt7530_write(priv, MT7530_VAWD1, val);
> > +
> > + return mt7530_vlan_cmd(priv, MT7530_VTCR_WR_VID, 0);
> > +}
>