The branch main has been updated by tuexen:

URL: 
https://cgit.FreeBSD.org/src/commit/?id=1985940204dc01d4524c6351ab25a182bfde23ae

commit 1985940204dc01d4524c6351ab25a182bfde23ae
Author:     Michael Tuexen <[email protected]>
AuthorDate: 2025-10-14 23:36:54 +0000
Commit:     Michael Tuexen <[email protected]>
CommitDate: 2025-10-14 23:36:54 +0000

    conf: enable TCP_HPTS_KTEST on debug builds
    
    Enable the kernel build option TCP_HPTS_KTEST on debug builds and
    disable it on non-debug builds.
    
    PR:                     290234
    Reviewed by:            Nick Banks, glebius
    Sponsored by:           Netflix, Inc.
    Differential Revision:  https://reviews.freebsd.org/D53108
---
 sys/conf/std.debug   | 1 +
 sys/conf/std.nodebug | 1 +
 2 files changed, 2 insertions(+)

diff --git a/sys/conf/std.debug b/sys/conf/std.debug
index f5ed5582c78d..0149779b3e5c 100644
--- a/sys/conf/std.debug
+++ b/sys/conf/std.debug
@@ -16,3 +16,4 @@ options       MALLOC_DEBUG_MAXZONES=8 # Separate malloc(9) 
zones
 options        VERBOSE_SYSINIT=0       # Support debug.verbose_sysinit, off by 
default
 options                ALT_BREAK_TO_DEBUGGER   # Enter debugger on keyboard 
escape sequence
 options                KDTRACE_MIB_SDT         # Add SDT probes to network 
counters
+options        TCP_HPTS_KTEST          # Add KTEST support for HPTS
diff --git a/sys/conf/std.nodebug b/sys/conf/std.nodebug
index 4035e28d2a62..79676a1d618f 100644
--- a/sys/conf/std.nodebug
+++ b/sys/conf/std.nodebug
@@ -16,6 +16,7 @@ nooptions     KCOV
 nooptions      MALLOC_DEBUG_MAXZONES
 nooptions      QUEUE_MACRO_DEBUG_TRASH
 nooptions      KDTRACE_MIB_SDT
+nooptions      TCP_HPTS_KTEST
 
 # Net80211 debugging
 nooptions      IEEE80211_DEBUG

Reply via email to