From: Eric Woudstra <redacted>
According to reference guides mt7530 (mt7620) and mt7531:
NOTE: When IVL is reset, MAC[47:0] and FID[2:0] will be used to
read/write the address table. When IVL is set, MAC[47:0] and CVID[11:0]
will be used to read/write the address table.
Since the function only fills in CVID and no FID, we need to set the
IVL bit. The existing code does not set it.
This is a fix for the issue I dropped here earlier:
http://lists.infradead.org/pipermail/linux-mediatek/2021-June/025697.html
With this patch, it is now possible to delete the 'self' fdb entry
manually. However, wifi roaming still has the same issue, the entry
does not get deleted automatically. Wifi roaming also needs a fix
somewhere else to function correctly in combination with vlan.
Signed-off-by: Eric Woudstra <redacted>
---
drivers/net/dsa/mt7530.c | 1 +
drivers/net/dsa/mt7530.h | 1 +
2 files changed, 2 insertions(+)
Hello:
This patch was applied to netdev/net.git (refs/heads/master):
On Fri, 16 Jul 2021 17:36:39 +0200 you wrote:
From: Eric Woudstra <redacted>
According to reference guides mt7530 (mt7620) and mt7531:
NOTE: When IVL is reset, MAC[47:0] and FID[2:0] will be used to
read/write the address table. When IVL is set, MAC[47:0] and CVID[11:0]
will be used to read/write the address table.
[...]
From: Vladimir Oltean <olteanv@gmail.com> Date: 2021-07-16 21:07:03
On Fri, Jul 16, 2021 at 05:36:39PM +0200, ericwouds@gmail.com wrote:
quoted hunk
From: Eric Woudstra <redacted>
According to reference guides mt7530 (mt7620) and mt7531:
NOTE: When IVL is reset, MAC[47:0] and FID[2:0] will be used to
read/write the address table. When IVL is set, MAC[47:0] and CVID[11:0]
will be used to read/write the address table.
Since the function only fills in CVID and no FID, we need to set the
IVL bit. The existing code does not set it.
This is a fix for the issue I dropped here earlier:
http://lists.infradead.org/pipermail/linux-mediatek/2021-June/025697.html
With this patch, it is now possible to delete the 'self' fdb entry
manually. However, wifi roaming still has the same issue, the entry
does not get deleted automatically. Wifi roaming also needs a fix
somewhere else to function correctly in combination with vlan.
Signed-off-by: Eric Woudstra <redacted>
---
drivers/net/dsa/mt7530.c | 1 +
drivers/net/dsa/mt7530.h | 1 +
2 files changed, 2 insertions(+)
Can VLAN-unaware FDB entries still be manipulated successfully after
this patch, since it changes 'fid 0' to be interpreted as 'vid 0'?
What is your problem with roaming exactly? Have you tried to disable
hardware address learning on the CPU port and set
ds->assisted_learning_on_cpu_port = true for mt7530?
Please note that since kernel v5.14, raw 'self' entries can no longer be
managed directly using 'bridge fdb', you need to use 'master static' and
go through the bridge:
https://www.kernel.org/doc/html/latest/networking/dsa/configuration.html#forwarding-database-fdb-management
You will need to update your 'bridgefdbd' program, if it proves to be at
all necessary to achieve what you want.
_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
From: Eric Woudstra <hidden> Date: 2021-07-17 08:10:01
You are right now there is a problem with vlan unaware bridge.
We need to change the line to:
if (vid > 1) reg[1] |= ATA2_IVL;
I have just tested this with a vlan unaware bridge and also with vlan bridge option disabled in the kernel. Only after applying the if statement it works for vlan unaware bridges/kernel.
On Jul 16, 2021, 11:06 PM, at 11:06 PM, Vladimir Oltean [off-list ref] wrote:
On Fri, Jul 16, 2021 at 05:36:39PM +0200, ericwouds@gmail.com wrote:
quoted
From: Eric Woudstra <redacted>
According to reference guides mt7530 (mt7620) and mt7531:
NOTE: When IVL is reset, MAC[47:0] and FID[2:0] will be used to
read/write the address table. When IVL is set, MAC[47:0] and
CVID[11:0]
quoted
will be used to read/write the address table.
Since the function only fills in CVID and no FID, we need to set the
IVL bit. The existing code does not set it.
This is a fix for the issue I dropped here earlier:
With this patch, it is now possible to delete the 'self' fdb entry
manually. However, wifi roaming still has the same issue, the entry
does not get deleted automatically. Wifi roaming also needs a fix
somewhere else to function correctly in combination with vlan.
Signed-off-by: Eric Woudstra <redacted>
---
drivers/net/dsa/mt7530.c | 1 +
drivers/net/dsa/mt7530.h | 1 +
2 files changed, 2 insertions(+)
Can VLAN-unaware FDB entries still be manipulated successfully after
this patch, since it changes 'fid 0' to be interpreted as 'vid 0'?
What is your problem with roaming exactly? Have you tried to disable
hardware address learning on the CPU port and set
ds->assisted_learning_on_cpu_port = true for mt7530?
Please note that since kernel v5.14, raw 'self' entries can no longer
be
managed directly using 'bridge fdb', you need to use 'master static'
and
go through the bridge:
https://www.kernel.org/doc/html/latest/networking/dsa/configuration.html#forwarding-database-fdb-management
You will need to update your 'bridgefdbd' program, if it proves to be
at
all necessary to achieve what you want.
From: Vladimir Oltean <olteanv@gmail.com> Date: 2021-07-17 13:02:12
On Sat, Jul 17, 2021 at 10:09:53AM +0200, Eric Woudstra wrote:
You are right now there is a problem with vlan unaware bridge.
We need to change the line to:
if (vid > 1) reg[1] |= ATA2_IVL;
I have just tested this with a vlan unaware bridge and also with vlan
bridge option disabled in the kernel. Only after applying the if
statement it works for vlan unaware bridges/kernel.
Ok, make sure to read Documentation/process/submitting-patches.rst for
how to add a Fixes: tag to your patch, Documentation/networking/netdev-FAQ.rst
for how to set the subject-prefix to "PATCH net" in your git-send-email command,
and send a fixup patch.
_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
From: DENG Qingfang <dqfext@gmail.com> Date: 2021-07-17 15:41:46
On Sat, Jul 17, 2021 at 10:09:53AM +0200, Eric Woudstra wrote:
You are right now there is a problem with vlan unaware bridge.
We need to change the line to:
if (vid > 1) reg[1] |= ATA2_IVL;
Does it not work with vid 1?
I have just tested this with a vlan unaware bridge and also with vlan bridge option disabled in the kernel. Only after applying the if statement it works for vlan unaware bridges/kernel.
From: Eric Woudstra <hidden> Date: 2021-07-17 19:28:20
On Sat 17 jul. 2021 at 17:41, DENG Qingfang [off-list ref]: wrote:
On Sat, Jul 17, 2021 at 10:09:53AM +0200, Eric Woudstra wrote:
quoted
You are right now there is a problem with vlan unaware bridge.
We need to change the line to:
if (vid > 1) reg[1] |= ATA2_IVL;
Does it not work with vid 1?
No, I also thought so, but it actually does not. I'm working here on
5.12.11, but there should not be any difference. It needs: if (vid >
1). Just tried it with (vid > 0) but then it does not work.
I really like your fix on wifi roaming, it works nicely. However I
found, still after this patch, it sadly does not work on vlan > 1. At
least it does not on 5.12.11 (the 'self' entry does not get removed
automatically, but after manual remove the client connects ok). I need
to go 5.14 one of these days because I just read DSA has a major
update. Then I also move from ubuntu focal to a more recent version.
Then I'll try wifi roaming on vlan again.
quoted
I have just tested this with a vlan unaware bridge and also with vlan bridge option disabled in the kernel. Only after applying the if statement it works for vlan unaware bridges/kernel.