mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-05 16:53:55 -06:00
ppc: Rename 2.13 machines to 3.0
Rename the 2.13 machines to match the number we're going to use for the next release. Signed-off-by: Peter Maydell <peter.maydell@linaro.org> Reviewed-by: Cornelia Huck <cohuck@redhat.com> Reviewed-by: Thomas Huth <thuth@redhat.com> Reviewed-by: Greg Kurz <groug@kaod.org> Message-id: 20180522104000.9044-5-peter.maydell@linaro.org
This commit is contained in:
parent
2c5a2eefa6
commit
d8c0c7af80
4 changed files with 13 additions and 13 deletions
|
@ -1215,7 +1215,7 @@ struct PowerPCCPU {
|
|||
uint64_t mig_insns_flags2;
|
||||
uint32_t mig_nb_BATs;
|
||||
bool pre_2_10_migration;
|
||||
bool pre_2_13_migration;
|
||||
bool pre_3_0_migration;
|
||||
int32_t mig_slb_nr;
|
||||
};
|
||||
|
||||
|
|
|
@ -150,11 +150,11 @@ static bool cpu_pre_2_8_migration(void *opaque, int version_id)
|
|||
}
|
||||
|
||||
#if defined(TARGET_PPC64)
|
||||
static bool cpu_pre_2_13_migration(void *opaque, int version_id)
|
||||
static bool cpu_pre_3_0_migration(void *opaque, int version_id)
|
||||
{
|
||||
PowerPCCPU *cpu = opaque;
|
||||
|
||||
return cpu->pre_2_13_migration;
|
||||
return cpu->pre_3_0_migration;
|
||||
}
|
||||
#endif
|
||||
|
||||
|
@ -220,7 +220,7 @@ static int cpu_pre_save(void *opaque)
|
|||
cpu->mig_insns_flags2 = env->insns_flags2 & insns_compat_mask2;
|
||||
cpu->mig_nb_BATs = env->nb_BATs;
|
||||
}
|
||||
if (cpu->pre_2_13_migration) {
|
||||
if (cpu->pre_3_0_migration) {
|
||||
if (cpu->hash64_opts) {
|
||||
cpu->mig_slb_nr = cpu->hash64_opts->slb_size;
|
||||
}
|
||||
|
@ -517,7 +517,7 @@ static const VMStateDescription vmstate_slb = {
|
|||
.needed = slb_needed,
|
||||
.post_load = slb_post_load,
|
||||
.fields = (VMStateField[]) {
|
||||
VMSTATE_INT32_TEST(mig_slb_nr, PowerPCCPU, cpu_pre_2_13_migration),
|
||||
VMSTATE_INT32_TEST(mig_slb_nr, PowerPCCPU, cpu_pre_3_0_migration),
|
||||
VMSTATE_SLB_ARRAY(env.slb, PowerPCCPU, MAX_SLB_ENTRIES),
|
||||
VMSTATE_END_OF_LIST()
|
||||
}
|
||||
|
|
|
@ -10427,7 +10427,7 @@ static Property ppc_cpu_properties[] = {
|
|||
DEFINE_PROP_BOOL("pre-2.8-migration", PowerPCCPU, pre_2_8_migration, false),
|
||||
DEFINE_PROP_BOOL("pre-2.10-migration", PowerPCCPU, pre_2_10_migration,
|
||||
false),
|
||||
DEFINE_PROP_BOOL("pre-2.13-migration", PowerPCCPU, pre_2_13_migration,
|
||||
DEFINE_PROP_BOOL("pre-3.0-migration", PowerPCCPU, pre_3_0_migration,
|
||||
false),
|
||||
DEFINE_PROP_END_OF_LIST(),
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue