svn commit: r324081 - head/sys/netgraph

Eugene Grosbein eugen at FreeBSD.org
Thu Sep 28 11:26:39 UTC 2017


Author: eugen (ports committer)
Date: Thu Sep 28 11:26:37 2017
New Revision: 324081
URL: https://svnweb.freebsd.org/changeset/base/324081

Log:
  Correction after r323873: #include <sys/lock.h> in addition to <sys/rmlock.h>
  
  PR:		220076
  Approved by:	mav (mentor)
  MFC after:	3 days

Modified:
  head/sys/netgraph/ng_iface.c

Modified: head/sys/netgraph/ng_iface.c
==============================================================================
--- head/sys/netgraph/ng_iface.c	Thu Sep 28 09:01:28 2017	(r324080)
+++ head/sys/netgraph/ng_iface.c	Thu Sep 28 11:26:37 2017	(r324081)
@@ -59,6 +59,7 @@
 #include <sys/systm.h>
 #include <sys/errno.h>
 #include <sys/kernel.h>
+#include <sys/lock.h>
 #include <sys/malloc.h>
 #include <sys/mbuf.h>
 #include <sys/errno.h>


More information about the svn-src-all mailing list