From de9d61e83d43be9069e6646fa9d57a3f47779d28 Mon Sep 17 00:00:00 2001 From: Marcelo Tosatti Date: Fri, 5 Sep 2014 10:52:46 -0300 Subject: 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 Signed-off-by: Paolo Bonzini --- cpus.c | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'cpus.c') diff --git a/cpus.c b/cpus.c index 2a0e133..0c33458 100644 --- a/cpus.c +++ b/cpus.c @@ -593,6 +593,15 @@ void cpu_synchronize_all_post_init(void) } } +void cpu_clean_all_dirty(void) +{ + CPUState *cpu; + + CPU_FOREACH(cpu) { + cpu_clean_state(cpu); + } +} + static int do_vm_stop(RunState state) { int ret = 0; -- cgit v1.1