diff options
author | Jan Kiszka <jan.kiszka@siemens.com> | 2011-03-02 08:56:11 +0100 |
---|---|---|
committer | Marcelo Tosatti <mtosatti@redhat.com> | 2011-03-15 01:19:05 -0300 |
commit | a7ada1510cb380b86c4811aa40fc45c8a7fc0daf (patch) | |
tree | e7b5aa27d4b6e4f4bf246d1becb99aeb62fd8642 | |
parent | 747461c76beb1856343d5cd16bb7663ed2ebf3da (diff) | |
download | hqemu-a7ada1510cb380b86c4811aa40fc45c8a7fc0daf.zip hqemu-a7ada1510cb380b86c4811aa40fc45c8a7fc0daf.tar.gz |
Synchronize VCPU states before reset
This is required to support keeping VCPU states across a system reset.
If we do not read the current state before the reset,
cpu_synchronize_all_post_reset may write back incorrect state
information.
The first user of this will be MCE MSR synchronization which currently
works around the missing cpu_synchronize_all_states.
Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
Signed-off-by: Marcelo Tosatti <mtosatti@redhat.com>
-rw-r--r-- | vl.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -1450,6 +1450,7 @@ static void main_loop(void) } if (qemu_reset_requested()) { pause_all_vcpus(); + cpu_synchronize_all_states(); qemu_system_reset(); resume_all_vcpus(); } |