Skip to content

Commit

Permalink
cpu: Eliminate cpudef_init(), cpudef_setup()
Browse files Browse the repository at this point in the history
x86_cpudef_init() doesn't do anything anymore, cpudef_init(),
cpudef_setup(), and x86_cpudef_init() can be finally removed.

Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
  • Loading branch information
ehabkost committed May 23, 2016
1 parent 9cf2cc3 commit 3e2c0e0
Show file tree
Hide file tree
Showing 7 changed files with 0 additions and 27 deletions.
7 changes: 0 additions & 7 deletions arch_init.c
Expand Up @@ -274,13 +274,6 @@ void do_smbios_option(QemuOpts *opts)
#endif
}

void cpudef_init(void)
{
#if defined(cpudef_setup)
cpudef_setup(); /* parse cpu definitions in target config file */
#endif
}

int kvm_available(void)
{
#ifdef CONFIG_KVM
Expand Down
3 changes: 0 additions & 3 deletions bsd-user/main.c
Expand Up @@ -753,9 +753,6 @@ int main(int argc, char **argv)
}

cpu_model = NULL;
#if defined(cpudef_setup)
cpudef_setup(); /* parse cpu definitions in target config file (TBD) */
#endif

optind = 1;
for(;;) {
Expand Down
1 change: 0 additions & 1 deletion include/sysemu/arch_init.h
Expand Up @@ -30,7 +30,6 @@ extern const uint32_t arch_type;
void select_soundhw(const char *optarg);
void do_acpitable_option(const QemuOpts *opts);
void do_smbios_option(QemuOpts *opts);
void cpudef_init(void);
void audio_init(void);
int kvm_available(void);
int xen_available(void);
Expand Down
3 changes: 0 additions & 3 deletions linux-user/main.c
Expand Up @@ -4154,9 +4154,6 @@ int main(int argc, char **argv, char **envp)
}

cpu_model = NULL;
#if defined(cpudef_setup)
cpudef_setup(); /* parse cpu definitions in target config file (TBD) */
#endif

srand(time(NULL));

Expand Down
4 changes: 0 additions & 4 deletions target-i386/cpu.c
Expand Up @@ -2274,10 +2274,6 @@ void cpu_clear_apic_feature(CPUX86State *env)

#endif /* !CONFIG_USER_ONLY */

void x86_cpudef_setup(void)
{
}

void cpu_x86_cpuid(CPUX86State *env, uint32_t index, uint32_t count,
uint32_t *eax, uint32_t *ebx,
uint32_t *ecx, uint32_t *edx)
Expand Down
2 changes: 0 additions & 2 deletions target-i386/cpu.h
Expand Up @@ -1225,7 +1225,6 @@ X86CPU *cpu_x86_init(const char *cpu_model);
X86CPU *cpu_x86_create(const char *cpu_model, Error **errp);
int cpu_x86_exec(CPUState *cpu);
void x86_cpu_list(FILE *f, fprintf_function cpu_fprintf);
void x86_cpudef_setup(void);
int cpu_x86_support_mca_broadcast(CPUX86State *env);

int cpu_get_pic_interrupt(CPUX86State *s);
Expand Down Expand Up @@ -1403,7 +1402,6 @@ uint64_t cpu_get_tsc(CPUX86State *env);
#define cpu_exec cpu_x86_exec
#define cpu_signal_handler cpu_x86_signal_handler
#define cpu_list x86_cpu_list
#define cpudef_setup x86_cpudef_setup

/* MMU modes definitions */
#define MMU_MODE0_SUFFIX _ksmap
Expand Down
7 changes: 0 additions & 7 deletions vl.c
Expand Up @@ -4047,13 +4047,6 @@ int main(int argc, char **argv, char **envp)
qemu_set_hw_version(machine_class->hw_version);
}

/* Init CPU def lists, based on config
* - Must be called after all the qemu_read_config_file() calls
* - Must be called before list_cpus()
* - Must be called before machine_class->init()
*/
cpudef_init();

if (cpu_model && is_help_option(cpu_model)) {
list_cpus(stdout, &fprintf, cpu_model);
exit(0);
Expand Down

0 comments on commit 3e2c0e0

Please sign in to comment.