From owner-svn-src-all@freebsd.org Tue Feb 9 20:22:38 2016 Return-Path: Delivered-To: svn-src-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id BDF1DAA3419; Tue, 9 Feb 2016 20:22:38 +0000 (UTC) (envelope-from glebius@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 7BFD92B5; Tue, 9 Feb 2016 20:22:38 +0000 (UTC) (envelope-from glebius@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u19KMbSx051653; Tue, 9 Feb 2016 20:22:37 GMT (envelope-from glebius@FreeBSD.org) Received: (from glebius@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u19KMZqG051636; Tue, 9 Feb 2016 20:22:35 GMT (envelope-from glebius@FreeBSD.org) Message-Id: <201602092022.u19KMZqG051636@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: glebius set sender to glebius@FreeBSD.org using -f From: Gleb Smirnoff Date: Tue, 9 Feb 2016 20:22:35 +0000 (UTC) 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 X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Feb 2016 20:22:38 -0000 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 #include #include -#include #include #include 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 #include #include -#include #include #include #include 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 #include #include -#include #include #include 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 #include #include -#include #include #include #include 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 #include #include -#include #include #include 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 #include #include -#include #include #include 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 #include #include -#include #include #include #include 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 #include #include -#include #include #include 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 #include #include -#include #include #include #include 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 #include #include -#include #include #include #include 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 #include #include -#include #include #include 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 #include #include -#include #include 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 #include #include -#include #include #include 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 #include #include -#include #include #include 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 + /* * 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 #include #include -#include #include #include