commit | 504c2948d3fb8d188d6e886cf6584edd344c1b46 | [log] [tgz] |
---|---|---|
author | Juan Quintela <[email protected]> | Thu Nov 12 00:39:13 2009 +0100 |
committer | Anthony Liguori <[email protected]> | Thu Nov 12 11:23:56 2009 -0600 |
tree | 11adf1ded0fa081f145f3994c92672f38bb62f49 | |
parent | 2966b390d0f7cd5e5b971290fcc20685de374228 [diff] [blame] |
qemu_system_reset: we need to call it before loadvm/migration Signed-off-by: Juan Quintela <[email protected]> Signed-off-by: Anthony Liguori <[email protected]>
diff --git a/vl.c b/vl.c index bf91ee1..fff8e8d 100644 --- a/vl.c +++ b/vl.c
@@ -4044,7 +4044,6 @@ qemu_system_ready = 1; qemu_cond_broadcast(&qemu_system_cond); #endif - qemu_system_reset(); for (;;) { do { @@ -5835,6 +5834,7 @@ rom_load_all(); + qemu_system_reset(); if (loadvm) { if (load_vmstate(cur_mon, loadvm) < 0) { autostart = 0;