aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/kvm
diff options
context:
space:
mode:
Diffstat (limited to 'arch/x86/kvm')
-rw-r--r--arch/x86/kvm/mmu.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/x86/kvm/mmu.c b/arch/x86/kvm/mmu.c
index a24da8f2ee91..5052acdc0a77 100644
--- a/arch/x86/kvm/mmu.c
+++ b/arch/x86/kvm/mmu.c
@@ -2097,6 +2097,7 @@ void kvm_mmu_slot_remove_write_access(struct kvm *kvm, int slot)
2097{ 2097{
2098 struct kvm_mmu_page *sp; 2098 struct kvm_mmu_page *sp;
2099 2099
2100 spin_lock(&kvm->mmu_lock);
2100 list_for_each_entry(sp, &kvm->arch.active_mmu_pages, link) { 2101 list_for_each_entry(sp, &kvm->arch.active_mmu_pages, link) {
2101 int i; 2102 int i;
2102 u64 *pt; 2103 u64 *pt;
@@ -2110,6 +2111,7 @@ void kvm_mmu_slot_remove_write_access(struct kvm *kvm, int slot)
2110 if (pt[i] & PT_WRITABLE_MASK) 2111 if (pt[i] & PT_WRITABLE_MASK)
2111 pt[i] &= ~PT_WRITABLE_MASK; 2112 pt[i] &= ~PT_WRITABLE_MASK;
2112 } 2113 }
2114 spin_unlock(&kvm->mmu_lock);
2113} 2115}
2114 2116
2115void kvm_mmu_zap_all(struct kvm *kvm) 2117void kvm_mmu_zap_all(struct kvm *kvm)