mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-09 10:34:58 -06:00
target-s390x: Use CPU_LOG_INT
Three places in the interrupt code did we not honor the mask. Reviewed-by: Alexander Graf <agraf@suse.de> Signed-off-by: Richard Henderson <rth@twiddle.net> Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
This commit is contained in:
parent
daa47c34a8
commit
0d404541b2
2 changed files with 6 additions and 4 deletions
|
@ -53,7 +53,8 @@ void HELPER(exception)(CPUS390XState *env, uint32_t excp)
|
|||
#ifndef CONFIG_USER_ONLY
|
||||
void program_interrupt(CPUS390XState *env, uint32_t code, int ilc)
|
||||
{
|
||||
qemu_log("program interrupt at %#" PRIx64 "\n", env->psw.addr);
|
||||
qemu_log_mask(CPU_LOG_INT, "program interrupt at %#" PRIx64 "\n",
|
||||
env->psw.addr);
|
||||
|
||||
if (kvm_enabled()) {
|
||||
#ifdef CONFIG_KVM
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue