Re: [Qemu-devel] [PATCH RFC 5/7] cpu: Introduce cpu_class_foreach()

2012-01-30 Thread Andreas Färber
Am 30.01.2012 03:16, schrieb Anthony Liguori: > On 01/29/2012 07:25 AM, Andreas Färber wrote: >> Provides an easy way to loop over all non-abstract CPU classes. >> >> Signed-off-by: Andreas Färber > > I have a patch in my next series which provides an interface for this. > > https://github.com/al

Re: [Qemu-devel] [PATCH RFC 5/7] cpu: Introduce cpu_class_foreach()

2012-01-29 Thread Anthony Liguori
On 01/29/2012 07:25 AM, Andreas Färber wrote: Provides an easy way to loop over all non-abstract CPU classes. Signed-off-by: Andreas Färber I have a patch in my next series which provides an interface for this. https://github.com/aliguori/qemu/commit/42ab3f78477307438591c77816f06f12cf9d9fc0

[Qemu-devel] [PATCH RFC 5/7] cpu: Introduce cpu_class_foreach()

2012-01-29 Thread Andreas Färber
Provides an easy way to loop over all non-abstract CPU classes. Signed-off-by: Andreas Färber --- hw/cpu.c | 25 + include/qemu/cpu.h |9 + 2 files changed, 34 insertions(+), 0 deletions(-) diff --git a/hw/cpu.c b/hw/cpu.c index c0e9cfa..ac0add7 1