Correct copy&paste error: add node to the new pool instead of pool 0 Signed-off-by: juergen.gross@xxxxxxxxxxxxxx diff -r 9dca60d88c63 tools/libxl/xl_cmdimpl.c --- a/tools/libxl/xl_cmdimpl.c Tue Jan 25 14:06:52 2011 +0000 +++ b/tools/libxl/xl_cmdimpl.c Fri Jan 28 07:21:53 2011 +0100 @@ -5806,7 +5806,7 @@ int main_cpupoolnumasplit(int argc, char goto out; } - ret = -libxl_cpupool_cpuadd_node(&ctx, 0, node, &n); + ret = -libxl_cpupool_cpuadd_node(&ctx, poolid, node, &n); if (ret) { fprintf(stderr, "error on adding cpus to cpupool\n"); goto out;