The branch main has been updated by zec: URL: https://cgit.FreeBSD.org/src/commit/?id=b1b0fb3dcf00dd999fa2635ab0124d01e74ae551
commit b1b0fb3dcf00dd999fa2635ab0124d01e74ae551 Author: Marko Zec <[email protected]> AuthorDate: 2025-11-25 18:18:37 +0000 Commit: Marko Zec <[email protected]> CommitDate: 2025-11-25 18:26:14 +0000 fib_algo: add FIB_ALGO to GENERIC kernel config on riscv FIB_ALGO modular FIB lookups have been enabled by default on amd64 and arm64 since 2021, so enable it on riscv as well. Reviewed by: melifaro MFC after: 1 month --- sys/riscv/conf/GENERIC | 1 + 1 file changed, 1 insertion(+) diff --git a/sys/riscv/conf/GENERIC b/sys/riscv/conf/GENERIC index 36e3fcd41970..b645cd3499cb 100644 --- a/sys/riscv/conf/GENERIC +++ b/sys/riscv/conf/GENERIC @@ -31,6 +31,7 @@ options INET6 # IPv6 communications protocols options TCP_HHOOK # hhook(9) framework for TCP 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_RFC7413 # TCP Fast Open
