diff options
author | Marcelo Tosatti <mtosatti@redhat.com> | 2014-09-05 10:52:46 -0300 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2014-09-16 11:04:09 +0200 |
commit | de9d61e83d43be9069e6646fa9d57a3f47779d28 (patch) | |
tree | 6f4915c942534a024e7449626bba24681cbf612e /kvm-all.c | |
parent | be894f51b6fe87b4df673fdc9613034de30eb6ca (diff) |
Introduce cpu_clean_all_dirty
Introduce cpu_clean_all_dirty, to force subsequent cpu_synchronize_all_states
to read in-kernel register state.
Cc: qemu-stable@nongnu.org
Signed-off-by: Marcelo Tosatti <mtosatti@redhat.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'kvm-all.c')
-rw-r--r-- | kvm-all.c | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -1708,6 +1708,11 @@ void kvm_cpu_synchronize_post_init(CPUState *cpu) run_on_cpu(cpu, do_kvm_cpu_synchronize_post_init, cpu); } +void kvm_cpu_clean_state(CPUState *cpu) +{ + cpu->kvm_vcpu_dirty = false; +} + int kvm_cpu_exec(CPUState *cpu) { struct kvm_run *run = cpu->kvm_run; |