Re: [Qemu-devel] [PATCH v3 2/8] cpus: Convert cpu_index into a bitmap

2015-07-02 Thread Andreas Färber
Am 18.06.2015 um 19:24 schrieb Peter Crosthwaite: > diff --git a/exec.c b/exec.c > index 015fa4a..549c209 100644 > --- a/exec.c > +++ b/exec.c > @@ -509,21 +509,66 @@ void tcg_cpu_address_space_init(CPUState *cpu, > AddressSpace *as) > } > #endif > > +#ifndef CONFIG_USER_ONLY > +static DECLARE

[Qemu-devel] [PATCH v3 2/8] cpus: Convert cpu_index into a bitmap

2015-06-18 Thread Peter Crosthwaite
From: Bharata B Rao 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 are architectures which are s