Skip to content

Commit

Permalink
KVM: MMU: Fix debug output error in walk_addr()
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Gui Jianfeng authored and Avi Kivity committed Aug 1, 2010
1 parent f3b8c96 commit 518c5a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arch/x86/kvm/paging_tmpl.h
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ static int FNAME(walk_addr)(struct guest_walker *walker,
walker->pt_access = pt_access;
walker->pte_access = pte_access;
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;

not_present:
Expand Down

0 comments on commit 518c5a0

Please sign in to comment.