]> git.ipfire.org Git - thirdparty/iproute2.git/commit
man8/bridge.8: fix which one of self/master is default for "bridge fdb"
authorVladimir Oltean <vladimir.oltean@nxp.com>
Thu, 11 Feb 2021 10:45:00 +0000 (12:45 +0200)
committerStephen Hemminger <stephen@networkplumber.org>
Mon, 22 Feb 2021 19:19:38 +0000 (11:19 -0800)
commitb64ceb687db6ee4a28d23a9a046646ced1623d39
tree66ae103b74449a9d7b335dcbac599f9dc658601f
parent10130bfafe8a7e679ecf3911fdec0111ffa51f01
man8/bridge.8: fix which one of self/master is default for "bridge fdb"

The bridge program does:

fdb_modify:
/* Assume self */
if (!(req.ndm.ndm_flags&(NTF_SELF|NTF_MASTER)))
req.ndm.ndm_flags |= NTF_SELF;

which is clearly against the documented behavior. The only thing we can
do, sadly, is update the documentation.

Signed-off-by: Vladimir Oltean <vladimir.oltean@nxp.com>
Signed-off-by: Stephen Hemminger <stephen@networkplumber.org>
man/man8/bridge.8