svn commit: r295231 - in head/sys: arm64/arm64 mips/mips powerpc/powerpc riscv/riscv

Gleb Smirnoff glebius at FreeBSD.org
Thu Feb 4 03:55:43 UTC 2016


Author: glebius
Date: Thu Feb  4 03:55:41 2016
New Revision: 295231
URL: https://svnweb.freebsd.org/changeset/base/295231

Log:
  Fix build.

Modified:
  head/sys/arm64/arm64/uma_machdep.c
  head/sys/mips/mips/uma_machdep.c
  head/sys/powerpc/powerpc/uma_machdep.c
  head/sys/riscv/riscv/uma_machdep.c

Modified: head/sys/arm64/arm64/uma_machdep.c
==============================================================================
--- head/sys/arm64/arm64/uma_machdep.c	Thu Feb  4 01:08:51 2016	(r295230)
+++ head/sys/arm64/arm64/uma_machdep.c	Thu Feb  4 03:55:41 2016	(r295231)
@@ -32,6 +32,7 @@ __FBSDID("$FreeBSD$");
 #include <sys/malloc.h>
 #include <sys/mutex.h>
 #include <sys/systm.h>
+#include <sys/taskqueue.h>
 #include <vm/vm.h>
 #include <vm/vm_page.h>
 #include <vm/vm_pageout.h>

Modified: head/sys/mips/mips/uma_machdep.c
==============================================================================
--- head/sys/mips/mips/uma_machdep.c	Thu Feb  4 01:08:51 2016	(r295230)
+++ head/sys/mips/mips/uma_machdep.c	Thu Feb  4 03:55:41 2016	(r295231)
@@ -32,6 +32,7 @@ __FBSDID("$FreeBSD$");
 #include <sys/malloc.h>
 #include <sys/mutex.h>
 #include <sys/systm.h>
+#include <sys/taskqueue.h>
 #include <vm/vm.h>
 #include <vm/vm_page.h>
 #include <vm/vm_pageout.h>

Modified: head/sys/powerpc/powerpc/uma_machdep.c
==============================================================================
--- head/sys/powerpc/powerpc/uma_machdep.c	Thu Feb  4 01:08:51 2016	(r295230)
+++ head/sys/powerpc/powerpc/uma_machdep.c	Thu Feb  4 03:55:41 2016	(r295231)
@@ -34,6 +34,7 @@ __FBSDID("$FreeBSD$");
 #include <sys/mutex.h>
 #include <sys/systm.h>
 #include <sys/sysctl.h>
+#include <sys/taskqueue.h>
 #include <vm/vm.h>
 #include <vm/vm_page.h>
 #include <vm/vm_kern.h>

Modified: head/sys/riscv/riscv/uma_machdep.c
==============================================================================
--- head/sys/riscv/riscv/uma_machdep.c	Thu Feb  4 01:08:51 2016	(r295230)
+++ head/sys/riscv/riscv/uma_machdep.c	Thu Feb  4 03:55:41 2016	(r295231)
@@ -32,6 +32,7 @@ __FBSDID("$FreeBSD$");
 #include <sys/malloc.h>
 #include <sys/mutex.h>
 #include <sys/systm.h>
+#include <sys/taskqueue.h>
 #include <vm/vm.h>
 #include <vm/vm_page.h>
 #include <vm/vm_pageout.h>


More information about the svn-src-all mailing list