net: say "local" instead of "static" addresses in ndo_dflt_fdb_{add,del}
authorVladimir Oltean <vladimir.oltean@nxp.com>
Tue, 29 Jun 2021 00:29:26 +0000 (03:29 +0300)
committerDavid S. Miller <davem@davemloft.net>
Tue, 29 Jun 2021 18:31:57 +0000 (11:31 -0700)
"Static" is a loaded word, and probably not what the author meant when
the code was written.

In particular, this looks weird:
$ bridge fdb add dev swp0 00:01:02:03:04:05 local        # totally fine, but
$ bridge fdb add dev swp0 00:01:02:03:04:05 static
[ 2020.708298] swp0: FDB only supports static addresses  # hmm what?

By looking at the implementation which uses dev_uc_add/dev_uc_del it is
absolutely clear that only local addresses are supported, and the proper
Network Unreachability Detection state is being used for this purpose
(user space indeed sets NUD_PERMANENT when local addresses are meant).
So it is just the message that is wrong, fix it.

Signed-off-by: Vladimir Oltean <vladimir.oltean@nxp.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/core/rtnetlink.c

index ab11c9d..f6af3e7 100644 (file)
@@ -3947,7 +3947,7 @@ int ndo_dflt_fdb_add(struct ndmsg *ndm,
         * implement its own handler for this.
         */
        if (ndm->ndm_state && !(ndm->ndm_state & NUD_PERMANENT)) {
-               netdev_info(dev, "FDB only supports static addresses\n");
+               netdev_info(dev, "default FDB implementation only supports local addresses\n");
                return err;
        }
 
@@ -4086,7 +4086,7 @@ int ndo_dflt_fdb_del(struct ndmsg *ndm,
         * implement its own handler for this.
         */
        if (!(ndm->ndm_state & NUD_PERMANENT)) {
-               netdev_info(dev, "FDB only supports static addresses\n");
+               netdev_info(dev, "default FDB implementation only supports local addresses\n");
                return err;
        }