[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] [xen-unstable] libxl: cleanup: Remove pointless ERRNOVAL
# HG changeset patch # User George Dunlap <george.dunlap@xxxxxxxxxxxxx> # Date 1329846359 0 # Node ID a88ba599add1526e962b89dc1a2dd97c0fc06143 # Parent 4566a48436878af248dd8693c00bd1e3221d4150 libxl: cleanup: Remove pointless ERRNOVAL Just call LIBXL__LOG rather than passing a meaningless ERRNOVAL. Signed-off-by: George Dunlap <george.dunlap@xxxxxxxxxxxxx> Acked-by: Ian Jackson <ian.jackson@xxxxxxxxxxxxx> Committed-by: Ian Jackson <ian.jackson@xxxxxxxxxxxxx> --- diff -r 4566a4843687 -r a88ba599add1 tools/libxl/libxl.c --- a/tools/libxl/libxl.c Mon Feb 20 21:18:44 2012 +0100 +++ b/tools/libxl/libxl.c Tue Feb 21 17:45:59 2012 +0000 @@ -3008,13 +3008,13 @@ 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-changelog mailing list Xen-changelog@xxxxxxxxxxxxx http://lists.xensource.com/xen-changelog
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |