mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-03 17:04:50 -04:00
Merge branch 'ndo_dflt_fdb-print'
Vladimir Oltean says:
====================
Trivial print improvements in ndo_dflt_fdb_{add,del}
These are some changes brought to the informational messages printed in
the default .ndo_fdb_add and .ndo_fdb_del method implementations.
====================
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
@@ -3947,12 +3947,12 @@ int ndo_dflt_fdb_add(struct ndmsg *ndm,
|
||||
* implement its own handler for this.
|
||||
*/
|
||||
if (ndm->ndm_state && !(ndm->ndm_state & NUD_PERMANENT)) {
|
||||
pr_info("%s: FDB only supports static addresses\n", dev->name);
|
||||
netdev_info(dev, "default FDB implementation only supports local addresses\n");
|
||||
return err;
|
||||
}
|
||||
|
||||
if (vid) {
|
||||
pr_info("%s: vlans aren't supported yet for dev_uc|mc_add()\n", dev->name);
|
||||
netdev_info(dev, "vlans aren't supported yet for dev_uc|mc_add()\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)) {
|
||||
pr_info("%s: FDB only supports static addresses\n", dev->name);
|
||||
netdev_info(dev, "default FDB implementation only supports local addresses\n");
|
||||
return err;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user