diff options
author | Juan Quintela <quintela@redhat.com> | 2009-11-12 00:39:13 +0100 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2009-11-12 11:23:56 -0600 |
commit | 504c2948d3fb8d188d6e886cf6584edd344c1b46 (patch) | |
tree | 11adf1ded0fa081f145f3994c92672f38bb62f49 | |
parent | 2966b390d0f7cd5e5b971290fcc20685de374228 (diff) |
qemu_system_reset: we need to call it before loadvm/migration
Signed-off-by: Juan Quintela <quintela@redhat.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
-rw-r--r-- | vl.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -4044,7 +4044,6 @@ static void main_loop(void) qemu_system_ready = 1; qemu_cond_broadcast(&qemu_system_cond); #endif - qemu_system_reset(); for (;;) { do { @@ -5835,6 +5834,7 @@ int main(int argc, char **argv, char **envp) rom_load_all(); + qemu_system_reset(); if (loadvm) { if (load_vmstate(cur_mon, loadvm) < 0) { autostart = 0; |