summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEddie Dong2009-03-26 08:28:40 +0100
committerAvi Kivity2009-06-10 10:48:34 +0200
commita8b876b1a469cb364fee16ba3aef01613a1231cc (patch)
tree13b6e8919135918b9c05a2b507810baa3add5624
parentKVM: VMX: Correct wrong vmcs field sizes (diff)
downloadkernel-qcow2-linux-a8b876b1a469cb364fee16ba3aef01613a1231cc.tar.gz
kernel-qcow2-linux-a8b876b1a469cb364fee16ba3aef01613a1231cc.tar.xz
kernel-qcow2-linux-a8b876b1a469cb364fee16ba3aef01613a1231cc.zip
KVM: MMU: Fix comment in page_fault()
The original one is for the code before refactoring. Signed-off-by: Yaozu (Eddie) Dong <eddie.dong@intel.com> Signed-off-by: Sheng Yang <sheng@linux.intel.com> Signed-off-by: Avi Kivity <avi@redhat.com>
-rw-r--r--arch/x86/kvm/paging_tmpl.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/kvm/paging_tmpl.h b/arch/x86/kvm/paging_tmpl.h
index 855eb7111049..eae949973d09 100644
--- a/arch/x86/kvm/paging_tmpl.h
+++ b/arch/x86/kvm/paging_tmpl.h
@@ -379,7 +379,7 @@ static int FNAME(page_fault)(struct kvm_vcpu *vcpu, gva_t addr,
return r;
/*
- * Look up the shadow pte for the faulting address.
+ * Look up the guest pte for the faulting address.
*/
r = FNAME(walk_addr)(&walker, vcpu, addr, write_fault, user_fault,
fetch_fault);