git: 6993187a8c30 - main - Add FIB_ALGO to GENERIC on amd64/arm64.

Alexander V. Chernikov melifaro at FreeBSD.org
Sat Apr 24 23:25:25 UTC 2021


The branch main has been updated by melifaro:

URL: https://cgit.FreeBSD.org/src/commit/?id=6993187a8c30e83a408aad631a8d8629d8273c9d

commit 6993187a8c30e83a408aad631a8d8629d8273c9d
Author:     Alexander V. Chernikov <melifaro at FreeBSD.org>
AuthorDate: 2021-04-24 23:05:04 +0000
Commit:     Alexander V. Chernikov <melifaro at FreeBSD.org>
CommitDate: 2021-04-24 23:22:58 +0000

    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


More information about the dev-commits-src-all mailing list