mirror of https://gitee.com/openkylin/qemu.git
target/ppc/machine: Add kvmppc_pvr_workaround_required() stub
This allows to drop the CONFIG_KVM guard from the code. Signed-off-by: Greg Kurz <groug@kaod.org> Message-Id: <156051056289.224162.15553539098911498678.stgit@bahia.lan> Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
This commit is contained in:
parent
9723295a72
commit
001d235c7e
|
@ -399,6 +399,11 @@ static inline int kvmppc_resize_hpt_commit(PowerPCCPU *cpu,
|
||||||
return -ENOSYS;
|
return -ENOSYS;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static inline bool kvmppc_pvr_workaround_required(PowerPCCPU *cpu)
|
||||||
|
{
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifndef CONFIG_KVM
|
#ifndef CONFIG_KVM
|
||||||
|
|
|
@ -378,11 +378,9 @@ static int cpu_post_load(void *opaque, int version_id)
|
||||||
* receive the PVR it expects as a workaround.
|
* receive the PVR it expects as a workaround.
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
#if defined(CONFIG_KVM)
|
|
||||||
if (kvmppc_pvr_workaround_required(cpu)) {
|
if (kvmppc_pvr_workaround_required(cpu)) {
|
||||||
env->spr[SPR_PVR] = env->spr_cb[SPR_PVR].default_value;
|
env->spr[SPR_PVR] = env->spr_cb[SPR_PVR].default_value;
|
||||||
}
|
}
|
||||||
#endif
|
|
||||||
|
|
||||||
env->lr = env->spr[SPR_LR];
|
env->lr = env->spr[SPR_LR];
|
||||||
env->ctr = env->spr[SPR_CTR];
|
env->ctr = env->spr[SPR_CTR];
|
||||||
|
|
Loading…
Reference in New Issue