From 3d2b366a366c56edb8a86a84ee95f0de06fa61a4 Mon Sep 17 00:00:00 2001 From: grehan Date: Tue, 10 Sep 2013 03:48:18 +0000 Subject: Go way past 11 and bump bhyve's max vCPUs to 16. This should be sufficient for 10.0 and will do until forthcoming work to avoid limitations in this area is complete. Thanks to Bela Lubkin at tidalscale for the headsup on the apic/cpu id/io apic ASL parameters that are actually hex values and broke when written as decimal when 11 vCPUs were configured. Approved by: re@ --- sys/amd64/include/vmm.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sys/amd64/include') diff --git a/sys/amd64/include/vmm.h b/sys/amd64/include/vmm.h index 617c682..b741247 100644 --- a/sys/amd64/include/vmm.h +++ b/sys/amd64/include/vmm.h @@ -150,7 +150,7 @@ void vm_interrupt_hostcpu(struct vm *vm, int vcpu); #include -#define VM_MAXCPU 8 /* maximum virtual cpus */ +#define VM_MAXCPU 16 /* maximum virtual cpus */ /* * Identifiers for events that can be injected into the VM -- cgit v1.1