From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:60268) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Wk9hz-00033E-7Z for qemu-devel@nongnu.org; Tue, 13 May 2014 06:13:22 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Wk9ht-0002Ht-2P for qemu-devel@nongnu.org; Tue, 13 May 2014 06:13:15 -0400 Received: from [59.151.112.132] (port=51943 helo=heian.cn.fujitsu.com) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Wk9hs-00029p-Ne for qemu-devel@nongnu.org; Tue, 13 May 2014 06:13:08 -0400 From: Chen Fan Date: Tue, 13 May 2014 18:08:46 +0800 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable Subject: [Qemu-devel] [RFC 0/3] cpu: add device_add foo-x86_64-cpu support List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Igor Mammedov , =?UTF-8?q?Andreas=20F=C3=A4rber?= , Eduardo Habkost this patches tried to make cpu hotplug with device_add,=20 and made -device foo-x86_64-cpu available=EF=BC=8Calso we can set apic-id property with command line, if without setting apic-id property, we added first unoccupied apic id as the default new apic id. and hotplug cpu with device_add, we must make check of APIC ID after cpu object initialization that was different from 'cpu_add' command which check 'ids' at the beginning. Chen Fan (3): using CPUMASK bitmaps to calculate cpu index cpu: introduce CpuTopoInfo structure for argument simplification cpu: add device_add foo-x86_64-cpu support exec.c | 9 +++-- include/qom/cpu.h | 11 ++++++ include/sysemu/sysemu.h | 7 ---- qdev-monitor.c | 11 ++++++ target-i386/cpu.c | 91 +++++++++++++++++++++++++++++++++++++++++++++= +++- target-i386/topology.h | 51 ++++++++++++++++++--------- 6 files changed, 151 insertions(+), 29 deletions(-) --=20 1.8.1.4