@@ -4742,7 +4742,7 @@ static void migrate_domain(uint32_t domid, const char *rune, int debug,
exit(EXIT_FAILURE);
}
-static void migrate_receive(int debug, int daemonize, int monitor,
+static void migrate_receive(int debug, int daemonize, int monitor, int pause,
int send_fd, int recv_fd,
libxl_checkpointed_stream checkpointed,
char *colo_proxy_script)
@@ -4850,8 +4850,10 @@ static void migrate_receive(int debug, int daemonize, int monitor,
if (rc) goto perhaps_destroy_notify_rc;
}
- rc = libxl_domain_unpause(ctx, domid);
- if (rc) goto perhaps_destroy_notify_rc;
+ if (!pause) {
+ rc = libxl_domain_unpause(ctx, domid);
+ if (rc) goto perhaps_destroy_notify_rc;
+ }
fprintf(stderr, "migration target: Domain started successsfully.\n");
rc = 0;
@@ -4965,7 +4967,7 @@ int main_restore(int argc, char **argv)
int main_migrate_receive(int argc, char **argv)
{
- int debug = 0, daemonize = 1, monitor = 1;
+ int debug = 0, daemonize = 1, monitor = 1, pause = 0;
libxl_checkpointed_stream checkpointed = LIBXL_CHECKPOINTED_STREAM_NONE;
int opt;
char *script = NULL;
@@ -4976,7 +4978,7 @@ int main_migrate_receive(int argc, char **argv)
COMMON_LONG_OPTS
};
- SWITCH_FOREACH_OPT(opt, "Fedr", opts, "migrate-receive", 0) {
+ SWITCH_FOREACH_OPT(opt, "Fedrp", opts, "migrate-receive", 0) {
case 'F':
daemonize = 0;
break;
@@ -4996,13 +4998,16 @@ int main_migrate_receive(int argc, char **argv)
case 0x200:
script = optarg;
break;
+ case 'p':
+ pause = 1;
+ break;
}
if (argc-optind != 0) {
help("migrate-receive");
return EXIT_FAILURE;
}
- migrate_receive(debug, daemonize, monitor,
+ migrate_receive(debug, daemonize, monitor, pause,
STDOUT_FILENO, STDIN_FILENO,
checkpointed, script);
@@ -5048,14 +5053,14 @@ int main_migrate(int argc, char **argv)
const char *ssh_command = "ssh";
char *rune = NULL;
char *host;
- int opt, daemonize = 1, monitor = 1, debug = 0;
+ int opt, daemonize = 1, monitor = 1, debug = 0, pause = 0;
static struct option opts[] = {
{"debug", 0, 0, 0x100},
{"live", 0, 0, 0x200},
COMMON_LONG_OPTS
};
- SWITCH_FOREACH_OPT(opt, "FC:s:e", opts, "migrate", 2) {
+ SWITCH_FOREACH_OPT(opt, "FC:s:ep", opts, "migrate", 2) {
case 'C':
config_filename = optarg;
break;
@@ -5069,6 +5074,9 @@ int main_migrate(int argc, char **argv)
daemonize = 0;
monitor = 0;
break;
+ case 'p':
+ pause = 1;
+ break;
case 0x100: /* --debug */
debug = 1;
break;
@@ -5096,12 +5104,13 @@ int main_migrate(int argc, char **argv)
} else {
verbose_len = (minmsglevel_default - minmsglevel) + 2;
}
- xasprintf(&rune, "exec %s %s xl%s%.*s migrate-receive%s%s",
+ xasprintf(&rune, "exec %s %s xl%s%.*s migrate-receive%s%s%s",
ssh_command, host,
pass_tty_arg ? " -t" : "",
verbose_len, verbose_buf,
daemonize ? "" : " -e",
- debug ? " -d" : "");
+ debug ? " -d" : "",
+ pause ? " -p" : "");
}
migrate_domain(domid, rune, debug, config_filename);
@@ -164,7 +164,8 @@ struct cmd_spec cmd_table[] = {
" migrate-receive [-d -e]\n"
"-e Do not wait in the background (on <host>) for the death\n"
" of the domain.\n"
- "--debug Print huge (!) amount of debug during the migration process."
+ "--debug Print huge (!) amount of debug during the migration process.\n"
+ "-p Do not unpause domain after migrating it."
},
{ "restore",
&main_restore, 0, 1,
This is useful for debugging domains that crash on resume from migration. Signed-off-by: Roger Pau Monné <roger.pau@citrix.com> --- Cc: Ian.Jackson@eu.citrix.com Cc: wei.liu2@citrix.com --- tools/libxl/xl_cmdimpl.c | 29 +++++++++++++++++++---------- tools/libxl/xl_cmdtable.c | 3 ++- 2 files changed, 21 insertions(+), 11 deletions(-)