mirror of
https://github.com/clearlinux/kvmtool.git
synced 2026-09-05 05:01:33 +00:00
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 <matt@ozlabs.org> Signed-off-by: Pekka Enberg <penberg@kernel.org>
This commit is contained in:
+1
-1
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user