On 11 June 2011 10:05, Jan Kiszka <jan.kis...@web.de> wrote: > @@ -2074,6 +2074,7 @@ int load_vmstate(const char *name) > return -EINVAL; > } > > + qemu_system_reset(); > ret = qemu_loadvm_state(f);
This means that if we're doing a load because the user passed -loadvm on the command line we'll end up doing qemu_system_reset() twice (once in vl.c and then again here). Does that matter? -- PMM