[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] Re: [Xen-devel] [PATCH 1/2] libxl: Fix a couple of log messages to print correct errnos
On Thu, Oct 16, 2014 at 06:44:12PM +0100, Ian Jackson wrote: > xc_domain_create and xc_cpupool_movedomain do not return errno values; > they return -1 and set errno. Fix the logging accordingly. > > Signed-off-by: Ian Jackson <Ian.Jackson@xxxxxxxxxxxxx> Acked-by: Wei Liu <wei.liu2@xxxxxxxxxx> > --- > tools/libxl/libxl_create.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/tools/libxl/libxl_create.c b/tools/libxl/libxl_create.c > index 8b82584..8ae9701 100644 > --- a/tools/libxl/libxl_create.c > +++ b/tools/libxl/libxl_create.c > @@ -515,14 +515,14 @@ int libxl__domain_make(libxl__gc *gc, > libxl_domain_create_info *info, > > ret = xc_domain_create(ctx->xch, info->ssidref, handle, flags, domid); > if (ret < 0) { > - LIBXL__LOG_ERRNOVAL(ctx, LIBXL__LOG_ERROR, ret, "domain creation > fail"); > + LIBXL__LOG_ERRNO(ctx, LIBXL__LOG_ERROR, "domain creation fail"); > rc = ERROR_FAIL; > goto out; > } > > ret = xc_cpupool_movedomain(ctx->xch, info->poolid, *domid); > if (ret < 0) { > - LIBXL__LOG_ERRNOVAL(ctx, LIBXL__LOG_ERROR, ret, "domain move fail"); > + LIBXL__LOG_ERRNO(ctx, LIBXL__LOG_ERROR, "domain move fail"); > rc = ERROR_FAIL; > goto out; > } > -- > 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 |