}
#else
/* implicitly set for linux-user only */
- cpu->env.core_id = scc->next_cpu_id;
+ cpu->env.core_id = scc->next_core_id;
#endif
if (cpu_exists(cpu->env.core_id)) {
", it already exists", cpu->env.core_id);
goto out;
}
- if (cpu->env.core_id != scc->next_cpu_id) {
+ if (cpu->env.core_id != scc->next_core_id) {
error_setg(&err, "Unable to add CPU with core-id: %" PRIu32
- ", the next available core-id is %" PRIi64, cpu->env.core_id,
- scc->next_cpu_id);
+ ", the next available core-id is %" PRIu32, cpu->env.core_id,
+ scc->next_core_id);
goto out;
}
if (err != NULL) {
goto out;
}
- scc->next_cpu_id++;
+ scc->next_core_id++;
#if !defined(CONFIG_USER_ONLY)
qemu_register_reset(s390_cpu_machine_reset_cb, cpu);
CPUClass *cc = CPU_CLASS(scc);
DeviceClass *dc = DEVICE_CLASS(oc);
- scc->next_cpu_id = 0;
scc->parent_realize = dc->realize;
dc->realize = s390_cpu_realizefn;
dc->props = s390x_cpu_properties;