[PATCH 1/2] KVM MMU: fix for forgot mark parent->unsync_children bit

Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]
From: Xiao Guangrong
Date: Wednesday, May 5, 2010 - 5:19 am

When mapping a new parent to unsync shadow page, we should mark
parent's unsync_children bit

Reported-by: Marcelo Tosatti <mtosatti@redhat.com>
Signed-off-by: Xiao Guangrong <xiaoguangrong@cn.fujitsu.com>
---
 arch/x86/kvm/mmu.c |    4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)

diff --git a/arch/x86/kvm/mmu.c b/arch/x86/kvm/mmu.c
index 97f2ea0..bf35a2f 100644
--- a/arch/x86/kvm/mmu.c
+++ b/arch/x86/kvm/mmu.c
@@ -1374,7 +1374,9 @@ static struct kvm_mmu_page *kvm_mmu_get_page(struct kvm_vcpu *vcpu,
 			if (sp->unsync_children) {
 				set_bit(KVM_REQ_MMU_SYNC, &vcpu->requests);
 				kvm_mmu_mark_parents_unsync(sp);
-			}
+			} else if (sp->unsync)
+				kvm_mmu_mark_parents_unsync(sp);
+
 			trace_kvm_mmu_get_page(sp, false);
 			return sp;
 		}
-- 
1.6.1.2

--
Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]

Messages in current thread:
[PATCH 1/2] KVM MMU: fix for forgot mark parent->unsync_ch ..., Xiao Guangrong, (Wed May 5, 5:19 am)
[PATCH 2/2] KVM MMU: fix race in invlpg code, Xiao Guangrong, (Wed May 5, 5:21 am)
Re: [PATCH 2/2] KVM MMU: fix race in invlpg code, Avi Kivity, (Wed May 5, 5:31 am)
Re: [PATCH 2/2] KVM MMU: fix race in invlpg code, Xiao Guangrong, (Wed May 5, 5:45 am)
Re: [PATCH 2/2] KVM MMU: fix race in invlpg code, Avi Kivity, (Wed May 5, 5:52 am)