mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
hpts: install kernel module
It is important to instantly load tcp_rack.ko and tcp_bbr.ko Reviewed by: tuexen, imp Differential Revision: https://reviews.freebsd.org/D42697 (cherry picked from commit f9030650185622d7cf8a7c81c4b3a3763539de24)
This commit is contained in:
parent
56a55eee6b
commit
4a32d60207
2 changed files with 8 additions and 4 deletions
|
|
@ -1,15 +1,13 @@
|
|||
#
|
||||
#
|
||||
|
||||
.include <kmod.opts.mk>
|
||||
|
||||
SUBDIR= \
|
||||
SUBDIR= ${_hpts} \
|
||||
${_tcp_bbr} \
|
||||
${_tcp_rack} \
|
||||
${_tcpmd5} \
|
||||
|
||||
.if (${MK_INET_SUPPORT} != "no" || ${MK_INET6_SUPPORT} != "no") || \
|
||||
defined(ALL_MODULES)
|
||||
_hpts= hpts
|
||||
_tcp_bbr= bbr
|
||||
_tcp_rack= rack
|
||||
.if ${KERN_OPTS:MIPSEC_SUPPORT} && !${KERN_OPTS:MTCP_SIGNATURE}
|
||||
|
|
|
|||
6
sys/modules/tcp/hpts/Makefile
Normal file
6
sys/modules/tcp/hpts/Makefile
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
.PATH: ${SRCTOP}/sys/netinet
|
||||
|
||||
KMOD= tcphpts
|
||||
SRCS= tcp_hpts.c opt_inet.h opt_inet6.h opt_rss.h device_if.h bus_if.h
|
||||
|
||||
.include <bsd.kmod.mk>
|
||||
Loading…
Reference in a new issue