aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--arch/x86/kvm/mmu.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/arch/x86/kvm/mmu.c b/arch/x86/kvm/mmu.c
index 2fa82b04f14e..40737b38da19 100644
--- a/arch/x86/kvm/mmu.c
+++ b/arch/x86/kvm/mmu.c
@@ -2328,9 +2328,8 @@ static int mmu_need_write_protect(struct kvm_vcpu *vcpu, gfn_t gfn,
2328 if (s->role.level != PT_PAGE_TABLE_LEVEL) 2328 if (s->role.level != PT_PAGE_TABLE_LEVEL)
2329 return 1; 2329 return 1;
2330 2330
2331 if (!need_unsync && !s->unsync) { 2331 if (!s->unsync)
2332 need_unsync = true; 2332 need_unsync = true;
2333 }
2334 } 2333 }
2335 if (need_unsync) 2334 if (need_unsync)
2336 kvm_unsync_pages(vcpu, gfn); 2335 kvm_unsync_pages(vcpu, gfn);
@@ -4008,7 +4007,7 @@ void kvm_mmu_pte_write(struct kvm_vcpu *vcpu, gpa_t gpa,
4008 !((sp->role.word ^ vcpu->arch.mmu.base_role.word) 4007 !((sp->role.word ^ vcpu->arch.mmu.base_role.word)
4009 & mask.word) && rmap_can_add(vcpu)) 4008 & mask.word) && rmap_can_add(vcpu))
4010 mmu_pte_write_new_pte(vcpu, sp, spte, &gentry); 4009 mmu_pte_write_new_pte(vcpu, sp, spte, &gentry);
4011 if (!remote_flush && need_remote_flush(entry, *spte)) 4010 if (need_remote_flush(entry, *spte))
4012 remote_flush = true; 4011 remote_flush = true;
4013 ++spte; 4012 ++spte;
4014 } 4013 }