svn commit: r257297 - in head/sys/amd64/vmm: . intel

Neel Natu neel at FreeBSD.org
Tue Oct 29 02:25:20 UTC 2013


Author: neel
Date: Tue Oct 29 02:25:18 2013
New Revision: 257297
URL: http://svnweb.freebsd.org/changeset/base/257297

Log:
  Remove unnecessary includes of <machine/pmap.h>
  
  Requested by:	alc@

Modified:
  head/sys/amd64/vmm/intel/vmcs.c
  head/sys/amd64/vmm/intel/vmx.c
  head/sys/amd64/vmm/intel/vmx_genassym.c
  head/sys/amd64/vmm/intel/vtd.c
  head/sys/amd64/vmm/vmm.c
  head/sys/amd64/vmm/vmm_dev.c
  head/sys/amd64/vmm/vmm_instruction_emul.c

Modified: head/sys/amd64/vmm/intel/vmcs.c
==============================================================================
--- head/sys/amd64/vmm/intel/vmcs.c	Tue Oct 29 00:56:21 2013	(r257296)
+++ head/sys/amd64/vmm/intel/vmcs.c	Tue Oct 29 02:25:18 2013	(r257297)
@@ -39,8 +39,6 @@ __FBSDID("$FreeBSD$");
 #include <vm/pmap.h>
 
 #include <machine/segments.h>
-#include <machine/pmap.h>
-
 #include <machine/vmm.h>
 #include "vmm_host.h"
 #include "vmcs.h"

Modified: head/sys/amd64/vmm/intel/vmx.c
==============================================================================
--- head/sys/amd64/vmm/intel/vmx.c	Tue Oct 29 00:56:21 2013	(r257296)
+++ head/sys/amd64/vmm/intel/vmx.c	Tue Oct 29 02:25:18 2013	(r257297)
@@ -44,7 +44,6 @@ __FBSDID("$FreeBSD$");
 #include <machine/psl.h>
 #include <machine/cpufunc.h>
 #include <machine/md_var.h>
-#include <machine/pmap.h>
 #include <machine/segments.h>
 #include <machine/specialreg.h>
 #include <machine/vmparam.h>

Modified: head/sys/amd64/vmm/intel/vmx_genassym.c
==============================================================================
--- head/sys/amd64/vmm/intel/vmx_genassym.c	Tue Oct 29 00:56:21 2013	(r257296)
+++ head/sys/amd64/vmm/intel/vmx_genassym.c	Tue Oct 29 02:25:18 2013	(r257297)
@@ -38,8 +38,6 @@ __FBSDID("$FreeBSD$");
 #include <vm/vm.h>
 #include <vm/pmap.h>
 
-#include <machine/pmap.h>
-
 #include <machine/vmm.h>
 #include "vmx.h"
 #include "vmx_cpufunc.h"

Modified: head/sys/amd64/vmm/intel/vtd.c
==============================================================================
--- head/sys/amd64/vmm/intel/vtd.c	Tue Oct 29 00:56:21 2013	(r257296)
+++ head/sys/amd64/vmm/intel/vtd.c	Tue Oct 29 02:25:18 2013	(r257297)
@@ -39,7 +39,6 @@ __FBSDID("$FreeBSD$");
 
 #include <dev/pci/pcireg.h>
 
-#include <machine/pmap.h>
 #include <machine/vmparam.h>
 #include <contrib/dev/acpica/include/acpi.h>
 

Modified: head/sys/amd64/vmm/vmm.c
==============================================================================
--- head/sys/amd64/vmm/vmm.c	Tue Oct 29 00:56:21 2013	(r257296)
+++ head/sys/amd64/vmm/vmm.c	Tue Oct 29 02:25:18 2013	(r257297)
@@ -56,7 +56,6 @@ __FBSDID("$FreeBSD$");
 #include <machine/pcb.h>
 #include <machine/smp.h>
 #include <x86/apicreg.h>
-#include <machine/pmap.h>
 #include <machine/vmparam.h>
 
 #include <machine/vmm.h>

Modified: head/sys/amd64/vmm/vmm_dev.c
==============================================================================
--- head/sys/amd64/vmm/vmm_dev.c	Tue Oct 29 00:56:21 2013	(r257296)
+++ head/sys/amd64/vmm/vmm_dev.c	Tue Oct 29 02:25:18 2013	(r257297)
@@ -46,7 +46,6 @@ __FBSDID("$FreeBSD$");
 #include <vm/pmap.h>
 #include <vm/vm_map.h>
 
-#include <machine/pmap.h>
 #include <machine/vmparam.h>
 
 #include <machine/vmm.h>

Modified: head/sys/amd64/vmm/vmm_instruction_emul.c
==============================================================================
--- head/sys/amd64/vmm/vmm_instruction_emul.c	Tue Oct 29 00:56:21 2013	(r257296)
+++ head/sys/amd64/vmm/vmm_instruction_emul.c	Tue Oct 29 02:25:18 2013	(r257297)
@@ -38,7 +38,6 @@ __FBSDID("$FreeBSD$");
 #include <vm/vm.h>
 #include <vm/pmap.h>
 
-#include <machine/pmap.h>
 #include <machine/vmparam.h>
 #include <machine/vmm.h>
 #else	/* !_KERNEL */


More information about the svn-src-head mailing list