net: dsa: mv88e6xxx: Avoid useless attempts to fast-age LAGs
authorTobias Waldekranz <tobias@waldekranz.com>
Thu, 18 Mar 2021 19:25:34 +0000 (20:25 +0100)
committerDavid S. Miller <davem@davemloft.net>
Thu, 18 Mar 2021 23:24:06 +0000 (16:24 -0700)
When a port is a part of a LAG, the ATU will create dynamic entries
belonging to the LAG ID when learning is enabled. So trying to
fast-age those out using the constituent port will have no
effect. Unfortunately the hardware does not support move operations on
LAGs so there is no obvious way to transform the request to target the
LAG instead.

Instead we document this known limitation and at least avoid wasting
any time on it.

Signed-off-by: Tobias Waldekranz <tobias@waldekranz.com>
Reviewed-by: Vladimir Oltean <olteanv@gmail.com>
Reviewed-by: Florian Fainelli <f.fainelli@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/dsa/mv88e6xxx/chip.c

index f0a9423af85dd69dbf0a683aa4d4df2a6e2efb0e..ed38b4431d7400b407b557dd3c452ca2186bfa38 100644 (file)
@@ -1479,6 +1479,13 @@ static void mv88e6xxx_port_fast_age(struct dsa_switch *ds, int port)
        struct mv88e6xxx_chip *chip = ds->priv;
        int err;
 
+       if (dsa_to_port(ds, port)->lag_dev)
+               /* Hardware is incapable of fast-aging a LAG through a
+                * regular ATU move operation. Until we have something
+                * more fancy in place this is a no-op.
+                */
+               return;
+
        mv88e6xxx_reg_lock(chip);
        err = mv88e6xxx_g1_atu_remove(chip, 0, port, false);
        mv88e6xxx_reg_unlock(chip);