diff options
author | Avi Kivity <avi@redhat.com> | 2009-08-17 23:19:53 +0300 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2009-08-27 20:35:30 -0500 |
commit | 4c0960c0c483fffc5f8e1dab169d946ac295bf44 (patch) | |
tree | 1dd3a77d60b3aa96132741326bdb3a8e66fa95c8 /hw/apic.c | |
parent | qdev: convert watchdogs (diff) | |
download | qemu-kvm-4c0960c0c483fffc5f8e1dab169d946ac295bf44.tar.gz qemu-kvm-4c0960c0c483fffc5f8e1dab169d946ac295bf44.tar.bz2 qemu-kvm-4c0960c0c483fffc5f8e1dab169d946ac295bf44.zip |
kvm: Simplify cpu_synchronize_state()
cpu_synchronize_state() is a little unreadable since the 'modified'
argument isn't self-explanatory. Simplify it by making it always
synchronize the kernel state into qemu, and automatically flush the
registers back to the kernel if they've been synchronized on this
exit.
Signed-off-by: Avi Kivity <avi@redhat.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'hw/apic.c')
-rw-r--r-- | hw/apic.c | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -936,8 +936,11 @@ static const VMStateDescription vmstate_apic = { static void apic_reset(void *opaque) { APICState *s = opaque; - int bsp = cpu_is_bsp(s->cpu_env); + 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; @@ -952,8 +955,6 @@ static void apic_reset(void *opaque) */ s->lvt[APIC_LVT_LINT0] = 0x700; } - - cpu_synchronize_state(s->cpu_env, 1); } static CPUReadMemoryFunc * const apic_mem_read[3] = { |