summaryrefslogtreecommitdiffstats
path: root/arch/x86/kvm/kvm_cache_regs.h
diff options
context:
space:
mode:
authorAvi Kivity2009-12-29 17:43:06 +0100
committerMarcelo Tosatti2010-03-01 16:35:50 +0100
commite8467fda83cdc9de53972fee0cd2e6916cf66f41 (patch)
tree3a1644bf9b26f29eee74614f70e9d9a82c079ea9 /arch/x86/kvm/kvm_cache_regs.h
parentKVM: Replace read accesses of vcpu->arch.cr0 by an accessor (diff)
downloadkernel-qcow2-linux-e8467fda83cdc9de53972fee0cd2e6916cf66f41.tar.gz
kernel-qcow2-linux-e8467fda83cdc9de53972fee0cd2e6916cf66f41.tar.xz
kernel-qcow2-linux-e8467fda83cdc9de53972fee0cd2e6916cf66f41.zip
KVM: VMX: Allow the guest to own some cr0 bits
We will use this later to give the guest ownership of cr0.ts. Signed-off-by: Avi Kivity <avi@redhat.com>
Diffstat (limited to 'arch/x86/kvm/kvm_cache_regs.h')
-rw-r--r--arch/x86/kvm/kvm_cache_regs.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/x86/kvm/kvm_cache_regs.h b/arch/x86/kvm/kvm_cache_regs.h
index f46859751b30..6b419a36cbd9 100644
--- a/arch/x86/kvm/kvm_cache_regs.h
+++ b/arch/x86/kvm/kvm_cache_regs.h
@@ -40,6 +40,8 @@ static inline u64 kvm_pdptr_read(struct kvm_vcpu *vcpu, int index)
static inline ulong kvm_read_cr0_bits(struct kvm_vcpu *vcpu, ulong mask)
{
+ if (mask & vcpu->arch.cr0_guest_owned_bits)
+ kvm_x86_ops->decache_cr0_guest_bits(vcpu);
return vcpu->arch.cr0 & mask;
}