diff options
author | Xiao Guangrong <guangrong.xiao@linux.intel.com> | 2015-08-05 00:04:25 -0400 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2015-08-05 06:47:25 -0400 |
commit | d625b155d21bdedf7d289d422d73c644e2205624 (patch) | |
tree | 21bcc608525335b444652a565e5f2242d7cac766 | |
parent | c258b62b264fdc469b6d3610a907708068145e3b (diff) |
KVM: MMU: introduce is_shadow_zero_bits_set()
We have the same data struct to check reserved bits on guest page tables
and shadow page tables, split is_rsvd_bits_set() so that the logic can be
shared between these two paths
Signed-off-by: Xiao Guangrong <guangrong.xiao@linux.intel.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
-rw-r--r-- | arch/x86/kvm/mmu.c | 28 |
1 files changed, 19 insertions, 9 deletions
diff --git a/arch/x86/kvm/mmu.c b/arch/x86/kvm/mmu.c index 2e3e6454d977..823e3bbbbfdd 100644 --- a/arch/x86/kvm/mmu.c +++ b/arch/x86/kvm/mmu.c | |||
@@ -3268,6 +3268,25 @@ static gpa_t nonpaging_gva_to_gpa_nested(struct kvm_vcpu *vcpu, gva_t vaddr, | |||
3268 | return vcpu->arch.nested_mmu.translate_gpa(vcpu, vaddr, access, exception); | 3268 | return vcpu->arch.nested_mmu.translate_gpa(vcpu, vaddr, access, exception); |
3269 | } | 3269 | } |
3270 | 3270 | ||
3271 | static bool | ||
3272 | __is_rsvd_bits_set(struct rsvd_bits_validate *rsvd_check, u64 pte, int level) | ||
3273 | { | ||
3274 | int bit7 = (pte >> 7) & 1, low6 = pte & 0x3f; | ||
3275 | |||
3276 | return (pte & rsvd_check->rsvd_bits_mask[bit7][level-1]) | | ||
3277 | ((rsvd_check->bad_mt_xwr & (1ull << low6)) != 0); | ||
3278 | } | ||
3279 | |||
3280 | static bool is_rsvd_bits_set(struct kvm_mmu *mmu, u64 gpte, int level) | ||
3281 | { | ||
3282 | return __is_rsvd_bits_set(&mmu->guest_rsvd_check, gpte, level); | ||
3283 | } | ||
3284 | |||
3285 | static bool is_shadow_zero_bits_set(struct kvm_mmu *mmu, u64 spte, int level) | ||
3286 | { | ||
3287 | return __is_rsvd_bits_set(&mmu->shadow_zero_check, spte, level); | ||
3288 | } | ||
3289 | |||
3271 | static bool quickly_check_mmio_pf(struct kvm_vcpu *vcpu, u64 addr, bool direct) | 3290 | static bool quickly_check_mmio_pf(struct kvm_vcpu *vcpu, u64 addr, bool direct) |
3272 | { | 3291 | { |
3273 | if (direct) | 3292 | if (direct) |
@@ -3546,15 +3565,6 @@ static inline bool is_last_gpte(struct kvm_mmu *mmu, unsigned level, unsigned gp | |||
3546 | return mmu->last_pte_bitmap & (1 << index); | 3565 | return mmu->last_pte_bitmap & (1 << index); |
3547 | } | 3566 | } |
3548 | 3567 | ||
3549 | static bool is_rsvd_bits_set(struct kvm_mmu *mmu, u64 gpte, int level) | ||
3550 | { | ||
3551 | struct rsvd_bits_validate *rsvd_check = &mmu->guest_rsvd_check; | ||
3552 | int bit7 = (gpte >> 7) & 1, low6 = gpte & 0x3f; | ||
3553 | |||
3554 | return (gpte & rsvd_check->rsvd_bits_mask[bit7][level-1]) | | ||
3555 | ((rsvd_check->bad_mt_xwr & (1ull << low6)) != 0); | ||
3556 | } | ||
3557 | |||
3558 | #define PTTYPE_EPT 18 /* arbitrary */ | 3568 | #define PTTYPE_EPT 18 /* arbitrary */ |
3559 | #define PTTYPE PTTYPE_EPT | 3569 | #define PTTYPE PTTYPE_EPT |
3560 | #include "paging_tmpl.h" | 3570 | #include "paging_tmpl.h" |