projects
/
qemu.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
04a52b4
)
Do not disable autostart for live migration
author
Avi Kivity
<avi@redhat.com>
Sun, 9 Aug 2009 11:39:20 +0000
(14:39 +0300)
committer
Anthony Liguori
<aliguori@us.ibm.com>
Mon, 24 Aug 2009 13:01:39 +0000
(08:01 -0500)
If the user does not want autostart, they can specify -S.
Signed-off-by: Avi Kivity <avi@redhat.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
vl.c
patch
|
blob
|
history
diff --git
a/vl.c
b/vl.c
index 8b2b289031109b2fa2c1235317cedb38a315bd8e..55d5bbe76dbd5059bdb56d9278ef644cfa0d4fae 100644
(file)
--- a/
vl.c
+++ b/
vl.c
@@
-6040,12
+6040,10
@@
int main(int argc, char **argv, char **envp)
do_loadvm(cur_mon, loadvm);
if (incoming) {
- autostart = 0;
qemu_start_incoming_migration(incoming);
- }
-
- else if (autostart)
+ } else if (autostart) {
vm_start();
+ }
#ifndef _WIN32
if (daemonize) {