diff options
author | Dong, Eddie <eddie.dong@intel.com> | 2009-03-30 16:21:08 +0800 |
---|---|---|
committer | Avi Kivity <avi@redhat.com> | 2009-06-10 11:48:35 +0300 |
commit | 82725b20e22fb85377f61a16f6d0d5cfc28b45d3 (patch) | |
tree | 16049e38be3262efa60f0d39a85cdf97006550cf /arch/x86/kvm/x86.c | |
parent | 362c1055e58ecd25a9393c520ab263c80b147497 (diff) | |
download | lwn-82725b20e22fb85377f61a16f6d0d5cfc28b45d3.tar.gz lwn-82725b20e22fb85377f61a16f6d0d5cfc28b45d3.zip |
KVM: MMU: Emulate #PF error code of reserved bits violation
Detect, indicate, and propagate page faults where reserved bits are set.
Take care to handle the different paging modes, each of which has different
sets of reserved bits.
[avi: fix pte reserved bits for efer.nxe=0]
Signed-off-by: Eddie Dong <eddie.dong@intel.com>
Signed-off-by: Avi Kivity <avi@redhat.com>
Diffstat (limited to 'arch/x86/kvm/x86.c')
-rw-r--r-- | arch/x86/kvm/x86.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/arch/x86/kvm/x86.c b/arch/x86/kvm/x86.c index 5bbcad345376..df866684bad1 100644 --- a/arch/x86/kvm/x86.c +++ b/arch/x86/kvm/x86.c @@ -3017,6 +3017,16 @@ struct kvm_cpuid_entry2 *kvm_find_cpuid_entry(struct kvm_vcpu *vcpu, return best; } +int cpuid_maxphyaddr(struct kvm_vcpu *vcpu) +{ + struct kvm_cpuid_entry2 *best; + + best = kvm_find_cpuid_entry(vcpu, 0x80000008, 0); + if (best) + return best->eax & 0xff; + return 36; +} + void kvm_emulate_cpuid(struct kvm_vcpu *vcpu) { u32 function, index; |