diff options
author | Jerone Young <jyoung5@us.ibm.com> | 2007-11-19 17:06:36 -0600 |
---|---|---|
committer | Avi Kivity <avi@qumranet.com> | 2008-01-30 17:53:08 +0200 |
commit | 244d57ece94b56692c61f2d507d1251b5844c550 (patch) | |
tree | 69db4777d504c4af95432a464fd82b3fb2f7f100 /include/linux/kvm.h | |
parent | 3a56b20104f51bd6caf07e49fa1e3c09bee222e5 (diff) | |
download | op-kernel-dev-244d57ece94b56692c61f2d507d1251b5844c550.zip op-kernel-dev-244d57ece94b56692c61f2d507d1251b5844c550.tar.gz |
KVM: Portability: Move kvm_sregs and msr structures to <asm/kvm.h>
Move structures:
kvm_sregs
kvm_msr_entry
kvm_msrs
kvm_msr_list
from include/linux/kvm.h to include/asm-x86/kvm.h
Signed-off-by: Avi Kivity <avi@qumranet.com>
Diffstat (limited to 'include/linux/kvm.h')
-rw-r--r-- | include/linux/kvm.h | 36 |
1 files changed, 0 insertions, 36 deletions
diff --git a/include/linux/kvm.h b/include/linux/kvm.h index 442cb58..e6867aa 100644 --- a/include/linux/kvm.h +++ b/include/linux/kvm.h @@ -13,9 +13,6 @@ #define KVM_API_VERSION 12 -/* Architectural interrupt line count. */ -#define KVM_NR_INTERRUPTS 256 - /* for KVM_CREATE_MEMORY_REGION */ struct kvm_memory_region { __u32 slot; @@ -151,39 +148,6 @@ struct kvm_fpu { }; - -/* for KVM_GET_SREGS and KVM_SET_SREGS */ -struct kvm_sregs { - /* out (KVM_GET_SREGS) / in (KVM_SET_SREGS) */ - struct kvm_segment cs, ds, es, fs, gs, ss; - struct kvm_segment tr, ldt; - struct kvm_dtable gdt, idt; - __u64 cr0, cr2, cr3, cr4, cr8; - __u64 efer; - __u64 apic_base; - __u64 interrupt_bitmap[(KVM_NR_INTERRUPTS + 63) / 64]; -}; - -struct kvm_msr_entry { - __u32 index; - __u32 reserved; - __u64 data; -}; - -/* for KVM_GET_MSRS and KVM_SET_MSRS */ -struct kvm_msrs { - __u32 nmsrs; /* number of msrs in entries */ - __u32 pad; - - struct kvm_msr_entry entries[0]; -}; - -/* for KVM_GET_MSR_INDEX_LIST */ -struct kvm_msr_list { - __u32 nmsrs; /* number of msrs in entries */ - __u32 indices[0]; -}; - /* for KVM_TRANSLATE */ struct kvm_translation { /* in */ |