From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from [140.186.70.92] (port=34063 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PaG4e-0006Ta-HL for qemu-devel@nongnu.org; Tue, 04 Jan 2011 18:13:53 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1PaG4d-0002sx-AF for qemu-devel@nongnu.org; Tue, 04 Jan 2011 18:13:52 -0500 Received: from e6.ny.us.ibm.com ([32.97.182.146]:48743) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1PaG4d-0002sZ-7i for qemu-devel@nongnu.org; Tue, 04 Jan 2011 18:13:51 -0500 Received: from d01dlp02.pok.ibm.com (d01dlp02.pok.ibm.com [9.56.224.85]) by e6.ny.us.ibm.com (8.14.4/8.13.1) with ESMTP id p04Mx6Kp025388 for ; Tue, 4 Jan 2011 17:59:08 -0500 Received: from d01relay02.pok.ibm.com (d01relay02.pok.ibm.com [9.56.227.234]) by d01dlp02.pok.ibm.com (Postfix) with ESMTP id 332AE4DE803E for ; Tue, 4 Jan 2011 18:11:00 -0500 (EST) Received: from d03av02.boulder.ibm.com (d03av02.boulder.ibm.com [9.17.195.168]) by d01relay02.pok.ibm.com (8.13.8/8.13.8/NCO v10.0) with ESMTP id p04NDlh0352164 for ; Tue, 4 Jan 2011 18:13:47 -0500 Received: from d03av02.boulder.ibm.com (loopback [127.0.0.1]) by d03av02.boulder.ibm.com (8.14.4/8.13.1/NCO v10.0 AVout) with ESMTP id p04NDkXG003243 for ; Tue, 4 Jan 2011 16:13:47 -0700 Message-ID: <4D23A9A9.10609@linux.vnet.ibm.com> Date: Tue, 04 Jan 2011 15:13:45 -0800 From: "Venkateswararao Jujjuri (JV)" MIME-Version: 1.0 Subject: Re: [Qemu-devel] [PATCH 00/13] Threadlets infrastructure. References: <20110104052627.15887.43436.stgit@localhost6.localdomain6> In-Reply-To: <20110104052627.15887.43436.stgit@localhost6.localdomain6> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Arun R Bharadwaj Cc: aneesh.kumar@linux.vnet.ibm.com, aliguori@us.ibm.com, qemu-devel@nongnu.org, stefanha@linux.vnet.ibm.com On 1/3/2011 9:27 PM, Arun R Bharadwaj wrote: > Hi, > > This patch series implements threadlets infrastructure in qemu. > > This is a complete rework of the earlier patch series so that > it becomes easier to review. I have broken down the earlier > patch series as asked by Anthony > > The following series implements... Arun, can you please describe the testing done on this patch series? Thanks, JV > > --- > > Arun R Bharadwaj (13): > Add aiocb_mutex and aiocb_completion. > Introduce work concept in posix-aio-compat.c > Add callback function to ThreadletWork structure. > Add ThreadletQueue. > Threadlet: Add submit_work threadlet API. > Threadlet: Add dequeue_work threadlet API > Remove active field in qemu_aiocb structure. > Remove thread_create routine. > Threadlet: Add aio_signal_handler threadlet API > Remove all instances of CONFIG_THREAD > Move threadlet code to qemu-threadlets.c > Threadlets: Add functionality to create private queues. > Threadlets: Add documentation > > > Makefile.objs | 3 - > configure | 2 > docs/async-support.txt | 141 +++++++++++++++++++++++++++++ > posix-aio-compat.c | 237 ++++++++++++------------------------------------ > qemu-threadlets.c | 184 +++++++++++++++++++++++++++++++++++++ > qemu-threadlets.h | 47 ++++++++++ > vl.c | 3 + > 7 files changed, 437 insertions(+), 180 deletions(-) > create mode 100644 docs/async-support.txt > create mode 100644 qemu-threadlets.c > create mode 100644 qemu-threadlets.h >