Re: [Qemu-devel] [PATCH qom v4 2/7] cpus: Convert cpu_index into a bitmap

2015-06-24 Thread Andreas Färber
Am 24.06.2015 um 04:31 schrieb Peter Crosthwaite: From: Bharata B Rao bhar...@linux.vnet.ibm.com Currently CPUState.cpu_index is monotonically increasing and a newly created CPU always gets the next higher index. The next available index is calculated by counting the existing number of CPUs.

Re: [Qemu-devel] [PATCH qom v4 2/7] cpus: Convert cpu_index into a bitmap

2015-06-24 Thread Andreas Färber
s/cpus/cpu/ Am 24.06.2015 um 15:53 schrieb Andreas Färber: Am 24.06.2015 um 04:31 schrieb Peter Crosthwaite: From: Bharata B Rao bhar...@linux.vnet.ibm.com Currently CPUState.cpu_index is monotonically increasing and a newly CPUState::cpu_index created CPU always gets the next higher

[Qemu-devel] [PATCH qom v4 2/7] cpus: Convert cpu_index into a bitmap

2015-06-23 Thread Peter Crosthwaite
From: Bharata B Rao bhar...@linux.vnet.ibm.com Currently CPUState.cpu_index is monotonically increasing and a newly created CPU always gets the next higher index. The next available index is calculated by counting the existing number of CPUs. This is fine as long as we only add CPUs, but there