aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--arch/x86/kvm/mmu.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/arch/x86/kvm/mmu.c b/arch/x86/kvm/mmu.c
index d1e09f3c5614..41e801b53064 100644
--- a/arch/x86/kvm/mmu.c
+++ b/arch/x86/kvm/mmu.c
@@ -1160,9 +1160,11 @@ static int __mmu_unsync_walk(struct kvm_mmu_page *sp,
1160 return -ENOSPC; 1160 return -ENOSPC;
1161 1161
1162 ret = __mmu_unsync_walk(child, pvec); 1162 ret = __mmu_unsync_walk(child, pvec);
1163 if (!ret) 1163 if (!ret) {
1164 __clear_bit(i, sp->unsync_child_bitmap); 1164 __clear_bit(i, sp->unsync_child_bitmap);
1165 else if (ret > 0) 1165 sp->unsync_children--;
1166 WARN_ON((int)sp->unsync_children < 0);
1167 } else if (ret > 0)
1166 nr_unsync_leaf += ret; 1168 nr_unsync_leaf += ret;
1167 else 1169 else
1168 return ret; 1170 return ret;
@@ -1176,8 +1178,6 @@ static int __mmu_unsync_walk(struct kvm_mmu_page *sp,
1176 } 1178 }
1177 } 1179 }
1178 1180
1179 if (find_first_bit(sp->unsync_child_bitmap, 512) == 512)
1180 sp->unsync_children = 0;
1181 1181
1182 return nr_unsync_leaf; 1182 return nr_unsync_leaf;
1183} 1183}