[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-devel] [PATCH 06 of 10] libxl: cleanup: Remove pointless ERRNOVAL
Just call LIBXL__LOG rather than passing a meaningless ERRNOVAL. Signed-off-by: George Dunlap <george.dunlap@xxxxxxxxxxxxx> diff -r 5e3ca9be617e -r 0f97e5c69eeb tools/libxl/libxl.c --- a/tools/libxl/libxl.c Tue Feb 21 12:14:32 2012 +0000 +++ b/tools/libxl/libxl.c Tue Feb 21 12:14:32 2012 +0000 @@ -3008,13 +3008,13 @@ int libxl_sched_credit_domain_set(libxl_ if (scinfo->weight < 1 || scinfo->weight > 65535) { - LIBXL__LOG_ERRNOVAL(ctx, LIBXL__LOG_ERROR, rc, + LIBXL__LOG(ctx, LIBXL__LOG_ERROR, "Cpu weight out of range, valid values are within range from 1 to 65535"); return ERROR_INVAL; } if (scinfo->cap < 0 || scinfo->cap > (domaininfo.max_vcpu_id + 1) * 100) { - LIBXL__LOG_ERRNOVAL(ctx, LIBXL__LOG_ERROR, rc, + LIBXL__LOG(ctx, LIBXL__LOG_ERROR, "Cpu cap out of range, valid range is from 0 to %d for specified number of vcpus", ((domaininfo.max_vcpu_id + 1) * 100)); return ERROR_INVAL; _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxx http://lists.xen.org/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |