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 --- target-i386/helper.c | 22 +++++++++++----------- target-i386/op_helper.c | 8 ++++---- 2 files changed, 15 insertions(+), 15 deletions(-) (limited to 'target-i386') diff --git a/target-i386/helper.c b/target-i386/helper.c index e70e63e..8111f25 100644 --- a/target-i386/helper.c +++ b/target-i386/helper.c @@ -91,7 +91,7 @@ static void add_flagname_to_bitmaps(const char *flagname, uint32_t *features, } } -typedef struct x86_def { +typedef struct x86_def_t { const char *name; uint32_t level; uint32_t vendor1, vendor2, vendor3; @@ -102,7 +102,7 @@ typedef struct x86_def { uint32_t xlevel; char model_id[48]; int vendor_override; -} a_x86_def; +} x86_def_t; #define I486_FEATURES (CPUID_FP87 | CPUID_VME | CPUID_PSE) #define PENTIUM_FEATURES (I486_FEATURES | CPUID_DE | CPUID_TSC | \ @@ -115,7 +115,7 @@ typedef struct x86_def { CPUID_MSR | CPUID_MCE | CPUID_CX8 | CPUID_PGE | CPUID_CMOV | \ CPUID_PAT | CPUID_FXSR | CPUID_MMX | CPUID_SSE | CPUID_SSE2 | \ CPUID_PAE | CPUID_SEP | CPUID_APIC) -static a_x86_def x86_defs[] = { +static x86_def_t x86_defs[] = { #ifdef TARGET_X86_64 { .name = "qemu64", @@ -336,7 +336,7 @@ static int cpu_x86_fill_model_id(char *str) return 0; } -static int cpu_x86_fill_host(a_x86_def *x86_cpu_def) +static int cpu_x86_fill_host(x86_def_t *x86_cpu_def) { uint32_t eax = 0, ebx = 0, ecx = 0, edx = 0; @@ -366,10 +366,10 @@ static int cpu_x86_fill_host(a_x86_def *x86_cpu_def) return 0; } -static int cpu_x86_find_by_name(a_x86_def *x86_cpu_def, const char *cpu_model) +static int cpu_x86_find_by_name(x86_def_t *x86_cpu_def, const char *cpu_model) { unsigned int i; - a_x86_def *def; + x86_def_t *def; char *s = strdup(cpu_model); char *featurestr, *name = strtok(s, ","); @@ -501,7 +501,7 @@ void x86_cpu_list (FILE *f, int (*cpu_fprintf)(FILE *f, const char *fmt, ...)) static int cpu_x86_register (CPUX86State *env, const char *cpu_model) { - a_x86_def def1, *def = &def1; + x86_def_t def1, *def = &def1; if (cpu_x86_find_by_name(def, cpu_model) < 0) return -1; @@ -1030,7 +1030,7 @@ int cpu_x86_handle_mmu_fault(CPUX86State *env, target_ulong addr, return 1; } -a_target_phys_addr cpu_get_phys_page_debug(CPUState *env, target_ulong addr) +target_phys_addr_t cpu_get_phys_page_debug(CPUState *env, target_ulong addr) { return addr; } @@ -1057,7 +1057,7 @@ int cpu_x86_handle_mmu_fault(CPUX86State *env, target_ulong addr, uint64_t ptep, pte; target_ulong pde_addr, pte_addr; int error_code, is_dirty, prot, page_size, ret, is_write, is_user; - a_target_phys_addr paddr; + target_phys_addr_t paddr; uint32_t page_offset; target_ulong vaddr, virt_addr; @@ -1341,11 +1341,11 @@ int cpu_x86_handle_mmu_fault(CPUX86State *env, target_ulong addr, return 1; } -a_target_phys_addr cpu_get_phys_page_debug(CPUState *env, target_ulong addr) +target_phys_addr_t cpu_get_phys_page_debug(CPUState *env, target_ulong addr) { target_ulong pde_addr, pte_addr; uint64_t pte; - a_target_phys_addr paddr; + target_phys_addr_t paddr; uint32_t page_offset; int page_size; diff --git a/target-i386/op_helper.c b/target-i386/op_helper.c index c796df0..33d44b0 100644 --- a/target-i386/op_helper.c +++ b/target-i386/op_helper.c @@ -106,7 +106,7 @@ static const CPU86_LDouble f15rk[7] = /* broken thread support */ -static a_spinlock global_cpu_lock = SPIN_LOCK_UNLOCKED; +static spinlock_t global_cpu_lock = SPIN_LOCK_UNLOCKED; void helper_lock(void) { @@ -4855,7 +4855,7 @@ void helper_svm_check_io(uint32_t port, uint32_t param, } #else -static inline void svm_save_seg(a_target_phys_addr addr, +static inline void svm_save_seg(target_phys_addr_t addr, const SegmentCache *sc) { stw_phys(addr + offsetof(struct vmcb_seg, selector), @@ -4868,7 +4868,7 @@ static inline void svm_save_seg(a_target_phys_addr addr, ((sc->flags >> 8) & 0xff) | ((sc->flags >> 12) & 0x0f00)); } -static inline void svm_load_seg(a_target_phys_addr addr, SegmentCache *sc) +static inline void svm_load_seg(target_phys_addr_t addr, SegmentCache *sc) { unsigned int flags; @@ -4879,7 +4879,7 @@ static inline void svm_load_seg(a_target_phys_addr addr, SegmentCache *sc) sc->flags = ((flags & 0xff) << 8) | ((flags & 0x0f00) << 12); } -static inline void svm_load_seg_cache(a_target_phys_addr addr, +static inline void svm_load_seg_cache(target_phys_addr_t addr, CPUState *env, int seg_reg) { SegmentCache sc1, *sc = &sc1; -- cgit v1.1