mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-12-29 18:50:29 -07:00
target/ppc: Fix mtDPDES targeting SMT siblings
A typo in the loop over SMT threads to set irq level for doorbells when storing to DPDES meant everything was aimed at the CPU executing the instruction. Cc: qemu-stable@nongnu.org Fixes:d24e80b2ae("target/ppc: Add msgsnd/p and DPDES SMT support") Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Signed-off-by: Nicholas Piggin <npiggin@gmail.com> (cherry picked from commit0324d236d2) Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
This commit is contained in:
parent
3583e93223
commit
2a14b2f441
1 changed files with 1 additions and 1 deletions
|
|
@ -288,7 +288,7 @@ void helper_store_dpdes(CPUPPCState *env, target_ulong val)
|
|||
PowerPCCPU *ccpu = POWERPC_CPU(ccs);
|
||||
uint32_t thread_id = ppc_cpu_tir(ccpu);
|
||||
|
||||
ppc_set_irq(cpu, PPC_INTERRUPT_DOORBELL, val & (0x1 << thread_id));
|
||||
ppc_set_irq(ccpu, PPC_INTERRUPT_DOORBELL, val & (0x1 << thread_id));
|
||||
}
|
||||
bql_unlock();
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue