diff options
author | Alexander V. Chernikov <melifaro@FreeBSD.org> | 2021-04-24 23:05:04 +0000 |
---|---|---|
committer | Gordon Bergling <gbe@FreeBSD.org> | 2022-09-14 21:01:41 +0000 |
commit | 0ca1220443695c79849bf0807306d0864acbabb9 (patch) | |
tree | a306df44c71e4dd89f330f728c9922149e455834 | |
parent | c48d0754a05334cacbe6cd34871c10f3ef6f4d56 (diff) | |
download | src-0ca122044369.tar.gz src-0ca122044369.zip |
Add FIB_ALGO to GENERIC on amd64/arm64.
Option `FIB_ALGO` gates new modular fib lookup functionality,
enabling more performant routing table lookups and improving
control plane convergence under the load.
Detailed feature description is available in D27401.
Reviewed By: olivier, gnn
Differential Revision: https://reviews.freebsd.org/D28434
(cherry picked from commit 6993187a8c30e83a408aad631a8d8629d8273c9d)
-rw-r--r-- | sys/amd64/conf/GENERIC | 1 | ||||
-rw-r--r-- | sys/arm64/conf/GENERIC | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/sys/amd64/conf/GENERIC b/sys/amd64/conf/GENERIC index 0be9ed389b06..9a02a7127955 100644 --- a/sys/amd64/conf/GENERIC +++ b/sys/amd64/conf/GENERIC @@ -32,6 +32,7 @@ options INET # InterNETworking options INET6 # IPv6 communications protocols options IPSEC_SUPPORT # Allow kldload of ipsec and tcpmd5 options ROUTE_MPATH # Multipath routing support +options FIB_ALGO # Modular fib lookups options TCP_OFFLOAD # TCP offload options TCP_BLACKBOX # Enhanced TCP event logging options TCP_HHOOK # hhook(9) framework for TCP diff --git a/sys/arm64/conf/GENERIC b/sys/arm64/conf/GENERIC index ef5c2be54766..ceceb0e19c2e 100644 --- a/sys/arm64/conf/GENERIC +++ b/sys/arm64/conf/GENERIC @@ -32,6 +32,7 @@ options INET # InterNETworking options INET6 # IPv6 communications protocols options IPSEC_SUPPORT # Allow kldload of ipsec and tcpmd5 options ROUTE_MPATH # Multipath routing support +options FIB_ALGO # Modular fib lookups options TCP_OFFLOAD # TCP offload options TCP_HHOOK # hhook(9) framework for TCP options TCP_RFC7413 # TCP Fast Open |