From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:48512) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SWmRi-0002sw-84 for qemu-devel@nongnu.org; Tue, 22 May 2012 06:36:10 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1SWmRc-0003pC-6H for qemu-devel@nongnu.org; Tue, 22 May 2012 06:36:05 -0400 Received: from mx1.redhat.com ([209.132.183.28]:18822) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SWmRb-0003ns-Vg for qemu-devel@nongnu.org; Tue, 22 May 2012 06:36:00 -0400 From: Igor Mammedov Date: Tue, 22 May 2012 12:35:49 +0200 Message-Id: <1337682954-20618-1-git-send-email-imammedo@redhat.com> Subject: [Qemu-devel] [PATCH qom-next 0/5] target-i386: re-factor CPU creation/initialization to QOM List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: aliguori@us.ibm.com, ehabkost@redhat.com, sw@weilnetz.de, mtosatti@redhat.com, blauwirbel@gmail.com, avi@redhat.com, jan.kiszka@siemens.com, pbonzini@redhat.com, afaerber@suse.de Moving code related to CPU creation and initialization internal parts from board level into apic and cpu objects will allow X86CPU to better model QOM object life-cycle. It will allow to create X86CPU as any other object by creating it with object_new() then setting properties and then calling x86_cpu_realize() to make it running. Later x86_cpu_realize() should become realize property. git tree at: https://github.com/imammedo/qemu/tree/x86-cpu-realize-v2