[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] Re: [Xen-devel] [PATCH v11 18/27] implement the cmdline for COLO
On 03/05/2016 01:22 AM, Ian Jackson wrote: >> --- a/docs/man/xl.pod.1 >> +++ b/docs/man/xl.pod.1 > ... >> + COLO support in xl is still in experimental (proof-of-concept) phase. >> + There is no support for network or disk at the moment. > > I think you need to spell out the lack of storage and network handling > means that the guest will corrupt its disk and confuse its network > peers. OK, will fix it in the next version. > >> @@ -875,7 +890,10 @@ int libxl_domain_remus_start(libxl_ctx *ctx, >> libxl_domain_remus_info *info, >> dss->live = 1; >> dss->debug = 0; >> dss->remus = info; >> - dss->checkpointed_stream = LIBXL_CHECKPOINTED_STREAM_REMUS; >> + if (libxl_defbool_val(info->colo)) >> + dss->checkpointed_stream = LIBXL_CHECKPOINTED_STREAM_COLO; >> + else >> + dss->checkpointed_stream = LIBXL_CHECKPOINTED_STREAM_REMUS; > > If you prefer, a ? : expression would do here as well. > > + dss->checkpointed_stream = > libxl_defbool_val() ? LIBXL_CHECKPOINTED_STREAM_COLO :... If so, this line will contains more than 80 characters. So I will not change it. Thanks Wen Congyang > > (only completed with sensible formatting). Up to you - it's fine as > it is, too. > > Most of this patch looks good to me. > > Ian. > > > . > _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxx http://lists.xen.org/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |