Skip to content

Commit

Permalink
KVM: VMX: move vmx.h to include/asm
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Eduardo Habkost authored and Avi Kivity committed Dec 31, 2008
1 parent fe4e771 commit 13673a9
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
File renamed without changes.
2 changes: 1 addition & 1 deletion arch/x86/kvm/mmu.c
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
*
*/

#include "vmx.h"
#include "mmu.h"

#include <linux/kvm_host.h>
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion arch/x86/kvm/vmx.c
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@
*/

#include "irq.h"
#include "vmx.h"
#include "mmu.h"

#include <linux/kvm_host.h>
Expand All @@ -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)

Expand Down

0 comments on commit 13673a9

Please sign in to comment.