From c227f0995e1722a1abccc28cadf0664266bd8043 Mon Sep 17 00:00:00 2001 From: Anthony Liguori Date: Thu, 1 Oct 2009 16:12:16 -0500 Subject: Revert "Get rid of _t suffix" In the very least, a change like this requires discussion on the list. The naming convention is goofy and it causes a massive merge problem. Something like this _must_ be presented on the list first so people can provide input and cope with it. This reverts commit 99a0949b720a0936da2052cb9a46db04ffc6db29. Signed-off-by: Anthony Liguori --- exec-all.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'exec-all.h') diff --git a/exec-all.h b/exec-all.h index 412b53a071..dd134a99f8 100644 --- a/exec-all.h +++ b/exec-all.h @@ -81,16 +81,16 @@ TranslationBlock *tb_gen_code(CPUState *env, void cpu_exec_init(CPUState *env); void QEMU_NORETURN cpu_loop_exit(void); int page_unprotect(target_ulong address, unsigned long pc, void *puc); -void tb_invalidate_phys_page_range(a_target_phys_addr start, a_target_phys_addr end, +void tb_invalidate_phys_page_range(target_phys_addr_t start, target_phys_addr_t end, int is_cpu_write_access); void tb_invalidate_page_range(target_ulong start, target_ulong end); void tlb_flush_page(CPUState *env, target_ulong addr); void tlb_flush(CPUState *env, int flush_global); int tlb_set_page_exec(CPUState *env, target_ulong vaddr, - a_target_phys_addr paddr, int prot, + target_phys_addr_t paddr, int prot, int mmu_idx, int is_softmmu); static inline int tlb_set_page(CPUState *env1, target_ulong vaddr, - a_target_phys_addr paddr, int prot, + target_phys_addr_t paddr, int prot, int mmu_idx, int is_softmmu) { if (prot & PAGE_READ) @@ -269,7 +269,7 @@ extern void *io_mem_opaque[IO_MEM_NB_ENTRIES]; #include "qemu-lock.h" -extern a_spinlock tb_lock; +extern spinlock_t tb_lock; extern int tb_invalidated_flag; -- cgit v1.2.3