From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:33795) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YyA1B-0005d2-VG for qemu-devel@nongnu.org; Thu, 28 May 2015 22:27:31 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YyA18-0002rr-PW for qemu-devel@nongnu.org; Thu, 28 May 2015 22:27:29 -0400 Received: from e28smtp06.in.ibm.com ([122.248.162.6]:54294) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YyA18-0002qi-58 for qemu-devel@nongnu.org; Thu, 28 May 2015 22:27:26 -0400 Received: from /spool/local by e28smtp06.in.ibm.com with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted for from ; Fri, 29 May 2015 07:57:21 +0530 Received: from d28relay04.in.ibm.com (d28relay04.in.ibm.com [9.184.220.61]) by d28dlp03.in.ibm.com (Postfix) with ESMTP id 60B3F1258059 for ; Fri, 29 May 2015 07:59:41 +0530 (IST) Received: from d28av05.in.ibm.com (d28av05.in.ibm.com [9.184.220.67]) by d28relay04.in.ibm.com (8.14.9/8.14.9/NCO v10.0) with ESMTP id t4T2RIVC50266210 for ; Fri, 29 May 2015 07:57:18 +0530 Received: from d28av05.in.ibm.com (localhost [127.0.0.1]) by d28av05.in.ibm.com (8.14.4/8.14.4/NCO v10.0 AVout) with ESMTP id t4T2RI3B026678 for ; Fri, 29 May 2015 07:57:18 +0530 Date: Fri, 29 May 2015 07:57:15 +0530 From: Bharata B Rao Message-ID: <20150529022715.GB597@in.ibm.com> References: <1432184528-31252-1-git-send-email-bharata@linux.vnet.ibm.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1432184528-31252-1-git-send-email-bharata@linux.vnet.ibm.com> Subject: Re: [Qemu-devel] [PATCH v3 0/3] Bitmap based CPU enumeration Reply-To: bharata@linux.vnet.ibm.com List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: zhugh.fnst@cn.fujitsu.com, ehabkost@redhat.com, agraf@suse.de, imammedo@redhat.com, afaerber@suse.de, david@gibson.dropbear.id.au All the comments have been addressed and the series has been reviewed by David, Eduardo and Igor. Can this series be taken in now ? Regards, Bharata. On Thu, May 21, 2015 at 10:32:05AM +0530, Bharata B Rao wrote: > This patch changes the way cpu_index is handed out to newly created > CPUs by tracking the allocted CPUs in a bitmap. More information and > the need for this patch is described in patch 2/3 of this series. These > generic changes are needed to support CPU hot plug/unplug on PowerPC. > > Changes in v3 > ------------- > - Avoid indentation in non-error path (cosmetic change suggested by Eduardo) > > v3: https://lists.gnu.org/archive/html/qemu-devel/2015-05/msg02151.html > v1: https://lists.gnu.org/archive/html/qemu-devel/2015-05/msg01385.html > v0: https://lists.gnu.org/archive/html/qemu-devel/2015-03/msg02950.html > > Bharata B Rao (3): > cpus: Add Error argument to cpu_exec_init() > cpus: Convert cpu_index into a bitmap > ppc: Move cpu_exec_init() call to realize function > > exec.c | 57 ++++++++++++++++++++++++++++++++++++++++----- > include/exec/exec-all.h | 2 +- > include/qom/cpu.h | 1 + > qom/cpu.c | 7 ++++++ > target-alpha/cpu.c | 2 +- > target-arm/cpu.c | 2 +- > target-cris/cpu.c | 2 +- > target-i386/cpu.c | 2 +- > target-lm32/cpu.c | 2 +- > target-m68k/cpu.c | 2 +- > target-microblaze/cpu.c | 2 +- > target-mips/cpu.c | 2 +- > target-moxie/cpu.c | 2 +- > target-openrisc/cpu.c | 2 +- > target-ppc/translate_init.c | 9 +++++-- > target-s390x/cpu.c | 2 +- > target-sh4/cpu.c | 2 +- > target-sparc/cpu.c | 2 +- > target-tricore/cpu.c | 2 +- > target-unicore32/cpu.c | 2 +- > target-xtensa/cpu.c | 2 +- > 21 files changed, 83 insertions(+), 25 deletions(-) > > -- > 2.1.0