[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] [xen-unstable] xl: print sxp on dry-run of create.
# HG changeset patch # User Ian Campbell <ian.campbell@xxxxxxxxxx> # Date 1307032562 -3600 # Node ID 2ae357405850abfd38c1659f32193ae4dfe73afe # Parent 51429b1c9db7684eb183beec9eb6b064cfa8d02e xl: print sxp on dry-run of create. The help text for xm create's --dry-run says "Dry run - prints the resulting configuration in SXP but does not create the domain." so update xl implementation to match. At least the xendomains initscript relies on this (for better or worse). Signed-off-by: Ian Campbell <ian.campbell@xxxxxxxxxx> Tested-by: Carsten Schiers <carsten@xxxxxxxxxx> Acked-by: Ian Jackson <ian.jackson@xxxxxxxxxxxxx> Committed-by: Ian Jackson <ian.jackson@xxxxxxxxxxxxx> --- diff -r 51429b1c9db7 -r 2ae357405850 tools/libxl/xl_cmdimpl.c --- a/tools/libxl/xl_cmdimpl.c Thu Jun 02 17:32:18 2011 +0100 +++ b/tools/libxl/xl_cmdimpl.c Thu Jun 02 17:36:02 2011 +0100 @@ -1516,10 +1516,6 @@ parse_config_data(config_file, config_data, config_len, &d_config, &d_config.dm_info); - ret = 0; - if (dom_info->dryrun) - goto out; - if (migrate_fd >= 0) { if (d_config.c_info.name) { /* when we receive a domain we get its name from the config @@ -1538,9 +1534,13 @@ } } - if (debug) + if (debug || dom_info->dryrun) printf_info(-1, &d_config, &d_config.dm_info); + ret = 0; + if (dom_info->dryrun) + goto out; + start: domid = -1; _______________________________________________ Xen-changelog mailing list Xen-changelog@xxxxxxxxxxxxxxxxxxx http://lists.xensource.com/xen-changelog
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |