projects
/
qemu.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
82ce3d5
)
target/ppc: Fix msgclrp interrupt type
author
Nicholas Piggin
<npiggin@gmail.com>
Tue, 30 May 2023 13:07:14 +0000
(23:07 +1000)
committer
Daniel Henrique Barboza
<danielhb413@gmail.com>
Sat, 10 Jun 2023 13:19:24 +0000
(10:19 -0300)
msgclrp matches msgsndp and should clear PPC_INTERRUPT_DOORBELL.
Signed-off-by: Nicholas Piggin <npiggin@gmail.com>
Reviewed-by: Cédric Le Goater <clg@kaod.org>
Message-Id: <
20230530130714
.373215-1-npiggin@gmail.com>
Signed-off-by: Daniel Henrique Barboza <danielhb413@gmail.com>
target/ppc/excp_helper.c
patch
|
blob
|
history
diff --git
a/target/ppc/excp_helper.c
b/target/ppc/excp_helper.c
index 9ffcfe788a1d73952c88495d6a73e66de7dee6bb..de6ad121d280b51e80435cdf3db264c359484fd8 100644
(file)
--- a/
target/ppc/excp_helper.c
+++ b/
target/ppc/excp_helper.c
@@
-3071,7
+3071,7
@@
void helper_book3s_msgclrp(CPUPPCState *env, target_ulong rb)
return;
}
- ppc_set_irq(env_archcpu(env), PPC_INTERRUPT_
H
DOORBELL, 0);
+ ppc_set_irq(env_archcpu(env), PPC_INTERRUPT_DOORBELL, 0);
}
/*