svn commit: r332774 - head/sys/netinet
Randall Stewart
rrs at FreeBSD.org
Thu Apr 19 15:03:54 UTC 2018
Author: rrs
Date: Thu Apr 19 15:03:48 2018
New Revision: 332774
URL: https://svnweb.freebsd.org/changeset/base/332774
Log:
These two modules need the tcp_hpts.h file for
when the option is enabled (not sure how LINT/build-universe
missed this) opps.
Sponsored by: Netflix Inc
Modified:
head/sys/netinet/tcp_subr.c
head/sys/netinet/tcp_usrreq.c
Modified: head/sys/netinet/tcp_subr.c
==============================================================================
--- head/sys/netinet/tcp_subr.c Thu Apr 19 15:02:53 2018 (r332773)
+++ head/sys/netinet/tcp_subr.c Thu Apr 19 15:03:48 2018 (r332774)
@@ -99,6 +99,7 @@ __FBSDID("$FreeBSD$");
#include <netinet/tcp_var.h>
#include <netinet/tcp_log_buf.h>
#include <netinet/tcp_syncache.h>
+#include <netinet/tcp_hpts.h>
#include <netinet/cc/cc.h>
#ifdef INET6
#include <netinet6/tcp6_var.h>
Modified: head/sys/netinet/tcp_usrreq.c
==============================================================================
--- head/sys/netinet/tcp_usrreq.c Thu Apr 19 15:02:53 2018 (r332773)
+++ head/sys/netinet/tcp_usrreq.c Thu Apr 19 15:03:48 2018 (r332774)
@@ -94,6 +94,7 @@ __FBSDID("$FreeBSD$");
#include <netinet/tcpip.h>
#include <netinet/cc/cc.h>
#include <netinet/tcp_fastopen.h>
+#include <netinet/tcp_hpts.h>
#ifdef TCPPCAP
#include <netinet/tcp_pcap.h>
#endif
More information about the svn-src-head
mailing list