[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v8 32/74] cpu: convert to cpu_halted
From: |
Robert Foley |
Subject: |
[PATCH v8 32/74] cpu: convert to cpu_halted |
Date: |
Thu, 26 Mar 2020 15:31:14 -0400 |
From: "Emilio G. Cota" <address@hidden>
This finishes the conversion to cpu_halted.
Reviewed-by: Alex Bennée <address@hidden>
Reviewed-by: Richard Henderson <address@hidden>
Signed-off-by: Emilio G. Cota <address@hidden>
Signed-off-by: Robert Foley <address@hidden>
---
accel/tcg/cpu-exec.c | 2 +-
cpus.c | 4 ++--
hw/core/cpu.c | 2 +-
hw/core/machine-qmp-cmds.c | 2 +-
4 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/accel/tcg/cpu-exec.c b/accel/tcg/cpu-exec.c
index e296894ea1..099dd83ee0 100644
--- a/accel/tcg/cpu-exec.c
+++ b/accel/tcg/cpu-exec.c
@@ -435,7 +435,7 @@ static inline bool cpu_handle_halt_locked(CPUState *cpu)
&& replay_interrupt()) {
X86CPU *x86_cpu = X86_CPU(cpu);
- /* prevent deadlock; cpu_mutex must be acquired _after_ the BQL */
+ /* locking order: cpu_mutex must be acquired _after_ the BQL */
cpu_mutex_unlock(cpu);
qemu_mutex_lock_iothread();
cpu_mutex_lock(cpu);
diff --git a/cpus.c b/cpus.c
index f27fb19b7c..50ced4369f 100644
--- a/cpus.c
+++ b/cpus.c
@@ -225,7 +225,7 @@ static bool cpu_thread_is_idle(CPUState *cpu)
if (cpu_is_stopped(cpu)) {
return true;
}
- if (!cpu->halted || cpu_has_work(cpu) ||
+ if (!cpu_halted(cpu) || cpu_has_work(cpu) ||
kvm_halt_in_kernel()) {
return false;
}
@@ -1840,7 +1840,7 @@ static void *qemu_tcg_cpu_thread_fn(void *arg)
*
* cpu->halted should ensure we sleep in wait_io_event
*/
- g_assert(cpu->halted);
+ g_assert(cpu_halted(cpu));
break;
case EXCP_ATOMIC:
qemu_mutex_unlock_iothread();
diff --git a/hw/core/cpu.c b/hw/core/cpu.c
index d67bd58827..9683d6408a 100644
--- a/hw/core/cpu.c
+++ b/hw/core/cpu.c
@@ -257,7 +257,7 @@ static void cpu_common_reset(DeviceState *dev)
}
cpu->interrupt_request = 0;
- cpu->halted = 0;
+ cpu_halted_set(cpu, 0);
cpu->mem_io_pc = 0;
cpu->icount_extra = 0;
atomic_set(&cpu->icount_decr_ptr->u32, 0);
diff --git a/hw/core/machine-qmp-cmds.c b/hw/core/machine-qmp-cmds.c
index eed5aeb2f7..7d33489110 100644
--- a/hw/core/machine-qmp-cmds.c
+++ b/hw/core/machine-qmp-cmds.c
@@ -58,7 +58,7 @@ CpuInfoList *qmp_query_cpus(Error **errp)
info->value = g_malloc0(sizeof(*info->value));
info->value->CPU = cpu->cpu_index;
info->value->current = (cpu == first_cpu);
- info->value->halted = cpu->halted;
+ info->value->halted = cpu_halted(cpu);
info->value->qom_path = object_get_canonical_path(OBJECT(cpu));
info->value->thread_id = cpu->thread_id;
#if defined(TARGET_I386)
--
2.17.1
- [PATCH v8 25/74] riscv: convert to cpu_halted, (continued)
- [PATCH v8 25/74] riscv: convert to cpu_halted, Robert Foley, 2020/03/26
- [PATCH v8 28/74] xtensa: convert to cpu_halted, Robert Foley, 2020/03/26
- [PATCH v8 27/74] sparc: convert to cpu_halted, Robert Foley, 2020/03/26
- [PATCH v8 26/74] s390x: convert to cpu_halted, Robert Foley, 2020/03/26
- [PATCH v8 34/74] ppc: use cpu_reset_interrupt, Robert Foley, 2020/03/26
- [PATCH v8 36/74] i386: use cpu_reset_interrupt, Robert Foley, 2020/03/26
- [PATCH v8 39/74] arm: convert to cpu_interrupt_request, Robert Foley, 2020/03/26
- [PATCH v8 29/74] gdbstub: convert to cpu_halted, Robert Foley, 2020/03/26
- [PATCH v8 30/74] openrisc: convert to cpu_halted, Robert Foley, 2020/03/26
- [PATCH v8 31/74] cpu-exec: convert to cpu_halted, Robert Foley, 2020/03/26
- [PATCH v8 32/74] cpu: convert to cpu_halted,
Robert Foley <=
- [PATCH v8 33/74] cpu: define cpu_interrupt_request helpers, Robert Foley, 2020/03/26
- [PATCH v8 35/74] exec: use cpu_reset_interrupt, Robert Foley, 2020/03/26
- [PATCH v8 37/74] s390x: use cpu_reset_interrupt, Robert Foley, 2020/03/26
- [PATCH v8 38/74] openrisc: use cpu_reset_interrupt, Robert Foley, 2020/03/26
- [PATCH v8 43/74] i386/whpx-all: convert to cpu_interrupt_request, Robert Foley, 2020/03/26
- [PATCH v8 40/74] i386: convert to cpu_interrupt_request, Robert Foley, 2020/03/26
- [PATCH v8 46/74] sh4: convert to cpu_interrupt_request, Robert Foley, 2020/03/26
- [PATCH v8 41/74] i386/kvm: convert to cpu_interrupt_request, Robert Foley, 2020/03/26
- [PATCH v8 42/74] i386/hax-all: convert to cpu_interrupt_request, Robert Foley, 2020/03/26
- [PATCH v8 48/74] hppa: convert to cpu_interrupt_request, Robert Foley, 2020/03/26