From owner-svn-src-all@FreeBSD.ORG Sat Apr 4 23:03:17 2015 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A18B3D9C; Sat, 4 Apr 2015 23:03:17 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::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 83203999; Sat, 4 Apr 2015 23:03:17 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t34N3Hox021762; Sat, 4 Apr 2015 23:03:17 GMT (envelope-from andrew@FreeBSD.org) Received: (from andrew@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t34N3CqK021742; Sat, 4 Apr 2015 23:03:12 GMT (envelope-from andrew@FreeBSD.org) Message-Id: <201504042303.t34N3CqK021742@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: andrew set sender to andrew@FreeBSD.org using -f From: Andrew Turner Date: Sat, 4 Apr 2015 23:03:12 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r281092 - in head/sys/arm: allwinner/a20 altera/socfpga amlogic/aml8726 broadcom/bcm2835 freescale/imx freescale/vybrid mv/armadaxp rockchip samsung/exynos ti/omap4 versatile xilinx 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.18-1 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: Sat, 04 Apr 2015 23:03:17 -0000 Author: andrew Date: Sat Apr 4 23:03:11 2015 New Revision: 281092 URL: https://svnweb.freebsd.org/changeset/base/281092 Log: Include vm/pmap.h for pmap_kextract. Modified: head/sys/arm/allwinner/a20/a20_mp.c head/sys/arm/altera/socfpga/socfpga_mp.c head/sys/arm/amlogic/aml8726/aml8726_fb.c head/sys/arm/amlogic/aml8726/aml8726_mp.c head/sys/arm/broadcom/bcm2835/bcm2835_fbd.c head/sys/arm/freescale/imx/imx51_ipuv3.c head/sys/arm/freescale/imx/imx6_mp.c head/sys/arm/freescale/vybrid/vf_dcu4.c head/sys/arm/mv/armadaxp/armadaxp_mp.c head/sys/arm/rockchip/rk30xx_mp.c head/sys/arm/samsung/exynos/exynos5_mp.c head/sys/arm/ti/omap4/omap4_mp.c head/sys/arm/versatile/versatile_pci.c head/sys/arm/xilinx/zy7_mp.c Modified: head/sys/arm/allwinner/a20/a20_mp.c ============================================================================== --- head/sys/arm/allwinner/a20/a20_mp.c Sat Apr 4 23:00:37 2015 (r281091) +++ head/sys/arm/allwinner/a20/a20_mp.c Sat Apr 4 23:03:11 2015 (r281092) @@ -33,6 +33,9 @@ __FBSDID("$FreeBSD$"); #include #include +#include +#include + #include #include #include Modified: head/sys/arm/altera/socfpga/socfpga_mp.c ============================================================================== --- head/sys/arm/altera/socfpga/socfpga_mp.c Sat Apr 4 23:00:37 2015 (r281091) +++ head/sys/arm/altera/socfpga/socfpga_mp.c Sat Apr 4 23:03:11 2015 (r281092) @@ -38,6 +38,9 @@ __FBSDID("$FreeBSD$"); #include #include +#include +#include + #include #include #include Modified: head/sys/arm/amlogic/aml8726/aml8726_fb.c ============================================================================== --- head/sys/arm/amlogic/aml8726/aml8726_fb.c Sat Apr 4 23:00:37 2015 (r281091) +++ head/sys/arm/amlogic/aml8726/aml8726_fb.c Sat Apr 4 23:03:11 2015 (r281092) @@ -49,6 +49,9 @@ __FBSDID("$FreeBSD$"); #include +#include +#include + #include #include #include Modified: head/sys/arm/amlogic/aml8726/aml8726_mp.c ============================================================================== --- head/sys/arm/amlogic/aml8726/aml8726_mp.c Sat Apr 4 23:00:37 2015 (r281091) +++ head/sys/arm/amlogic/aml8726/aml8726_mp.c Sat Apr 4 23:03:11 2015 (r281092) @@ -50,6 +50,9 @@ __FBSDID("$FreeBSD$"); #include #include +#include +#include + #include #include #include Modified: head/sys/arm/broadcom/bcm2835/bcm2835_fbd.c ============================================================================== --- head/sys/arm/broadcom/bcm2835/bcm2835_fbd.c Sat Apr 4 23:00:37 2015 (r281091) +++ head/sys/arm/broadcom/bcm2835/bcm2835_fbd.c Sat Apr 4 23:03:11 2015 (r281092) @@ -53,6 +53,9 @@ __FBSDID("$FreeBSD$"); #include +#include +#include + #include #include #include Modified: head/sys/arm/freescale/imx/imx51_ipuv3.c ============================================================================== --- head/sys/arm/freescale/imx/imx51_ipuv3.c Sat Apr 4 23:00:37 2015 (r281091) +++ head/sys/arm/freescale/imx/imx51_ipuv3.c Sat Apr 4 23:03:11 2015 (r281092) @@ -53,6 +53,9 @@ __FBSDID("$FreeBSD$"); #include +#include +#include + #include #include #include Modified: head/sys/arm/freescale/imx/imx6_mp.c ============================================================================== --- head/sys/arm/freescale/imx/imx6_mp.c Sat Apr 4 23:00:37 2015 (r281091) +++ head/sys/arm/freescale/imx/imx6_mp.c Sat Apr 4 23:03:11 2015 (r281092) @@ -34,6 +34,9 @@ __FBSDID("$FreeBSD$"); #include #include +#include +#include + #include #include #include Modified: head/sys/arm/freescale/vybrid/vf_dcu4.c ============================================================================== --- head/sys/arm/freescale/vybrid/vf_dcu4.c Sat Apr 4 23:00:37 2015 (r281091) +++ head/sys/arm/freescale/vybrid/vf_dcu4.c Sat Apr 4 23:03:11 2015 (r281092) @@ -47,6 +47,9 @@ __FBSDID("$FreeBSD$"); #include #include +#include +#include + #include #include #include Modified: head/sys/arm/mv/armadaxp/armadaxp_mp.c ============================================================================== --- head/sys/arm/mv/armadaxp/armadaxp_mp.c Sat Apr 4 23:00:37 2015 (r281091) +++ head/sys/arm/mv/armadaxp/armadaxp_mp.c Sat Apr 4 23:03:11 2015 (r281092) @@ -36,6 +36,7 @@ #include #include #include +#include #include Modified: head/sys/arm/rockchip/rk30xx_mp.c ============================================================================== --- head/sys/arm/rockchip/rk30xx_mp.c Sat Apr 4 23:00:37 2015 (r281091) +++ head/sys/arm/rockchip/rk30xx_mp.c Sat Apr 4 23:03:11 2015 (r281092) @@ -33,6 +33,9 @@ __FBSDID("$FreeBSD$"); #include #include +#include +#include + #include #include #include Modified: head/sys/arm/samsung/exynos/exynos5_mp.c ============================================================================== --- head/sys/arm/samsung/exynos/exynos5_mp.c Sat Apr 4 23:00:37 2015 (r281091) +++ head/sys/arm/samsung/exynos/exynos5_mp.c Sat Apr 4 23:03:11 2015 (r281092) @@ -33,6 +33,9 @@ __FBSDID("$FreeBSD$"); #include #include +#include +#include + #include #include #include Modified: head/sys/arm/ti/omap4/omap4_mp.c ============================================================================== --- head/sys/arm/ti/omap4/omap4_mp.c Sat Apr 4 23:00:37 2015 (r281091) +++ head/sys/arm/ti/omap4/omap4_mp.c Sat Apr 4 23:03:11 2015 (r281092) @@ -31,6 +31,9 @@ __FBSDID("$FreeBSD$"); #include #include +#include +#include + #include #include #include Modified: head/sys/arm/versatile/versatile_pci.c ============================================================================== --- head/sys/arm/versatile/versatile_pci.c Sat Apr 4 23:00:37 2015 (r281091) +++ head/sys/arm/versatile/versatile_pci.c Sat Apr 4 23:03:11 2015 (r281092) @@ -35,6 +35,10 @@ __FBSDID("$FreeBSD$"); #include #include #include + +#include +#include + #include #include #include Modified: head/sys/arm/xilinx/zy7_mp.c ============================================================================== --- head/sys/arm/xilinx/zy7_mp.c Sat Apr 4 23:00:37 2015 (r281091) +++ head/sys/arm/xilinx/zy7_mp.c Sat Apr 4 23:03:11 2015 (r281092) @@ -31,6 +31,9 @@ __FBSDID("$FreeBSD$"); #include #include +#include +#include + #include #include #include