Callers to xc_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, XC_CPUPOOL_POOLID_ANY, to indicate this instead.
Have it be the default for the python bindings.
Manually translate it, even though it's the same underlying value,
because we don't yet have a relaible way of enforcing that these
values are the same.
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>
xc_cpumap_t cpumap;
} xc_cpupoolinfo_t;
+#define XC_CPUPOOL_POOLID_ANY 0xFFFFFFFF
+
/**
* Create a new cpupool.
*
sysctl.cmd = XEN_SYSCTL_cpupool_op;
sysctl.u.cpupool_op.op = XEN_SYSCTL_CPUPOOL_OP_CREATE;
- sysctl.u.cpupool_op.cpupool_id = (*ppoolid == 0) ?
+ sysctl.u.cpupool_op.cpupool_id = (*ppoolid == XC_CPUPOOL_POOLID_ANY) ?
XEN_SYSCTL_CPUPOOL_PAR_ANY : *ppoolid;
sysctl.u.cpupool_op.sched_id = sched_id;
if ( (err = do_sysctl_save(xch, &sysctl)) != 0 )
int i;
xs_transaction_t t;
char *uuid_string;
+ uint32_t xcpoolid;
+
+ /* Zero means "choose a poolid for me" */
+ xcpoolid = (*poolid) ? (*poolid) : XC_CPUPOOL_POOLID_ANY;
uuid_string = libxl__uuid2string(gc, *uuid);
if (!uuid_string) {
return ERROR_NOMEM;
}
- rc = xc_cpupool_create(ctx->xch, poolid, sched);
+ rc = xc_cpupool_create(ctx->xch, &xcpoolid, sched);
if (rc) {
LOGEV(ERROR, rc, "Could not create cpupool");
GC_FREE;
return ERROR_FAIL;
}
+ *poolid = xcpoolid;
libxl_for_each_bit(i, cpumap)
if (libxl_bitmap_test(&cpumap, i)) {
PyObject *args,
PyObject *kwds)
{
- uint32_t cpupool = 0, sched = XEN_SCHEDULER_CREDIT;
+ uint32_t cpupool = XC_CPUPOOL_POOLID_ANY, sched = XEN_SCHEDULER_CREDIT;
static char *kwd_list[] = { "pool", "sched", NULL };