diff options
| author | Paolo Bonzini | 2017-01-27 11:25:33 +0100 |
|---|---|---|
| committer | Paolo Bonzini | 2017-02-22 14:56:34 +0100 |
| commit | 1aab16c28a0232d898d6f56f5a56019472296ee7 (patch) | |
| tree | 26769555a8a10e4e8e7006462b30b633fc1b036b /qom | |
| parent | Merge remote-tracking branch 'remotes/armbru/tags/pull-block-2017-02-21' into... (diff) | |
| download | qemu-1aab16c28a0232d898d6f56f5a56019472296ee7.tar.gz qemu-1aab16c28a0232d898d6f56f5a56019472296ee7.tar.xz qemu-1aab16c28a0232d898d6f56f5a56019472296ee7.zip | |
cpu-exec: unify icount_decr and tcg_exit_req
The icount interrupt flag and tcg_exit_req serve almost the same
purpose, let's make them completely the same.
The former TB_EXIT_REQUESTED and TB_EXIT_ICOUNT_EXPIRED cases are
unified, since we can distinguish them from the value of the
interrupt flag.
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'qom')
| -rw-r--r-- | qom/cpu.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -123,7 +123,7 @@ void cpu_exit(CPUState *cpu) atomic_set(&cpu->exit_request, 1); /* Ensure cpu_exec will see the exit request after TCG has exited. */ smp_wmb(); - atomic_set(&cpu->tcg_exit_req, 1); + atomic_set(&cpu->icount_decr.u16.high, -1); } int cpu_write_elf32_qemunote(WriteCoreDumpFunction f, CPUState *cpu, |
