svn commit: r313394 - head/sys/kern

Emmanuel Vadot manu at FreeBSD.org
Tue Feb 7 17:31:25 UTC 2017


Author: manu
Date: Tue Feb  7 17:31:24 2017
New Revision: 313394
URL: https://svnweb.freebsd.org/changeset/base/313394

Log:
  subr_sfbus.c need sys/proc.h for struct thread definition.
  This fixes kernel build for armv6.
  
  Discussed with: kib

Modified:
  head/sys/kern/subr_sfbuf.c

Modified: head/sys/kern/subr_sfbuf.c
==============================================================================
--- head/sys/kern/subr_sfbuf.c	Tue Feb  7 17:15:13 2017	(r313393)
+++ head/sys/kern/subr_sfbuf.c	Tue Feb  7 17:31:24 2017	(r313394)
@@ -33,6 +33,7 @@ __FBSDID("$FreeBSD$");
 #include <sys/lock.h>
 #include <sys/malloc.h>
 #include <sys/mutex.h>
+#include <sys/proc.h>
 #include <sys/sf_buf.h>
 #include <sys/smp.h>
 #include <sys/sysctl.h>


More information about the svn-src-head mailing list