diff options
author | Joerg Roedel <joerg.roedel@amd.com> | 2008-01-31 08:57:37 -0500 |
---|---|---|
committer | Avi Kivity <avi@qumranet.com> | 2008-04-27 04:53:18 -0400 |
commit | f2b4b7ddf633ffa24ce7c89c9e0d8a06463484e3 (patch) | |
tree | db27a5a3cff2e60497ec60194a9f754372bf01e1 /arch/x86/kvm/x86.c | |
parent | 0aac03f07b37da96e00371e66973d5ffaae578a4 (diff) |
KVM: make EFER_RESERVED_BITS configurable for architecture code
This patch give the SVM and VMX implementations the ability to add some bits
the guest can set in its EFER register.
Signed-off-by: Joerg Roedel <joerg.roedel@amd.com>
Signed-off-by: Avi Kivity <avi@qumranet.com>
Diffstat (limited to 'arch/x86/kvm/x86.c')
-rw-r--r-- | arch/x86/kvm/x86.c | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/arch/x86/kvm/x86.c b/arch/x86/kvm/x86.c index 6b01552bd1f1..ec9265b354b0 100644 --- a/arch/x86/kvm/x86.c +++ b/arch/x86/kvm/x86.c | |||
@@ -41,7 +41,7 @@ | |||
41 | | X86_CR4_OSXMMEXCPT | X86_CR4_VMXE)) | 41 | | X86_CR4_OSXMMEXCPT | X86_CR4_VMXE)) |
42 | 42 | ||
43 | #define CR8_RESERVED_BITS (~(unsigned long)X86_CR8_TPR) | 43 | #define CR8_RESERVED_BITS (~(unsigned long)X86_CR8_TPR) |
44 | #define EFER_RESERVED_BITS 0xfffffffffffff2fe | 44 | static u64 __read_mostly efer_reserved_bits = 0xfffffffffffff2fe; |
45 | 45 | ||
46 | #define VM_STAT(x) offsetof(struct kvm, stat.x), KVM_STAT_VM | 46 | #define VM_STAT(x) offsetof(struct kvm, stat.x), KVM_STAT_VM |
47 | #define VCPU_STAT(x) offsetof(struct kvm_vcpu, stat.x), KVM_STAT_VCPU | 47 | #define VCPU_STAT(x) offsetof(struct kvm_vcpu, stat.x), KVM_STAT_VCPU |
@@ -428,7 +428,7 @@ static u32 emulated_msrs[] = { | |||
428 | 428 | ||
429 | static void set_efer(struct kvm_vcpu *vcpu, u64 efer) | 429 | static void set_efer(struct kvm_vcpu *vcpu, u64 efer) |
430 | { | 430 | { |
431 | if (efer & EFER_RESERVED_BITS) { | 431 | if (efer & efer_reserved_bits) { |
432 | printk(KERN_DEBUG "set_efer: 0x%llx #GP, reserved bits\n", | 432 | printk(KERN_DEBUG "set_efer: 0x%llx #GP, reserved bits\n", |
433 | efer); | 433 | efer); |
434 | kvm_inject_gp(vcpu, 0); | 434 | kvm_inject_gp(vcpu, 0); |
@@ -452,6 +452,13 @@ static void set_efer(struct kvm_vcpu *vcpu, u64 efer) | |||
452 | 452 | ||
453 | #endif | 453 | #endif |
454 | 454 | ||
455 | void kvm_enable_efer_bits(u64 mask) | ||
456 | { | ||
457 | efer_reserved_bits &= ~mask; | ||
458 | } | ||
459 | EXPORT_SYMBOL_GPL(kvm_enable_efer_bits); | ||
460 | |||
461 | |||
455 | /* | 462 | /* |
456 | * Writes msr value into into the appropriate "register". | 463 | * Writes msr value into into the appropriate "register". |
457 | * Returns 0 on success, non-0 otherwise. | 464 | * Returns 0 on success, non-0 otherwise. |