aboutsummaryrefslogtreecommitdiffstats
path: root/vl.c
diff options
context:
space:
mode:
authorAnthony Liguori <aliguori@us.ibm.com>2009-09-10 08:45:43 -0500
committerAnthony Liguori <aliguori@us.ibm.com>2009-09-11 10:18:06 -0500
commit1c3173b9ed7818c62a9dffe568730c5e29b3a0e2 (patch)
tree9fe5a3f9b365c4ebfed8b70391938904bcdb31c3 /vl.c
parent02b33596d09bafed5d58366403a2d369f0d1047e (diff)
Revert "don't call cpu_sychronize_state from reset handlers"
This reverts commit 733318ea9c6d846a6a047b87619e7d9d6e9707d1. Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'vl.c')
-rw-r--r--vl.c7
1 files changed, 1 insertions, 6 deletions
diff --git a/vl.c b/vl.c
index c6c6a6b59..8e5d9db3e 100644
--- a/vl.c
+++ b/vl.c
@@ -3683,12 +3683,10 @@ static void *kvm_cpu_thread_fn(void *arg)
while (!qemu_system_ready)
qemu_cond_timedwait(&qemu_system_cond, &qemu_global_mutex, 100);
- cpu_synchronize_state(env);
-
while (1) {
- qemu_wait_io_event(env);
if (cpu_can_run(env))
qemu_cpu_exec(env);
+ qemu_wait_io_event(env);
}
return NULL;
@@ -3713,9 +3711,6 @@ static void *tcg_cpu_thread_fn(void *arg)
while (!qemu_system_ready)
qemu_cond_timedwait(&qemu_system_cond, &qemu_global_mutex, 100);
- for (env = first_cpu; env != NULL; env = env->next_cpu) {
- cpu_synchronize_state(env);
- }
while (1) {
tcg_cpu_exec();
qemu_wait_io_event(cur_cpu);