Date: Tue, 9 Feb 2016 20:22:35 +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: r295451 - in head: lib/libmemstat sys/amd64/amd64 sys/arm/arm sys/arm64/arm64 sys/kern sys/mips/mips sys/powerpc/powerpc sys/riscv/riscv sys/sparc64/sparc64 sys/vm Message-ID: <201602092022.u19KMZqG051636@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: glebius Date: Tue Feb 9 20:22:35 2016 New Revision: 295451 URL: https://svnweb.freebsd.org/changeset/base/295451 Log: Include sys/_task.h into uma_int.h, so that taskqueue.h isn't a requirement for uma_int.h. Suggested by: jhb Modified: head/lib/libmemstat/memstat_uma.c head/sys/amd64/amd64/uma_machdep.c head/sys/arm/arm/vm_machdep.c head/sys/arm64/arm64/uma_machdep.c head/sys/arm64/arm64/vm_machdep.c head/sys/kern/kern_malloc.c head/sys/mips/mips/uma_machdep.c head/sys/mips/mips/vm_machdep.c head/sys/powerpc/powerpc/uma_machdep.c head/sys/riscv/riscv/uma_machdep.c head/sys/riscv/riscv/vm_machdep.c head/sys/sparc64/sparc64/vm_machdep.c head/sys/vm/memguard.c head/sys/vm/uma_dbg.c head/sys/vm/uma_int.h head/sys/vm/vm_page.c Modified: head/lib/libmemstat/memstat_uma.c ============================================================================== --- head/lib/libmemstat/memstat_uma.c Tue Feb 9 20:19:31 2016 (r295450) +++ head/lib/libmemstat/memstat_uma.c Tue Feb 9 20:22:35 2016 (r295451) @@ -29,7 +29,6 @@ #include <sys/param.h> #include <sys/cpuset.h> #include <sys/sysctl.h> -#include <sys/_task.h> #include <vm/vm.h> #include <vm/vm_page.h> Modified: head/sys/amd64/amd64/uma_machdep.c ============================================================================== --- head/sys/amd64/amd64/uma_machdep.c Tue Feb 9 20:19:31 2016 (r295450) +++ head/sys/amd64/amd64/uma_machdep.c Tue Feb 9 20:22:35 2016 (r295451) @@ -32,7 +32,6 @@ __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/arm/arm/vm_machdep.c ============================================================================== --- head/sys/arm/arm/vm_machdep.c Tue Feb 9 20:19:31 2016 (r295450) +++ head/sys/arm/arm/vm_machdep.c Tue Feb 9 20:22:35 2016 (r295451) @@ -54,7 +54,6 @@ __FBSDID("$FreeBSD$"); #include <sys/sysctl.h> #include <sys/sysent.h> #include <sys/unistd.h> -#include <sys/taskqueue.h> #include <machine/acle-compat.h> #include <machine/cpu.h> Modified: head/sys/arm64/arm64/uma_machdep.c ============================================================================== --- head/sys/arm64/arm64/uma_machdep.c Tue Feb 9 20:19:31 2016 (r295450) +++ head/sys/arm64/arm64/uma_machdep.c Tue Feb 9 20:22:35 2016 (r295451) @@ -32,7 +32,6 @@ __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/arm64/arm64/vm_machdep.c ============================================================================== --- head/sys/arm64/arm64/vm_machdep.c Tue Feb 9 20:19:31 2016 (r295450) +++ head/sys/arm64/arm64/vm_machdep.c Tue Feb 9 20:22:35 2016 (r295451) @@ -35,7 +35,6 @@ __FBSDID("$FreeBSD$"); #include <sys/sf_buf.h> #include <sys/signal.h> #include <sys/unistd.h> -#include <sys/taskqueue.h> #include <vm/vm.h> #include <vm/vm_page.h> Modified: head/sys/kern/kern_malloc.c ============================================================================== --- head/sys/kern/kern_malloc.c Tue Feb 9 20:19:31 2016 (r295450) +++ head/sys/kern/kern_malloc.c Tue Feb 9 20:22:35 2016 (r295451) @@ -59,7 +59,6 @@ __FBSDID("$FreeBSD$"); #include <sys/proc.h> #include <sys/sbuf.h> #include <sys/sysctl.h> -#include <sys/taskqueue.h> #include <sys/time.h> #include <sys/vmem.h> Modified: head/sys/mips/mips/uma_machdep.c ============================================================================== --- head/sys/mips/mips/uma_machdep.c Tue Feb 9 20:19:31 2016 (r295450) +++ head/sys/mips/mips/uma_machdep.c Tue Feb 9 20:22:35 2016 (r295451) @@ -32,7 +32,6 @@ __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/vm_machdep.c ============================================================================== --- head/sys/mips/mips/vm_machdep.c Tue Feb 9 20:19:31 2016 (r295450) +++ head/sys/mips/mips/vm_machdep.c Tue Feb 9 20:22:35 2016 (r295451) @@ -56,7 +56,6 @@ __FBSDID("$FreeBSD$"); #include <sys/kernel.h> #include <sys/sysctl.h> #include <sys/unistd.h> -#include <sys/taskqueue.h> #include <machine/cache.h> #include <machine/clock.h> Modified: head/sys/powerpc/powerpc/uma_machdep.c ============================================================================== --- head/sys/powerpc/powerpc/uma_machdep.c Tue Feb 9 20:19:31 2016 (r295450) +++ head/sys/powerpc/powerpc/uma_machdep.c Tue Feb 9 20:22:35 2016 (r295451) @@ -34,7 +34,6 @@ __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 Tue Feb 9 20:19:31 2016 (r295450) +++ head/sys/riscv/riscv/uma_machdep.c Tue Feb 9 20:22:35 2016 (r295451) @@ -32,7 +32,6 @@ __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/riscv/riscv/vm_machdep.c ============================================================================== --- head/sys/riscv/riscv/vm_machdep.c Tue Feb 9 20:19:31 2016 (r295450) +++ head/sys/riscv/riscv/vm_machdep.c Tue Feb 9 20:22:35 2016 (r295451) @@ -42,7 +42,6 @@ __FBSDID("$FreeBSD$"); #include <sys/sf_buf.h> #include <sys/signal.h> #include <sys/unistd.h> -#include <sys/taskqueue.h> #include <vm/vm.h> #include <vm/vm_page.h> Modified: head/sys/sparc64/sparc64/vm_machdep.c ============================================================================== --- head/sys/sparc64/sparc64/vm_machdep.c Tue Feb 9 20:19:31 2016 (r295450) +++ head/sys/sparc64/sparc64/vm_machdep.c Tue Feb 9 20:22:35 2016 (r295451) @@ -58,7 +58,6 @@ __FBSDID("$FreeBSD$"); #include <sys/sysctl.h> #include <sys/unistd.h> #include <sys/vmmeter.h> -#include <sys/taskqueue.h> #include <dev/ofw/openfirm.h> Modified: head/sys/vm/memguard.c ============================================================================== --- head/sys/vm/memguard.c Tue Feb 9 20:19:31 2016 (r295450) +++ head/sys/vm/memguard.c Tue Feb 9 20:22:35 2016 (r295451) @@ -48,7 +48,6 @@ __FBSDID("$FreeBSD$"); #include <sys/mutex.h> #include <sys/malloc.h> #include <sys/sysctl.h> -#include <sys/taskqueue.h> #include <sys/vmem.h> #include <vm/vm.h> Modified: head/sys/vm/uma_dbg.c ============================================================================== --- head/sys/vm/uma_dbg.c Tue Feb 9 20:19:31 2016 (r295450) +++ head/sys/vm/uma_dbg.c Tue Feb 9 20:22:35 2016 (r295451) @@ -42,7 +42,6 @@ __FBSDID("$FreeBSD$"); #include <sys/lock.h> #include <sys/mutex.h> #include <sys/malloc.h> -#include <sys/taskqueue.h> #include <vm/vm.h> #include <vm/vm_object.h> Modified: head/sys/vm/uma_int.h ============================================================================== --- head/sys/vm/uma_int.h Tue Feb 9 20:19:31 2016 (r295450) +++ head/sys/vm/uma_int.h Tue Feb 9 20:22:35 2016 (r295451) @@ -28,6 +28,8 @@ * */ +#include <sys/_task.h> + /* * This file includes definitions, structures, prototypes, and inlines that * should not be used outside of the actual implementation of UMA. Modified: head/sys/vm/vm_page.c ============================================================================== --- head/sys/vm/vm_page.c Tue Feb 9 20:19:31 2016 (r295450) +++ head/sys/vm/vm_page.c Tue Feb 9 20:22:35 2016 (r295451) @@ -102,7 +102,6 @@ __FBSDID("$FreeBSD$"); #include <sys/sysctl.h> #include <sys/vmmeter.h> #include <sys/vnode.h> -#include <sys/taskqueue.h> #include <vm/vm.h> #include <vm/pmap.h>
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201602092022.u19KMZqG051636>