From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from [140.186.70.92] (port=49300 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PGAab-0003po-4M for qemu-devel@nongnu.org; Wed, 10 Nov 2010 08:19:50 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1PGAaa-0004tU-57 for qemu-devel@nongnu.org; Wed, 10 Nov 2010 08:19:49 -0500 Received: from e23smtp09.au.ibm.com ([202.81.31.142]:44511) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1PGAaZ-0004so-Jl for qemu-devel@nongnu.org; Wed, 10 Nov 2010 08:19:48 -0500 Received: from d23relay05.au.ibm.com (d23relay05.au.ibm.com [202.81.31.247]) by e23smtp09.au.ibm.com (8.14.4/8.13.1) with ESMTP id oAADJgVA022449 for ; Thu, 11 Nov 2010 00:19:42 +1100 Received: from d23av02.au.ibm.com (d23av02.au.ibm.com [9.190.235.138]) by d23relay05.au.ibm.com (8.13.8/8.13.8/NCO v10.0) with ESMTP id oAADJg502130158 for ; Thu, 11 Nov 2010 00:19:42 +1100 Received: from d23av02.au.ibm.com (loopback [127.0.0.1]) by d23av02.au.ibm.com (8.14.4/8.13.1/NCO v10.0 AVout) with ESMTP id oAADJfn6018529 for ; Thu, 11 Nov 2010 00:19:41 +1100 Received: from localhost6.localdomain6 ([9.124.35.43]) by d23av02.au.ibm.com (8.14.4/8.13.1/NCO v10.0 AVin) with ESMTP id oAADJfPP018474 for ; Thu, 11 Nov 2010 00:19:41 +1100 From: Arun R Bharadwaj Date: Wed, 10 Nov 2010 18:49:38 +0530 Message-ID: <20101110131822.29714.34137.stgit@localhost6.localdomain6> MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit Subject: [Qemu-devel] v10: [PATCH 0/3] Threadlets: A generic task offloading framework. List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Hi, This is v10 of the patch-series to have a generic asynchronous task offloading framework (called threadlets) within qemu. Changelog: * Removed the unnecessary active field from the structure qemu_paiocb. * Rewrote the logic of the function paio_cancel * Removed the unused CONFIG_THREAD=y from the configure code. The following series implements... --- Aneesh Kumar K.V (1): Make paio subsystem use threadlets infrastructure Arun R Bharadwaj (1): Move threadlets infrastructure to qemu-threadlets.c Gautham R Shenoy (1): Add helper functions to enable virtio-9p make use of the threadlets Makefile.objs | 3 - configure | 2 docs/async-support.txt | 141 ++++++++++++++++++++++++++++++ hw/virtio-9p.c | 164 +++++++++++++++++++++++++++++++++++ posix-aio-compat.c | 226 +++++++++++------------------------------------- qemu-threadlets.c | 189 ++++++++++++++++++++++++++++++++++++++++ qemu-threadlets.h | 49 ++++++++++ vl.c | 3 + 8 files changed, 600 insertions(+), 177 deletions(-) create mode 100644 docs/async-support.txt create mode 100644 qemu-threadlets.c create mode 100644 qemu-threadlets.h -- arun