Callers to libxl_cpupool_create() can either request a specific pool
id, or request that Xen do it for them. But at the moment, the
"automatic" selection is indicated by using a magic value, 0. This is
undesirable both because it doesn't obviously have meaning, but also
because '0' is a valid cpupool (albeit one which at the moment can't
be changed).
Introduce a constant, LIBXL_CPUPOOL_POOLID_ANY, to indicate this
instead. Still accept '0' as meaning "ANY" for backwards
compatibility.
Signed-off-by: George Dunlap <george.dunlap@citrix.com>
Reviewed-by: Dario Faggioli <dario.faggioli@citrix.com>
Acked-by: Wei Liu <wei.liu2@citrix.com>
[ wei: removed two trailing spaces ]
Signed-off-by: Wei Liu <wei.liu2@citrix.com>
int libxl_tmem_freeable(libxl_ctx *ctx);
int libxl_get_freecpus(libxl_ctx *ctx, libxl_bitmap *cpumap);
+
+/*
+ * Set poolid to LIBXL_CPUOOL_POOLID_ANY to have Xen choose a
+ * free poolid for you.
+ */
+#define LIBXL_CPUPOOL_POOLID_ANY 0xFFFFFFFF
int libxl_cpupool_create(libxl_ctx *ctx, const char *name,
libxl_scheduler sched,
libxl_bitmap cpumap, libxl_uuid *uuid,
char *uuid_string;
uint32_t xcpoolid;
- /* Zero means "choose a poolid for me" */
- xcpoolid = (*poolid) ? (*poolid) : XC_CPUPOOL_POOLID_ANY;
+ /* Accept '0' as 'any poolid' for backwards compatibility */
+ if ( *poolid == LIBXL_CPUPOOL_POOLID_ANY
+ || *poolid == 0 )
+ xcpoolid = XC_CPUPOOL_POOLID_ANY;
+ else
+ xcpoolid = *poolid;
uuid_string = libxl__uuid2string(gc, *uuid);
if (!uuid_string) {
printf("number of cpus: %d\n", n_cpus);
if (!dryrun_only) {
- poolid = 0;
+ poolid = LIBXL_CPUPOOL_POOLID_ANY;
if (libxl_cpupool_create(ctx, name, sched, cpumap, &uuid, &poolid)) {
fprintf(stderr, "error on creating cpupool\n");
goto out_cfg;