From 90c0518814760921e75df283b953fc5fca08c135 Mon Sep 17 00:00:00 2001 From: Matt Evans Date: Thu, 8 Dec 2011 13:47:06 +1100 Subject: [PATCH] kvm tools: Correctly limit nrcpus to max_cpus Fix a typo where kvm->nrcpus was set, then immediately overwritten with older value. Signed-off-by: Matt Evans Signed-off-by: Pekka Enberg --- builtin-run.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/builtin-run.c b/builtin-run.c index 924ae80..d5abeb4 100644 --- a/builtin-run.c +++ b/builtin-run.c @@ -817,7 +817,7 @@ int kvm_cmd_run(int argc, const char **argv, const char *prefix) if (nrcpus > max_cpus) { printf(" # Limit the number of CPUs to %d\n", max_cpus); - kvm->nrcpus = max_cpus; + nrcpus = max_cpus; } else if (nrcpus > recommended_cpus) { printf(" # Warning: The maximum recommended amount of VCPUs" " is %d\n", recommended_cpus);