summaryrefslogtreecommitdiff
path: root/hw
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 /hw
parent02b33596d09bafed5d58366403a2d369f0d1047e (diff)
downloadqemu-1c3173b9ed7818c62a9dffe568730c5e29b3a0e2.tar.gz
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 'hw')
-rw-r--r--hw/apic.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/hw/apic.c b/hw/apic.c
index 9f1d25e557..2c414c1878 100644
--- 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;