Re: [Qemu-devel] [PATCH 1/2] target-i386: move CPU object creation to cpu.c

2012-12-14 Thread Igor Mammedov
On Wed, 12 Dec 2012 16:16:22 -0200 Eduardo Habkost ehabk...@redhat.com wrote: As we will need to create the CPU object after splitting the CPU model string (because we're going to use different subclasses for each CPU model), move the CPU object creation to cpu_x86_register(), and at the same

Re: [Qemu-devel] [PATCH 1/2] target-i386: move CPU object creation to cpu.c

2012-12-14 Thread Eduardo Habkost
On Fri, Dec 14, 2012 at 11:26:55AM +0100, Igor Mammedov wrote: On Wed, 12 Dec 2012 16:16:22 -0200 Eduardo Habkost ehabk...@redhat.com wrote: As we will need to create the CPU object after splitting the CPU model string (because we're going to use different subclasses for each CPU model),

[Qemu-devel] [PATCH 1/2] target-i386: move CPU object creation to cpu.c

2012-12-12 Thread Eduardo Habkost
As we will need to create the CPU object after splitting the CPU model string (because we're going to use different subclasses for each CPU model), move the CPU object creation to cpu_x86_register(), and at the same time rename cpu_x86_register() to cpu_x86_create(). This will also simplify the

Re: [Qemu-devel] [PATCH 1/2] target-i386: move CPU object creation to cpu.c

2012-12-11 Thread Eduardo Habkost
On Mon, Dec 10, 2012 at 10:30:42PM -0200, Eduardo Habkost wrote: As we will need to create the CPU object after splitting the CPU model string (because we're going to use different subclasses for each CPU model), move the CPU object creation to cpu_x86_register(), and at the same time rename

Re: [Qemu-devel] [PATCH 1/2] target-i386: move CPU object creation to cpu.c

2012-12-11 Thread Igor Mammedov
On Mon, 10 Dec 2012 22:30:42 -0200 Eduardo Habkost ehabk...@redhat.com wrote: As we will need to create the CPU object after splitting the CPU model string (because we're going to use different subclasses for each CPU model), move the CPU object creation to cpu_x86_register(), and at the same

Re: [Qemu-devel] [PATCH 1/2] target-i386: move CPU object creation to cpu.c

2012-12-11 Thread Eduardo Habkost
On Tue, Dec 11, 2012 at 02:33:24PM +0100, Igor Mammedov wrote: On Mon, 10 Dec 2012 22:30:42 -0200 Eduardo Habkost ehabk...@redhat.com wrote: As we will need to create the CPU object after splitting the CPU model string (because we're going to use different subclasses for each CPU model),

[Qemu-devel] [PATCH 1/2] target-i386: move CPU object creation to cpu.c

2012-12-10 Thread Eduardo Habkost
As we will need to create the CPU object after splitting the CPU model string (because we're going to use different subclasses for each CPU model), move the CPU object creation to cpu_x86_register(), and at the same time rename cpu_x86_register() to cpu_x86_create(). This will also simplify the