Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 4 Apr 2015 23:03:12 +0000 (UTC)
From:      Andrew Turner <andrew@FreeBSD.org>
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
Message-ID:  <201504042303.t34N3CqK021742@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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 <sys/mutex.h>
 #include <sys/smp.h>
 
+#include <vm/vm.h>
+#include <vm/pmap.h>
+
 #include <machine/smp.h>
 #include <machine/fdt.h>
 #include <machine/intr.h>

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 <sys/mutex.h>
 #include <sys/smp.h>
 
+#include <vm/vm.h>
+#include <vm/pmap.h>
+
 #include <machine/smp.h>
 #include <machine/fdt.h>
 #include <machine/intr.h>

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 <sys/fbio.h>
 
+#include <vm/vm.h>
+#include <vm/pmap.h>
+
 #include <machine/bus.h>
 #include <machine/cpu.h>
 #include <machine/fdt.h>

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 <sys/rman.h>
 #include <sys/smp.h>
 
+#include <vm/vm.h>
+#include <vm/pmap.h>
+
 #include <machine/bus.h>
 #include <machine/smp.h>
 #include <machine/fdt.h>

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 <sys/kdb.h>
 
+#include <vm/vm.h>
+#include <vm/pmap.h>
+
 #include <machine/bus.h>
 #include <machine/cpu.h>
 #include <machine/cpufunc.h>

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 <sys/kdb.h>
 
+#include <vm/vm.h>
+#include <vm/pmap.h>
+
 #include <machine/bus.h>
 #include <machine/cpu.h>
 #include <machine/cpufunc.h>

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 <sys/mutex.h>
 #include <sys/smp.h>
 
+#include <vm/vm.h>
+#include <vm/pmap.h>
+
 #include <machine/smp.h>
 #include <machine/fdt.h>
 #include <machine/intr.h>

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 <sys/eventhandler.h>
 #include <sys/gpio.h>
 
+#include <vm/vm.h>
+#include <vm/pmap.h>
+
 #include <dev/fdt/fdt_common.h>
 #include <dev/ofw/openfirm.h>
 #include <dev/ofw/ofw_bus.h>

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 <vm/vm.h>
 #include <vm/vm_kern.h>
 #include <vm/vm_extern.h>
+#include <vm/pmap.h>
 
 #include <dev/fdt/fdt_common.h>
 

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 <sys/mutex.h>
 #include <sys/smp.h>
 
+#include <vm/vm.h>
+#include <vm/pmap.h>
+
 #include <machine/smp.h>
 #include <machine/fdt.h>
 #include <machine/intr.h>

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 <sys/mutex.h>
 #include <sys/smp.h>
 
+#include <vm/vm.h>
+#include <vm/pmap.h>
+
 #include <machine/smp.h>
 #include <machine/fdt.h>
 #include <machine/intr.h>

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 <sys/mutex.h>
 #include <sys/smp.h>
 
+#include <vm/vm.h>
+#include <vm/pmap.h>
+
 #include <machine/smp.h>
 #include <machine/fdt.h>
 #include <machine/intr.h>

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 <sys/malloc.h>
 #include <sys/rman.h>
 #include <sys/watchdog.h>
+
+#include <vm/vm.h>
+#include <vm/pmap.h>
+
 #include <machine/bus.h>
 #include <machine/cpu.h>
 #include <machine/intr.h>

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 <sys/mutex.h>
 #include <sys/smp.h>
 
+#include <vm/vm.h>
+#include <vm/pmap.h>
+
 #include <machine/smp.h>
 #include <machine/fdt.h>
 #include <machine/intr.h>



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201504042303.t34N3CqK021742>