svn commit: r307226 - head/sys/netinet/tcp_stacks

Gleb Smirnoff glebius at FreeBSD.org
Thu Oct 13 18:02:31 UTC 2016


Author: glebius
Date: Thu Oct 13 18:02:29 2016
New Revision: 307226
URL: https://svnweb.freebsd.org/changeset/base/307226

Log:
  With build without TCP_HHOOK and with INVARIANTS.  Before mutex.h came
  via sys/hhook.h -> sys/rmlock.h -> sys/mutex.h.

Modified:
  head/sys/netinet/tcp_stacks/fastpath.c

Modified: head/sys/netinet/tcp_stacks/fastpath.c
==============================================================================
--- head/sys/netinet/tcp_stacks/fastpath.c	Thu Oct 13 17:16:32 2016	(r307225)
+++ head/sys/netinet/tcp_stacks/fastpath.c	Thu Oct 13 18:02:29 2016	(r307226)
@@ -60,7 +60,9 @@ __FBSDID("$FreeBSD$");
 #include "opt_tcpdebug.h"
 
 #include <sys/param.h>
+#include <sys/lock.h>
 #include <sys/module.h>
+#include <sys/mutex.h>
 #include <sys/kernel.h>
 #ifdef TCP_HHOOK
 #include <sys/hhook.h>


More information about the svn-src-all mailing list