[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-devel] [PATCH] 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 <mcv21@xxxxxxxxx> Signed-off-by: Ian Jackson <Ian.Jackson@xxxxxxxxxxxxx> CC: Matthew Vernon <mcv21@xxxxxxxxx> --- docs/man/xl.pod.1 | 8 ++++++++ tools/libxl/xl_cmdimpl.c | 6 +++++- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/docs/man/xl.pod.1 b/docs/man/xl.pod.1 index 16783c8..217a0ab 100644 --- a/docs/man/xl.pod.1 +++ b/docs/man/xl.pod.1 @@ -1513,6 +1513,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<xl migrate --live> + =head1 TO BE DOCUMENTED We need better documentation for: diff --git a/tools/libxl/xl_cmdimpl.c b/tools/libxl/xl_cmdimpl.c index 648ca08..50a929a 100644 --- a/tools/libxl/xl_cmdimpl.c +++ b/tools/libxl/xl_cmdimpl.c @@ -4498,6 +4498,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} }; @@ -4516,9 +4517,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]); -- 1.7.10.4 _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxx http://lists.xen.org/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |