mirror of
https://github.com/openwrt/openwrt.git
synced 2025-01-06 05:54:25 +00:00
32 lines
1.0 KiB
Diff
32 lines
1.0 KiB
Diff
|
From: =?UTF-8?q?Rafa=C5=82=20Mi=C5=82ecki?= <rafal@milecki.pl>
|
||
|
Date: Wed, 7 Dec 2022 07:57:58 +0100
|
||
|
Subject: [PATCH] Revert "net: dsa: b53: Fix valid setting for MDB entries"
|
||
|
MIME-Version: 1.0
|
||
|
Content-Type: text/plain; charset=UTF-8
|
||
|
Content-Transfer-Encoding: 8bit
|
||
|
|
||
|
This reverts commit 1fae6eb0fc91d3ecb539e03f9e4dcd1c53ada553.
|
||
|
|
||
|
Upstream commit was a fix for an overlook of setting "ent.is_valid"
|
||
|
twice after 5d65b64a3d97 ("net: dsa: b53: Add support for MDB").
|
||
|
|
||
|
Since MDB support was not backported to stable kernels (it's not a bug
|
||
|
fix) there is nothing to fix there. Backporting this commit resulted in
|
||
|
"env.is_valid" not being set at all.
|
||
|
|
||
|
Signed-off-by: Rafał Miłecki <rafal@milecki.pl>
|
||
|
---
|
||
|
drivers/net/dsa/b53/b53_common.c | 1 +
|
||
|
1 file changed, 1 insertion(+)
|
||
|
|
||
|
--- a/drivers/net/dsa/b53/b53_common.c
|
||
|
+++ b/drivers/net/dsa/b53/b53_common.c
|
||
|
@@ -1551,6 +1551,7 @@ static int b53_arl_op(struct b53_device
|
||
|
|
||
|
memset(&ent, 0, sizeof(ent));
|
||
|
ent.port = port;
|
||
|
+ ent.is_valid = is_valid;
|
||
|
ent.vid = vid;
|
||
|
ent.is_static = true;
|
||
|
memcpy(ent.mac, addr, ETH_ALEN);
|