]> git.baikalelectronics.ru Git - kernel.git/commitdiff
Revert "net: dsa: b53: Fix valid setting for MDB entries"
authorRafał Miłecki <rafal@milecki.pl>
Wed, 7 Dec 2022 07:01:55 +0000 (08:01 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 14 Dec 2022 10:30:42 +0000 (11:30 +0100)
This reverts commit 344e6a2c1094ecf2147b6445915c1e70f42bea13.

Upstream commit was a fix for an overlook of setting "ent.is_valid"
twice after 2a15aa936298 ("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>
Acked-by: Florian Fainelli <f.fainelli@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/net/dsa/b53/b53_common.c

index 825d840cdb8c3bc1d052c20513a79622ec9a09b5..1458416f4f912bc6211bcd2a123ce60b52c3fd34 100644 (file)
@@ -1551,6 +1551,7 @@ static int b53_arl_op(struct b53_device *dev, int op, int port,
 
        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);