From: Eddie Dong <eddie.dong@intel.com>
Date: Thu, 26 Mar 2009 07:28:40 +0000 (+0800)
Subject: KVM: MMU: Fix comment in page_fault()
X-Git-Url: http://git.cdn.openwrt.org/?a=commitdiff_plain;h=a8b876b1a469cb364fee16ba3aef01613a1231cc;p=openwrt%2Fstaging%2Fblogic.git

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>
---

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);