aboutsummaryrefslogtreecommitdiff
path: root/sys/modules/cc
diff options
context:
space:
mode:
authorRandall Stewart <rrs@FreeBSD.org>2021-11-11 11:28:18 +0000
committerRandall Stewart <rrs@FreeBSD.org>2021-11-11 11:28:18 +0000
commitb8d60729deefa0bd13e6a395fcab4928e6e10445 (patch)
tree6cd9ef77da1a4ac9c90a1ce045fdb038f704d645 /sys/modules/cc
parent7e3c4b09a09ee7317d215f81c2a95eb0acbf8fde (diff)
Diffstat (limited to 'sys/modules/cc')
-rw-r--r--sys/modules/cc/Makefile3
-rw-r--r--sys/modules/cc/cc_newreno/Makefile7
2 files changed, 9 insertions, 1 deletions
diff --git a/sys/modules/cc/Makefile b/sys/modules/cc/Makefile
index ec89d89e8c80..3f7110024722 100644
--- a/sys/modules/cc/Makefile
+++ b/sys/modules/cc/Makefile
@@ -1,6 +1,7 @@
# $FreeBSD$
-SUBDIR= cc_cubic \
+SUBDIR= cc_newreno \
+ cc_cubic \
cc_dctcp \
cc_htcp
diff --git a/sys/modules/cc/cc_newreno/Makefile b/sys/modules/cc/cc_newreno/Makefile
new file mode 100644
index 000000000000..8d9b82ad2a9e
--- /dev/null
+++ b/sys/modules/cc/cc_newreno/Makefile
@@ -0,0 +1,7 @@
+# $FreeBSD$
+
+.PATH: ${SRCTOP}/sys/netinet/cc
+KMOD= cc_newreno
+SRCS= cc_newreno.c
+
+.include <bsd.kmod.mk>