Revert "don't call cpu_sychronize_state from reset handlers"
authorAnthony Liguori <aliguori@us.ibm.com>
Thu, 10 Sep 2009 13:45:43 +0000 (08:45 -0500)
committerAnthony Liguori <aliguori@us.ibm.com>
Fri, 11 Sep 2009 15:18:06 +0000 (10:18 -0500)
This reverts commit 733318ea9c6d846a6a047b87619e7d9d6e9707d1.

Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
hw/apic.c
vl.c

index 9f1d25e..2c414c1 100644 (file)
--- a/hw/apic.c
+++ b/hw/apic.c
@@ -938,6 +938,8 @@ static void apic_reset(void *opaque)
     APICState *s = opaque;
     int bsp;
 
+    cpu_synchronize_state(s->cpu_env);
+
     bsp = cpu_is_bsp(s->cpu_env);
     s->apicbase = 0xfee00000 |
         (bsp ? MSR_IA32_APICBASE_BSP : 0) | MSR_IA32_APICBASE_ENABLE;
diff --git a/vl.c b/vl.c
index c6c6a6b..8e5d9db 100644 (file)
--- 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);