summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEduardo Habkost2008-11-17 22:03:13 +0100
committerAvi Kivity2008-12-31 15:52:27 +0100
commit13673a90f1cf88296f726265cc7cf3ec76ecba30 (patch)
tree3c1cfe8a220a9274bc3cd3eca3c6defa8d6c7189
parentKVM: ppc: fix userspace mapping invalidation on context switch (diff)
downloadkernel-qcow2-linux-13673a90f1cf88296f726265cc7cf3ec76ecba30.tar.gz
kernel-qcow2-linux-13673a90f1cf88296f726265cc7cf3ec76ecba30.tar.xz
kernel-qcow2-linux-13673a90f1cf88296f726265cc7cf3ec76ecba30.zip
KVM: VMX: move vmx.h to include/asm
vmx.h will be used by core code that is independent of KVM, so I am moving it outside the arch/x86/kvm directory. Signed-off-by: Eduardo Habkost <ehabkost@redhat.com> Signed-off-by: Avi Kivity <avi@redhat.com>
-rw-r--r--arch/x86/include/asm/vmx.h (renamed from arch/x86/kvm/vmx.h)0
-rw-r--r--arch/x86/kvm/mmu.c2
-rw-r--r--arch/x86/kvm/vmx.c2
3 files changed, 2 insertions, 2 deletions
diff --git a/arch/x86/kvm/vmx.h b/arch/x86/include/asm/vmx.h
index 3db236c26fa4..3db236c26fa4 100644
--- a/arch/x86/kvm/vmx.h
+++ b/arch/x86/include/asm/vmx.h
diff --git a/arch/x86/kvm/mmu.c b/arch/x86/kvm/mmu.c
index 8904e8ada978..fa3486d64078 100644
--- a/arch/x86/kvm/mmu.c
+++ b/arch/x86/kvm/mmu.c
@@ -17,7 +17,6 @@
*
*/
-#include "vmx.h"
#include "mmu.h"
#include <linux/kvm_host.h>
@@ -33,6 +32,7 @@
#include <asm/page.h>
#include <asm/cmpxchg.h>
#include <asm/io.h>
+#include <asm/vmx.h>
/*
* When setting this variable to true it enables Two-Dimensional-Paging
diff --git a/arch/x86/kvm/vmx.c b/arch/x86/kvm/vmx.c
index 427dbc14fae9..ec71f6464cfa 100644
--- a/arch/x86/kvm/vmx.c
+++ b/arch/x86/kvm/vmx.c
@@ -16,7 +16,6 @@
*/
#include "irq.h"
-#include "vmx.h"
#include "mmu.h"
#include <linux/kvm_host.h>
@@ -31,6 +30,7 @@
#include <asm/io.h>
#include <asm/desc.h>
+#include <asm/vmx.h>
#define __ex(x) __kvm_handle_fault_on_reboot(x)