aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGlauber Costa <glommer@redhat.com>2009-07-21 19:57:26 -0400
committerMarcelo Tosatti <mtosatti@redhat.com>2009-07-22 16:55:09 -0300
commitf00332478e6ba4916c645661ced0fb797c4e5eb4 (patch)
tree654f5659250619e4527a55994f33d6723e2c10a6 /qemu-kvm.c
parentremove created from kvm_state (diff)
downloadqemu-kvm-f00332478e6ba4916c645661ced0fb797c4e5eb4.tar.gz
qemu-kvm-f00332478e6ba4916c645661ced0fb797c4e5eb4.tar.bz2
qemu-kvm-f00332478e6ba4916c645661ced0fb797c4e5eb4.zip
remove env->exit_request usage from qemu-kvm.c
Today I found a very catastrophic regression: I cannot run my mission critical servers running RHL7.1 anymore. This is a total disaster. Fortunately, I was able to isolate the commit that caused it: commit bb598da496c040d42dde564bd8ace181be52293e Author: Glauber Costa <glommer@redhat.com> Date: Mon Jul 6 16:12:52 2009 -0400 This guy is certainly stupid, and deserves punishment. It means I'll be writting code using emacs for the next week. Signed-off-by: Glauber Costa <glommer@redhat.com> Signed-off-by: Marcelo Tosatti <mtosatti@redhat.com>
Diffstat (limited to 'qemu-kvm.c')
-rw-r--r--qemu-kvm.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/qemu-kvm.c b/qemu-kvm.c
index cb85dbcdb..edd400e60 100644
--- a/qemu-kvm.c
+++ b/qemu-kvm.c
@@ -986,8 +986,6 @@ int pre_kvm_run(kvm_context_t kvm, CPUState *env)
{
kvm_arch_pre_kvm_run(kvm->opaque, env);
- if (env->exit_request)
- return 1;
pthread_mutex_unlock(&qemu_mutex);
return 0;
}