[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] [xen-unstable] libxl: name libxl_create_cpupool consistent with other functions.
# HG changeset patch # User Ian Campbell <ian.campbell@xxxxxxxxxx> # Date 1328020797 0 # Node ID 66efe32847da7e266b537747ae7f7e6156b8dc3b # Parent e712efb526da5fc5ebf83b859ce8cb3bf849490b libxl: name libxl_create_cpupool consistent with other functions. The pattern for the other cpupool functions is libxl_cpupool_<ACTION> and in general we use libxl_<THING>_<ACTION> Signed-off-by: Ian Campbell <ian.campbell@xxxxxxxxxx> Acked-by: juergen.gross@xxxxxxxxxxxxxx Committed-by: Ian Jackson <Ian.Jackson@xxxxxxxxxxxxx> --- diff -r e712efb526da -r 66efe32847da tools/libxl/libxl.c --- a/tools/libxl/libxl.c Tue Jan 31 14:39:57 2012 +0000 +++ b/tools/libxl/libxl.c Tue Jan 31 14:39:57 2012 +0000 @@ -3440,7 +3440,7 @@ return 0; } -int libxl_create_cpupool(libxl_ctx *ctx, const char *name, int schedid, +int libxl_cpupool_create(libxl_ctx *ctx, const char *name, int schedid, libxl_cpumap cpumap, libxl_uuid *uuid, uint32_t *poolid) { diff -r e712efb526da -r 66efe32847da tools/libxl/libxl.h --- a/tools/libxl/libxl.h Tue Jan 31 14:39:57 2012 +0000 +++ b/tools/libxl/libxl.h Tue Jan 31 14:39:57 2012 +0000 @@ -635,7 +635,7 @@ int libxl_tmem_freeable(libxl_ctx *ctx); int libxl_get_freecpus(libxl_ctx *ctx, libxl_cpumap *cpumap); -int libxl_create_cpupool(libxl_ctx *ctx, const char *name, int schedid, +int libxl_cpupool_create(libxl_ctx *ctx, const char *name, int schedid, libxl_cpumap cpumap, libxl_uuid *uuid, uint32_t *poolid); int libxl_cpupool_destroy(libxl_ctx *ctx, uint32_t poolid); diff -r e712efb526da -r 66efe32847da tools/libxl/xl_cmdimpl.c --- a/tools/libxl/xl_cmdimpl.c Tue Jan 31 14:39:57 2012 +0000 +++ b/tools/libxl/xl_cmdimpl.c Tue Jan 31 14:39:57 2012 +0000 @@ -5523,7 +5523,7 @@ return 0; poolid = 0; - if (libxl_create_cpupool(ctx, name, schedid, cpumap, &uuid, &poolid)) { + if (libxl_cpupool_create(ctx, name, schedid, cpumap, &uuid, &poolid)) { fprintf(stderr, "error on creating cpupool\n"); return -ERROR_FAIL; } @@ -5897,7 +5897,7 @@ snprintf(name, 15, "Pool-node%d", node); libxl_uuid_generate(&uuid); poolid = 0; - ret = -libxl_create_cpupool(ctx, name, schedid, cpumap, &uuid, &poolid); + ret = -libxl_cpupool_create(ctx, name, schedid, cpumap, &uuid, &poolid); if (ret) { fprintf(stderr, "error on creating cpupool\n"); goto out; _______________________________________________ Xen-changelog mailing list Xen-changelog@xxxxxxxxxxxxxxxxxxx http://lists.xensource.com/xen-changelog
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |