mirror of
https://github.com/qemu/qemu.git
synced 2024-12-02 16:23:35 +08:00
spapr/rtas: disable the decrementer interrupt when a CPU is unplugged
When a CPU is stopped with the 'stop-self' RTAS call, its state 'halted' is switched to 1 and, in this case, the MSR is not taken into account anymore in the cpu_has_work() routine. Only the pending hardware interrupts are checked with their LPCR:PECE* enablement bit. If the DECR timer fires after 'stop-self' is called and before the CPU 'stop' state is reached, the nearly-dead CPU will have some work to do and the guest will crash. This case happens very frequently with the not yet upstream P9 XIVE exploitation mode. In XICS mode, the DECR is occasionally fired but after 'stop' state, so no work is to be done and the guest survives. I suspect there is a race between the QEMU mainloop triggering the timers and the TCG CPU thread but I could not quite identify the root cause. To be safe, let's disable in the LPCR all the exceptions which can cause an exit while the CPU is in power-saving mode and reenable them when the CPU is started. Signed-off-by: Cédric Le Goater <clg@kaod.org> Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
This commit is contained in:
parent
67113c0342
commit
9a94ee5bb1
@ -162,6 +162,7 @@ static void rtas_start_cpu(PowerPCCPU *cpu_, sPAPRMachineState *spapr,
|
|||||||
if (cpu != NULL) {
|
if (cpu != NULL) {
|
||||||
CPUState *cs = CPU(cpu);
|
CPUState *cs = CPU(cpu);
|
||||||
CPUPPCState *env = &cpu->env;
|
CPUPPCState *env = &cpu->env;
|
||||||
|
PowerPCCPUClass *pcc = POWERPC_CPU_GET_CLASS(cpu);
|
||||||
|
|
||||||
if (!cs->halted) {
|
if (!cs->halted) {
|
||||||
rtas_st(rets, 0, RTAS_OUT_HW_ERROR);
|
rtas_st(rets, 0, RTAS_OUT_HW_ERROR);
|
||||||
@ -174,6 +175,10 @@ static void rtas_start_cpu(PowerPCCPU *cpu_, sPAPRMachineState *spapr,
|
|||||||
kvm_cpu_synchronize_state(cs);
|
kvm_cpu_synchronize_state(cs);
|
||||||
|
|
||||||
env->msr = (1ULL << MSR_SF) | (1ULL << MSR_ME);
|
env->msr = (1ULL << MSR_SF) | (1ULL << MSR_ME);
|
||||||
|
|
||||||
|
/* Enable Power-saving mode Exit Cause exceptions for the new CPU */
|
||||||
|
env->spr[SPR_LPCR] |= pcc->lpcr_pm;
|
||||||
|
|
||||||
env->nip = start;
|
env->nip = start;
|
||||||
env->gpr[3] = r3;
|
env->gpr[3] = r3;
|
||||||
cs->halted = 0;
|
cs->halted = 0;
|
||||||
@ -197,6 +202,7 @@ static void rtas_stop_self(PowerPCCPU *cpu, sPAPRMachineState *spapr,
|
|||||||
{
|
{
|
||||||
CPUState *cs = CPU(cpu);
|
CPUState *cs = CPU(cpu);
|
||||||
CPUPPCState *env = &cpu->env;
|
CPUPPCState *env = &cpu->env;
|
||||||
|
PowerPCCPUClass *pcc = POWERPC_CPU_GET_CLASS(cpu);
|
||||||
|
|
||||||
cs->halted = 1;
|
cs->halted = 1;
|
||||||
qemu_cpu_kick(cs);
|
qemu_cpu_kick(cs);
|
||||||
@ -210,6 +216,11 @@ static void rtas_stop_self(PowerPCCPU *cpu, sPAPRMachineState *spapr,
|
|||||||
* no need to bother with specific bits, we just clear it.
|
* no need to bother with specific bits, we just clear it.
|
||||||
*/
|
*/
|
||||||
env->msr = 0;
|
env->msr = 0;
|
||||||
|
|
||||||
|
/* Disable Power-saving mode Exit Cause exceptions for the CPU.
|
||||||
|
* This could deliver an interrupt on a dying CPU and crash the
|
||||||
|
* guest */
|
||||||
|
env->spr[SPR_LPCR] &= ~pcc->lpcr_pm;
|
||||||
}
|
}
|
||||||
|
|
||||||
static inline int sysparm_st(target_ulong addr, target_ulong len,
|
static inline int sysparm_st(target_ulong addr, target_ulong len,
|
||||||
|
@ -8911,6 +8911,7 @@ void cpu_ppc_set_papr(PowerPCCPU *cpu, PPCVirtualHypervisor *vhyp)
|
|||||||
CPUPPCState *env = &cpu->env;
|
CPUPPCState *env = &cpu->env;
|
||||||
ppc_spr_t *lpcr = &env->spr_cb[SPR_LPCR];
|
ppc_spr_t *lpcr = &env->spr_cb[SPR_LPCR];
|
||||||
ppc_spr_t *amor = &env->spr_cb[SPR_AMOR];
|
ppc_spr_t *amor = &env->spr_cb[SPR_AMOR];
|
||||||
|
CPUState *cs = CPU(cpu);
|
||||||
|
|
||||||
cpu->vhyp = vhyp;
|
cpu->vhyp = vhyp;
|
||||||
|
|
||||||
@ -8953,10 +8954,12 @@ void cpu_ppc_set_papr(PowerPCCPU *cpu, PPCVirtualHypervisor *vhyp)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Also set the power-saving mode bits which depend on the CPU
|
/* Only enable Power-saving mode Exit Cause exceptions on the boot
|
||||||
* family
|
* CPU. The RTAS command start-cpu will enable them on secondaries.
|
||||||
*/
|
*/
|
||||||
lpcr->default_value |= pcc->lpcr_pm;
|
if (cs == first_cpu) {
|
||||||
|
lpcr->default_value |= pcc->lpcr_pm;
|
||||||
|
}
|
||||||
|
|
||||||
/* We should be followed by a CPU reset but update the active value
|
/* We should be followed by a CPU reset but update the active value
|
||||||
* just in case...
|
* just in case...
|
||||||
|
Loading…
Reference in New Issue
Block a user