Re: [kvm-devel] [PATCH] Allow kvm to use more than 4 VCPUs

2008-02-24 Thread Avi Kivity
Anthony Liguori wrote: This patch actually allows KVM to be used with more than 4 VCPUs. The change in qemu-kvm.c was pretty difficult to find because it was using an open coded array size of 4. I changed that array to be 256 since that's the real maximum on x86 and the additional storage

Re: [kvm-devel] [PATCH] Allow kvm to use more than 4 VCPUs

2008-02-24 Thread Alexey Eremenko
On Sun, Feb 24, 2008 at 8:16 AM, Avi Kivity [EMAIL PROTECTED] wrote: Anthony Liguori wrote: This patch actually allows KVM to be used with more than 4 VCPUs. The change in qemu-kvm.c was pretty difficult to find because it was using an open coded array size of 4. I changed that