Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 13 Oct 2016 18:02:30 +0000 (UTC)
From:      Gleb Smirnoff <glebius@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r307226 - head/sys/netinet/tcp_stacks
Message-ID:  <201610131802.u9DI2UQi058839@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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>



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201610131802.u9DI2UQi058839>