aboutsummaryrefslogtreecommitdiffstats
path: root/xen/include/asm-x86/hvm/vcpu.h
diff options
context:
space:
mode:
authorkaf24@firebug.cl.cam.ac.uk <kaf24@firebug.cl.cam.ac.uk>2006-02-06 23:33:58 +0100
committerkaf24@firebug.cl.cam.ac.uk <kaf24@firebug.cl.cam.ac.uk>2006-02-06 23:33:58 +0100
commit67b4c5b77e5e56c59423e133f86e3971b32a957d (patch)
treec716d3136ea1968c0eacba83e36147885e549e58 /xen/include/asm-x86/hvm/vcpu.h
parent64c4a850af20dd8f8b5ec940ef8d1131d7ece804 (diff)
downloadxen-67b4c5b77e5e56c59423e133f86e3971b32a957d.tar.gz
xen-67b4c5b77e5e56c59423e133f86e3971b32a957d.tar.bz2
xen-67b4c5b77e5e56c59423e133f86e3971b32a957d.zip
Remove CONFIG_VMX and CONFIG_SVM compile options. Support
will always be compiled into Xen. Signed-off-by: Keir Fraser <keir@xensource.com>
Diffstat (limited to 'xen/include/asm-x86/hvm/vcpu.h')
-rw-r--r--xen/include/asm-x86/hvm/vcpu.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/xen/include/asm-x86/hvm/vcpu.h b/xen/include/asm-x86/hvm/vcpu.h
index c5f4b8c613..5e0a11c40f 100644
--- a/xen/include/asm-x86/hvm/vcpu.h
+++ b/xen/include/asm-x86/hvm/vcpu.h
@@ -22,13 +22,8 @@
#include <asm/hvm/io.h>
#include <asm/hvm/vlapic.h>
-
-#ifdef CONFIG_VMX
#include <asm/hvm/vmx/vmcs.h>
-#endif
-#ifdef CONFIG_SVM
#include <asm/hvm/svm/vmcb.h>
-#endif
struct hvm_vcpu {
unsigned long ioflags;
@@ -36,12 +31,8 @@ struct hvm_vcpu {
struct vlapic *vlapic;
union {
-#ifdef CONFIG_VMX
struct arch_vmx_struct vmx;
-#endif
-#ifdef CONFIG_SVM
struct arch_svm_struct svm;
-#endif
} u;
};