git: a66a3994aa50 - main - cc: Add opt_kern_tls.h to all congestion modules
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Tue, 05 Apr 2022 19:56:01 UTC
The branch main has been updated by imp: URL: https://cgit.FreeBSD.org/src/commit/?id=a66a3994aa50c9290881de9883b2844f45d45450 commit a66a3994aa50c9290881de9883b2844f45d45450 Author: Warner Losh <imp@FreeBSD.org> AuthorDate: 2022-04-05 19:42:55 +0000 Commit: Warner Losh <imp@FreeBSD.org> CommitDate: 2022-04-05 19:52:55 +0000 cc: Add opt_kern_tls.h to all congestion modules All congestion controll modules need opt_kern_tls.h, make sure it's listed everywhere. Sponsored by: Netflix --- sys/modules/cc/cc_cubic/Makefile | 2 +- sys/modules/cc/cc_newreno/Makefile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/modules/cc/cc_cubic/Makefile b/sys/modules/cc/cc_cubic/Makefile index e56848cb11a8..8b91b4dd3864 100644 --- a/sys/modules/cc/cc_cubic/Makefile +++ b/sys/modules/cc/cc_cubic/Makefile @@ -2,6 +2,6 @@ .PATH: ${SRCTOP}/sys/netinet/cc KMOD= cc_cubic -SRCS= cc_cubic.c +SRCS= cc_cubic.c opt_kern_tls.h .include <bsd.kmod.mk> diff --git a/sys/modules/cc/cc_newreno/Makefile b/sys/modules/cc/cc_newreno/Makefile index 8d9b82ad2a9e..39e91237be2b 100644 --- a/sys/modules/cc/cc_newreno/Makefile +++ b/sys/modules/cc/cc_newreno/Makefile @@ -2,6 +2,6 @@ .PATH: ${SRCTOP}/sys/netinet/cc KMOD= cc_newreno -SRCS= cc_newreno.c +SRCS= cc_newreno.c opt_kern_tls.h .include <bsd.kmod.mk>