On Fri, Jun 19, 2009 at 03:59:57PM +0200, Jes Sorensen wrote: > Hi, > > This one introduces a -maxcpus setting, allowing the user to specify > the maximum number of vCPUs the system can have, as discussed with Gleb > earlier in the week. What is the maximum value for the 'maxcpus' setting for KVM ? libvirt currently does fd = open("/dev/kvm") r = ioctl(fd, KVM_CHECK_EXTENSION, KVM_CAP_NR_VCPUS); to figure out what the maximum allowed vCPUs will be for KVM, and currently it is returning 16 IIRC. > @@ -5666,6 +5667,13 @@ int main(int argc, char **argv, char **e > exit(1); > } > break; > + case QEMU_OPTION_maxcpus: > + max_cpus = atoi(optarg); > + if ((max_cpus < 1) || (max_cpus > machine->max_cpus)) { > + fprintf(stderr, "Invalid number of CPUs\n"); > + exit(1); > + } > + break; > case QEMU_OPTION_vnc: > display_type = DT_VNC; > vnc_display = optarg; This implies the limit (for x86 pc machine at least) is now 255. Is that the correct interpretation on my part ? Regards, Daniel -- |: Red Hat, Engineering, London -o- http://people.redhat.com/berrange/ :| |: http://libvirt.org -o- http://virt-manager.org -o- http://ovirt.org :| |: http://autobuild.org -o- http://search.cpan.org/~danberr/ :| |: GnuPG: 7D3B9505 -o- F3C9 553F A1DA 4AC2 5648 23C1 B3DF F742 7D3B 9505 :| -- To unsubscribe from this list: send the line "unsubscribe kvm" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html