Commit 518c5a05 authored by Gui Jianfeng's avatar Gui Jianfeng Committed by Avi Kivity

KVM: MMU: Fix debug output error in walk_addr()

Fix a debug output error in walk_addr
Signed-off-by: default avatarGui Jianfeng <guijianfeng@cn.fujitsu.com>
Signed-off-by: default avatarAvi Kivity <avi@redhat.com>
parent f3b8c964
......@@ -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:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment