diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2011-03-12 17:43:57 +0100 |
---|---|---|
committer | Blue Swirl <blauwirbel@gmail.com> | 2011-03-13 14:44:21 +0000 |
commit | 94ad5b00a31113ed36b9d03a8db16de5535e90c4 (patch) | |
tree | 24705a74f7ba1964d98f8a9785300d66cd1829f6 /target-s390x | |
parent | eda48c344f35e5bd511dea3e8be56fb08c19b399 (diff) | |
download | qemu-94ad5b00a31113ed36b9d03a8db16de5535e90c4.tar.gz qemu-94ad5b00a31113ed36b9d03a8db16de5535e90c4.tar.bz2 qemu-94ad5b00a31113ed36b9d03a8db16de5535e90c4.zip |
always qemu_cpu_kick after unhalting a cpu
This ensures env->halt_cond is broadcast, and the loop in
qemu_tcg_wait_io_event and qemu_kvm_wait_io_event is exited
naturally rather than through a timeout.
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Diffstat (limited to 'target-s390x')
-rw-r--r-- | target-s390x/kvm.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/target-s390x/kvm.c b/target-s390x/kvm.c index b349812dba..6e9427431d 100644 --- a/target-s390x/kvm.c +++ b/target-s390x/kvm.c @@ -194,6 +194,7 @@ static void kvm_s390_interrupt_internal(CPUState *env, int type, uint32_t parm, env->halted = 0; env->exception_index = -1; + qemu_cpu_kick(env); kvmint.type = type; kvmint.parm = parm; |