diff options
author | Zhang Xiantao <xiantao.zhang@intel.com> | 2007-10-20 09:34:38 +0200 |
---|---|---|
committer | Avi Kivity <avi@qumranet.com> | 2008-01-30 16:52:54 +0100 |
commit | 34c16eecf78ed4cf01f39ac7211f5b57942ec899 (patch) | |
tree | 9a9d6192db411cc3c7ff665cc94a8797eb55aa80 /drivers/kvm/ioapic.c | |
parent | KVM: Allocate userspace memory for older userspace (diff) | |
download | linux-34c16eecf78ed4cf01f39ac7211f5b57942ec899.tar.xz linux-34c16eecf78ed4cf01f39ac7211f5b57942ec899.zip |
KVM: Portability: Split kvm_vcpu into arch dependent and independent parts (part 1)
First step to split kvm_vcpu. Currently, we just use an macro to define
the common fields in kvm_vcpu for all archs, and all archs need to define
its own kvm_vcpu struct.
Signed-off-by: Zhang Xiantao <xiantao.zhang@intel.com>
Signed-off-by: Avi Kivity <avi@qumranet.com>
Diffstat (limited to 'drivers/kvm/ioapic.c')
-rw-r--r-- | drivers/kvm/ioapic.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/kvm/ioapic.c b/drivers/kvm/ioapic.c index 8503d99b8339..e14b7c724e67 100644 --- a/drivers/kvm/ioapic.c +++ b/drivers/kvm/ioapic.c @@ -27,6 +27,8 @@ */ #include "kvm.h" +#include "x86.h" + #include <linux/kvm.h> #include <linux/mm.h> #include <linux/highmem.h> |