The branch main has been updated by tuexen:

URL: 
https://cgit.FreeBSD.org/src/commit/?id=1bb72d3d6eee50232b6d6acbc201f9aaac93e2b5

commit 1bb72d3d6eee50232b6d6acbc201f9aaac93e2b5
Author:     Michael Tuexen <tue...@freebsd.org>
AuthorDate: 2025-09-16 21:30:40 +0000
Commit:     Michael Tuexen <tue...@freebsd.org>
CommitDate: 2025-09-16 21:30:40 +0000

    tcp: improve compilation of cc and their helper modules
    
    * Allow the congestion control modules CDG, CHD, HD, and vegas also
      to be compiled into the kernel for IPv6 only kernel configs.
    * Compile the helper module h_ertt for round trip time estimation only
      into the kernel, if one of the congestion control module using it
      (one of CDG, CDH, HD, or vegas) is also compiled into the kernel.
    Please note the second point implies that TCP TSO is done whenever
    possible as long as none of the congestion control modules CDG, CHD,
    HD, or vegas is loaded or compiled into the kernel.
    
    Reviewed by:            cc
    MFC after:              3 days
    Sponsored by:           Netflix, Inc.
    Differential Revision:  https://reviews.freebsd.org/D52547
---
 sys/conf/files | 18 +++++++++++++-----
 1 file changed, 13 insertions(+), 5 deletions(-)

diff --git a/sys/conf/files b/sys/conf/files
index 9661bafea8f9..db05a1424f00 100644
--- a/sys/conf/files
+++ b/sys/conf/files
@@ -4369,15 +4369,23 @@ netinet/cc/cc.c                 optional cc_newreno 
inet | cc_vegas inet | \
        cc_chd inet | cc_cdg inet | cc_newreno inet6 | cc_vegas inet6 | \
        cc_htcp inet6 | cc_hd inet6 |cc_dctcp inet6 | cc_cubic inet6 | \
        cc_chd inet6 | cc_cdg inet6
-netinet/cc/cc_cdg.c            optional inet cc_cdg tcp_hhook
-netinet/cc/cc_chd.c            optional inet cc_chd tcp_hhook
+netinet/cc/cc_cdg.c            optional inet cc_cdg tcp_hhook | \
+       inet6 cc_cdg tcp_hhook
+netinet/cc/cc_chd.c            optional inet cc_chd tcp_hhook | \
+       inet6 cc_chd tcp_hhook
 netinet/cc/cc_cubic.c          optional inet cc_cubic | inet6 cc_cubic
 netinet/cc/cc_dctcp.c          optional inet cc_dctcp | inet6 cc_dctcp
-netinet/cc/cc_hd.c             optional inet cc_hd tcp_hhook
+netinet/cc/cc_hd.c             optional inet cc_hd tcp_hhook | \
+       inet6 cc_hd tcp_hhook
 netinet/cc/cc_htcp.c           optional inet cc_htcp | inet6 cc_htcp
 netinet/cc/cc_newreno.c                optional inet cc_newreno | inet6 
cc_newreno
-netinet/cc/cc_vegas.c          optional inet cc_vegas tcp_hhook
-netinet/khelp/h_ertt.c         optional inet tcp_hhook
+netinet/cc/cc_vegas.c          optional inet cc_vegas tcp_hhook | \
+       inet6 cc_vegas tcp_hhook
+netinet/khelp/h_ertt.c         optional inet tcp_hhook cc_cdg | \
+       inet tcp_hhook cc_chd | inet tcp_hhook cc_hd | \
+       inet tcp_hhook cc_vegas | inet6 tcp_hhook cc_cdg | \
+       inet6 tcp_hhook cc_chd | inet6 tcp_hhook cc_hd | \
+       inet6 tcp_hhook cc_vegas
 netinet/sctp_asconf.c          optional inet sctp | inet6 sctp
 netinet/sctp_auth.c            optional inet sctp | inet6 sctp
 netinet/sctp_bsd_addr.c                optional inet sctp | inet6 sctp

Reply via email to