diff options
author | Jan Kiszka <jan.kiszka@siemens.com> | 2011-02-01 22:15:43 +0100 |
---|---|---|
committer | Marcelo Tosatti <mtosatti@redhat.com> | 2011-02-14 12:39:44 -0200 |
commit | b4a3d965dee06d52281496bb5fd0a5cb5534b545 (patch) | |
tree | 3d1c0bb7600ea91eea18e27530c3afa2ec41bbf7 /cpus.h | |
parent | aa2c364b4cf2fae4d9c8acf53ee4436ed533902d (diff) |
Stop current VCPU on synchronous reset requests
If some I/O operation ends up calling qemu_system_reset_request in VCPU
context, we record this and inform the io-thread, but we do not
terminate the VCPU loop. This can lead to fairly unexpected behavior if
the triggering reset operation is supposed to work synchronously.
Fix this for TCG (when run in deterministic I/O mode) by setting the
VCPU on stop and issuing a cpu_exit. KVM requires some more work on its
VCPU loop.
[ ported from qemu-kvm ]
Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
Signed-off-by: Marcelo Tosatti <mtosatti@redhat.com>
Diffstat (limited to 'cpus.h')
-rw-r--r-- | cpus.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -6,6 +6,7 @@ int qemu_init_main_loop(void); void qemu_main_loop_start(void); void resume_all_vcpus(void); void pause_all_vcpus(void); +void cpu_stop_current(void); /* vl.c */ extern int smp_cores; |