aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorJerone Young <jyoung5@us.ibm.com>2007-11-19 17:06:35 -0600
committerAvi Kivity <avi@qumranet.com>2008-01-30 17:53:08 +0200
commit3a56b20104f51bd6caf07e49fa1e3c09bee222e5 (patch)
treeb0cb4975142644942361c17196c2470aae9fb4a0 /include
parentd9ecf9281069c4c8dd429e1eb61cb7e0f3dda6b4 (diff)
KVM: Portability: Move kvm_segment & kvm_dtable structure to <asm/kvm.h>
This patch moves structures: kvm_segment kvm_dtable from include/linux/kvm.h to include/asm-x86/kvm.h Signed-off-by: Jerone Young <jyoung5@us.ibm.com> Signed-off-by: Avi Kivity <avi@qumranet.com>
Diffstat (limited to 'include')
-rw-r--r--include/asm-x86/kvm.h17
-rw-r--r--include/linux/kvm.h15
2 files changed, 17 insertions, 15 deletions
diff --git a/include/asm-x86/kvm.h b/include/asm-x86/kvm.h
index a2c65b5c4a8..644a325077f 100644
--- a/include/asm-x86/kvm.h
+++ b/include/asm-x86/kvm.h
@@ -82,4 +82,21 @@ struct kvm_lapic_state {
char regs[KVM_APIC_REG_SIZE];
};
+struct kvm_segment {
+ __u64 base;
+ __u32 limit;
+ __u16 selector;
+ __u8 type;
+ __u8 present, dpl, db, s, l, g, avl;
+ __u8 unusable;
+ __u8 padding;
+};
+
+struct kvm_dtable {
+ __u64 base;
+ __u16 limit;
+ __u16 padding[3];
+};
+
+
#endif
diff --git a/include/linux/kvm.h b/include/linux/kvm.h
index 280ec0d85b4..442cb58bb73 100644
--- a/include/linux/kvm.h
+++ b/include/linux/kvm.h
@@ -151,21 +151,6 @@ struct kvm_fpu {
};
-struct kvm_segment {
- __u64 base;
- __u32 limit;
- __u16 selector;
- __u8 type;
- __u8 present, dpl, db, s, l, g, avl;
- __u8 unusable;
- __u8 padding;
-};
-
-struct kvm_dtable {
- __u64 base;
- __u16 limit;
- __u16 padding[3];
-};
/* for KVM_GET_SREGS and KVM_SET_SREGS */
struct kvm_sregs {