mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00
KVM: MMU: Fix debug output error in walk_addr()
Fix a debug output error in walk_addr Signed-off-by: Gui Jianfeng <guijianfeng@cn.fujitsu.com> Signed-off-by: Avi Kivity <avi@redhat.com>
This commit is contained in:
parent
f3b8c964a9
commit
518c5a05e8
1 changed files with 1 additions and 1 deletions
|
@ -229,7 +229,7 @@ walk:
|
||||||
walker->pt_access = pt_access;
|
walker->pt_access = pt_access;
|
||||||
walker->pte_access = pte_access;
|
walker->pte_access = pte_access;
|
||||||
pgprintk("%s: pte %llx pte_access %x pt_access %x\n",
|
pgprintk("%s: pte %llx pte_access %x pt_access %x\n",
|
||||||
__func__, (u64)pte, pt_access, pte_access);
|
__func__, (u64)pte, pte_access, pt_access);
|
||||||
return 1;
|
return 1;
|
||||||
|
|
||||||
not_present:
|
not_present:
|
||||||
|
|
Loading…
Add table
Reference in a new issue