|
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-devel] [PATCH] tools/xl: fix output of xl vcpu-pin dry run with smt=0
Fix another smt=0 fallout: xl -N vcpu-pin prints only parts of the
affinities as it is using the number of online cpus instead of the
maximum cpu number.
Signed-off-by: Juergen Gross <jgross@xxxxxxxx>
---
tools/xl/xl_vcpu.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/tools/xl/xl_vcpu.c b/tools/xl/xl_vcpu.c
index c877f2595f..aef486864c 100644
--- a/tools/xl/xl_vcpu.c
+++ b/tools/xl/xl_vcpu.c
@@ -255,9 +255,9 @@ int main_vcpupin(int argc, char **argv)
goto out;
if (dryrun_only) {
- nb_cpu = libxl_get_online_cpus(ctx);
+ nb_cpu = libxl_get_max_cpus(ctx);
if (nb_cpu < 0) {
- fprintf(stderr, "libxl_get_online_cpus failed.\n");
+ fprintf(stderr, "libxl_get_max_cpus failed.\n");
goto out;
}
--
2.16.4
_______________________________________________
Xen-devel mailing list
Xen-devel@xxxxxxxxxxxxxxxxxxxx
https://lists.xenproject.org/mailman/listinfo/xen-devel
|
![]() |
Lists.xenproject.org is hosted with RackSpace, monitoring our |