From: Andrew Lunn <andrew@lunn.ch>
To: Linus Walleij <linus.walleij@linaro.org>
Cc: Vivien Didelot <vivien.didelot@gmail.com>,
Florian Fainelli <f.fainelli@gmail.com>,
netdev@vger.kernel.org, DENG Qingfang <dqfext@gmail.com>,
Mauri Sandberg <sandberg@mailfence.com>
Subject: Re: [net-next PATCH 5/5 v2] net: dsa: rtl8366: Use top VLANs for default
Date: Thu, 18 Jun 2020 03:42:46 +0200 [thread overview]
Message-ID: <20200618014246.GF249144@lunn.ch> (raw)
In-Reply-To: <20200617083132.1847234-5-linus.walleij@linaro.org>
On Wed, Jun 17, 2020 at 10:31:32AM +0200, Linus Walleij wrote:
> The RTL8366 DSA switches will not work unless we set
> up a default VLAN for each port. We are currently using
> e.g. VLAN 1..6 for a 5-port switch as default VLANs.
>
> This is not very helpful for users, move it to allocate
> the top VLANs for default instead, for example on
> RTL8366RB there are 16 VLANs so instead of using
> VLAN 1..6 as default use VLAN 10..15 so VLAN 1
> thru VLAN 9 is available for users.
>
> Cc: DENG Qingfang <dqfext@gmail.com>
> Cc: Mauri Sandberg <sandberg@mailfence.com>
> Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
> ---
> ChangeLog v1->v2:
> - Rebase on v5.8-rc1.
> ---
> drivers/net/dsa/rtl8366.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/net/dsa/rtl8366.c b/drivers/net/dsa/rtl8366.c
> index 7f0691a6da13..4e7562b41598 100644
> --- a/drivers/net/dsa/rtl8366.c
> +++ b/drivers/net/dsa/rtl8366.c
> @@ -260,8 +260,8 @@ static int rtl8366_set_default_vlan_and_pvid(struct realtek_smi *smi,
> u16 vid;
> int ret;
>
> - /* This is the reserved default VLAN for this port */
> - vid = port + 1;
> + /* Use the top VLANs for per-port default VLAN */
> + vid = smi->num_vlan_mc - smi->num_ports + port;
Hi Linus
I've not looked at the whole driver much, but i'm surprised the change
is this small. Is there any checks when user space ask for a VLAN to
be added to a port to see if it is already in use an return -EBUSY or
-EINVAL or something?
Andrew
next prev parent reply other threads:[~2020-06-18 1:42 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-06-17 8:31 [net-next PATCH 1/5 v2] net: dsa: tag_rtl4_a: Implement Realtek 4 byte A tag Linus Walleij
2020-06-17 8:31 ` [net-next PATCH 2/5 v2] net: dsa: rtl8366rb: Support the CPU DSA tag Linus Walleij
2020-06-18 1:27 ` Andrew Lunn
2020-06-17 8:31 ` [net-next PATCH 3/5 v2] net: dsa: rtl8366: Split out default VLAN config Linus Walleij
2020-06-18 1:29 ` Andrew Lunn
2020-06-17 8:31 ` [net-next PATCH 4/5 v2] net: dsa: rtl8366: VLAN 0 as disable tagging Linus Walleij
2020-06-18 1:31 ` Andrew Lunn
2020-06-18 3:23 ` Florian Fainelli
2020-07-05 23:04 ` Linus Walleij
2020-06-17 8:31 ` [net-next PATCH 5/5 v2] net: dsa: rtl8366: Use top VLANs for default Linus Walleij
2020-06-18 1:42 ` Andrew Lunn [this message]
2020-06-18 1:25 ` [net-next PATCH 1/5 v2] net: dsa: tag_rtl4_a: Implement Realtek 4 byte A tag Andrew Lunn
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20200618014246.GF249144@lunn.ch \
--to=andrew@lunn.ch \
--cc=dqfext@gmail.com \
--cc=f.fainelli@gmail.com \
--cc=linus.walleij@linaro.org \
--cc=netdev@vger.kernel.org \
--cc=sandberg@mailfence.com \
--cc=vivien.didelot@gmail.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).