We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b1c0922 commit c814c89Copy full SHA for c814c89
cpu.c
@@ -293,7 +293,7 @@ void list_cpus(void)
293
}
294
295
#if defined(CONFIG_USER_ONLY)
296
-void tb_invalidate_phys_addr(target_ulong addr)
+void tb_invalidate_phys_addr(hwaddr addr)
297
{
298
mmap_lock();
299
tb_invalidate_phys_page(addr);
include/exec/exec-all.h
@@ -526,7 +526,7 @@ uint32_t curr_cflags(CPUState *cpu);
526
527
/* TranslationBlock invalidate API */
528
529
-void tb_invalidate_phys_addr(target_ulong addr);
+void tb_invalidate_phys_addr(hwaddr addr);
530
#else
531
void tb_invalidate_phys_addr(AddressSpace *as, hwaddr addr, MemTxAttrs attrs);
532
#endif
0 commit comments