From 6993187a8c30e83a408aad631a8d8629d8273c9d Mon Sep 17 00:00:00 2001 From: "Alexander V. Chernikov" Date: Sat, 24 Apr 2021 23:05:04 +0000 Subject: [PATCH] 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 --- sys/amd64/conf/GENERIC | 1 + sys/arm64/conf/GENERIC | 1 + 2 files changed, 2 insertions(+) diff --git a/sys/amd64/conf/GENERIC b/sys/amd64/conf/GENERIC index f5f4bdf49c5f..bb7299a60382 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 cf137417fbc5..430ba8a4a45f 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