aboutsummaryrefslogtreecommitdiff
path: root/UPDATING
diff options
context:
space:
mode:
authorAlexander V. Chernikov <melifaro@FreeBSD.org>2020-11-08 18:27:49 +0000
committerAlexander V. Chernikov <melifaro@FreeBSD.org>2020-11-08 18:27:49 +0000
commit2d39824195933c173bbfc9b31773070202d2e30e (patch)
treec933c105d73ffdf6ab76618f9f1a313c2e4da0a3 /UPDATING
parent76e6b37f6be3a6586658a2d08f0eef385f11e109 (diff)
downloadsrc-2d39824195933c173bbfc9b31773070202d2e30e.tar.gz
src-2d39824195933c173bbfc9b31773070202d2e30e.zip
Switch net.add_addr_allfibs default to 0.
The goal of the fib support is to provide multiple independent routing tables, isolated from each other. net.add_addr_allfibs default tries to shift gears in the opposite direction, unconditionally inserting all addresses to all of the fibs. There are use cases when this is necessary, however this is not a default expected behaviour, especially compared to other implementations. Provide WARNING message for the setups with multiple fibs to notify potential users of the feature. Differential Revision: https://reviews.freebsd.org/D26076
Notes
Notes: svn path=/head/; revision=367491
Diffstat (limited to 'UPDATING')
-rw-r--r--UPDATING4
1 files changed, 4 insertions, 0 deletions
diff --git a/UPDATING b/UPDATING
index 635cbab47dc7..28460b14476b 100644
--- a/UPDATING
+++ b/UPDATING
@@ -26,6 +26,10 @@ NOTE TO PEOPLE WHO THINK THAT FreeBSD 13.x IS SLOW:
world, or to merely disable the most expensive debugging functionality
at runtime, run "ln -s 'abort:false,junk:false' /etc/malloc.conf".)
+20201108:
+ Default value of net.add_addr_allfibs has been changed to 0.
+ If you have multi-fib configuration and rely on existence of all
+ interface routes in every fib, you need to set the above sysctl to 1.
20201030:
The internal pre-processor in the calendar(1) program has been
extended to support more C pre-processor commands (e.g. #ifdef, #else,