mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-08 10:13:56 -06:00
target-xtensa: use CPU_LOG_MMU for MMU event logging
Signed-off-by: Max Filippov <jcmvbkbc@gmail.com>
This commit is contained in:
parent
f822b7e497
commit
5577e57b07
2 changed files with 6 additions and 6 deletions
|
@ -57,8 +57,8 @@ void tlb_fill(CPUState *cs,
|
|||
int ret = xtensa_get_physical_addr(env, true, vaddr, is_write, mmu_idx,
|
||||
&paddr, &page_size, &access);
|
||||
|
||||
qemu_log("%s(%08x, %d, %d) -> %08x, ret = %d\n", __func__,
|
||||
vaddr, is_write, mmu_idx, paddr, ret);
|
||||
qemu_log_mask(CPU_LOG_MMU, "%s(%08x, %d, %d) -> %08x, ret = %d\n",
|
||||
__func__, vaddr, is_write, mmu_idx, paddr, ret);
|
||||
|
||||
if (ret == 0) {
|
||||
tlb_set_page(cs,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue