From: Matheus Ferst Date: Tue, 11 Oct 2022 20:48:09 +0000 (-0300) Subject: target/ppc: remove generic architecture checks from p9_deliver_interrupt X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=ed3a24c95a9d8d870bf671d5675b8b4b32a0db75;p=qmiga%2Fqemu.git target/ppc: remove generic architecture checks from p9_deliver_interrupt Signed-off-by: Matheus Ferst Reviewed-by: Fabiano Rosas Message-Id: <20221011204829.1641124-10-matheus.ferst@eldorado.org.br> Signed-off-by: Daniel Henrique Barboza --- diff --git a/target/ppc/excp_helper.c b/target/ppc/excp_helper.c index 288bb20deb..238ce78235 100644 --- a/target/ppc/excp_helper.c +++ b/target/ppc/excp_helper.c @@ -1925,18 +1925,11 @@ static void p9_deliver_interrupt(CPUPPCState *env, int interrupt) break; case PPC_INTERRUPT_DECR: /* Decrementer exception */ - if (ppc_decr_clear_on_delivery(env)) { - env->pending_interrupts &= ~PPC_INTERRUPT_DECR; - } powerpc_excp(cpu, POWERPC_EXCP_DECR); break; case PPC_INTERRUPT_DOORBELL: env->pending_interrupts &= ~PPC_INTERRUPT_DOORBELL; - if (is_book3s_arch2x(env)) { - powerpc_excp(cpu, POWERPC_EXCP_SDOOR); - } else { - powerpc_excp(cpu, POWERPC_EXCP_DOORI); - } + powerpc_excp(cpu, POWERPC_EXCP_SDOOR); break; case PPC_INTERRUPT_HDOORBELL: env->pending_interrupts &= ~PPC_INTERRUPT_HDOORBELL;