[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[qemu-s390x] [PATCH v7 52/73] s390x: convert to cpu_interrupt_request
From: |
Emilio G. Cota |
Subject: |
[qemu-s390x] [PATCH v7 52/73] s390x: convert to cpu_interrupt_request |
Date: |
Mon, 4 Mar 2019 13:17:52 -0500 |
Cc: Cornelia Huck <address@hidden>
Cc: Christian Borntraeger <address@hidden>
Cc: David Hildenbrand <address@hidden>
Cc: address@hidden
Reviewed-by: Richard Henderson <address@hidden>
Reviewed-by: Alex Bennée <address@hidden>
Reviewed-by: Cornelia Huck <address@hidden>
Signed-off-by: Emilio G. Cota <address@hidden>
---
hw/intc/s390_flic.c | 2 +-
target/s390x/cpu.c | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/hw/intc/s390_flic.c b/hw/intc/s390_flic.c
index bfb5cf1d07..d944824e67 100644
--- a/hw/intc/s390_flic.c
+++ b/hw/intc/s390_flic.c
@@ -189,7 +189,7 @@ static void qemu_s390_flic_notify(uint32_t type)
CPU_FOREACH(cs) {
S390CPU *cpu = S390_CPU(cs);
- cs->interrupt_request |= CPU_INTERRUPT_HARD;
+ cpu_interrupt_request_or(cs, CPU_INTERRUPT_HARD);
/* ignore CPUs that are not sleeping */
if (s390_cpu_get_state(cpu) != S390_CPU_STATE_OPERATING &&
diff --git a/target/s390x/cpu.c b/target/s390x/cpu.c
index 4e17df5c39..5169adb6a5 100644
--- a/target/s390x/cpu.c
+++ b/target/s390x/cpu.c
@@ -62,7 +62,7 @@ static bool s390_cpu_has_work(CPUState *cs)
return false;
}
- if (!(cs->interrupt_request & CPU_INTERRUPT_HARD)) {
+ if (!(cpu_interrupt_request(cs) & CPU_INTERRUPT_HARD)) {
return false;
}
--
2.17.1
- [qemu-s390x] [PATCH v7 00/73] per-CPU locks, Emilio G. Cota, 2019/03/04
- [qemu-s390x] [PATCH v7 36/73] s390x: use cpu_reset_interrupt, Emilio G. Cota, 2019/03/04
- [qemu-s390x] [PATCH v7 25/73] s390x: convert to cpu_halted, Emilio G. Cota, 2019/03/04
- [qemu-s390x] [PATCH v7 52/73] s390x: convert to cpu_interrupt_request,
Emilio G. Cota <=
- [qemu-s390x] [PATCH v7 65/73] s390x: convert to cpu_has_work_with_iothread_lock, Emilio G. Cota, 2019/03/04
- Re: [qemu-s390x] [PATCH v7 00/73] per-CPU locks, Alex Bennée, 2019/03/05
- Re: [qemu-s390x] [PATCH v7 00/73] per-CPU locks, Richard Henderson, 2019/03/06