From: Ian Jackson Date: Thu, 14 May 2015 12:41:26 +0000 (+0100) Subject: xl: Support (by ignoring) xl migrate --live X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~3194 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=ab373fcac40a50fcb35cf7a6ccd0243d7cd18ee0;p=xen.git xl: Support (by ignoring) xl migrate --live xm migrate would do non-live migration (effectively, save, transfer and restore) by default, unless you specified --live. xl migrate always does live migration. Honour (by ignoring) --live for compatibility with old callers. Document this. (This patch should be backported as far as possible.) Reported-by: Matthew Vernon Signed-off-by: Ian Jackson CC: Matthew Vernon Acked-by: Ian Campbell --- diff --git a/docs/man/xl.pod.1 b/docs/man/xl.pod.1 index 02bf5312fa..e16dbf72cd 100644 --- a/docs/man/xl.pod.1 +++ b/docs/man/xl.pod.1 @@ -1520,6 +1520,14 @@ monitor types are: =back +=head1 IGNORED FOR COMPATIBILITY WITH XM + +xl is mostly command-line compatible with the old xm utility used with +the old Python xend. For compatibility, the following options are +ignored: + +=item B + =head1 TO BE DOCUMENTED We need better documentation for: diff --git a/tools/libxl/xl_cmdimpl.c b/tools/libxl/xl_cmdimpl.c index 8eaf1c7ffc..5f23c8be5e 100644 --- a/tools/libxl/xl_cmdimpl.c +++ b/tools/libxl/xl_cmdimpl.c @@ -4521,6 +4521,7 @@ int main_migrate(int argc, char **argv) int opt, daemonize = 1, monitor = 1, debug = 0; static struct option opts[] = { {"debug", 0, 0, 0x100}, + {"live", 0, 0, 0x200}, COMMON_LONG_OPTS, {0, 0, 0, 0} }; @@ -4539,9 +4540,12 @@ int main_migrate(int argc, char **argv) daemonize = 0; monitor = 0; break; - case 0x100: + case 0x100: /* --debug */ debug = 1; break; + case 0x200: /* --live */ + /* ignored for compatibility with xm */ + break; } domid = find_domain(argv[optind]);