From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from [140.186.70.92] (port=34007 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PAkPw-0001KO-M8 for qemu-devel@nongnu.org; Tue, 26 Oct 2010 10:22:30 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1PAkI7-0002Pu-QH for qemu-devel@nongnu.org; Tue, 26 Oct 2010 10:14:22 -0400 Received: from e23smtp06.au.ibm.com ([202.81.31.148]:33509) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1PAkI7-0002PI-8I for qemu-devel@nongnu.org; Tue, 26 Oct 2010 10:14:19 -0400 Received: from d23relay05.au.ibm.com (d23relay05.au.ibm.com [202.81.31.247]) by e23smtp06.au.ibm.com (8.14.4/8.13.1) with ESMTP id o9QEE84l010364 for ; Wed, 27 Oct 2010 01:14:08 +1100 Received: from d23av01.au.ibm.com (d23av01.au.ibm.com [9.190.234.96]) by d23relay05.au.ibm.com (8.13.8/8.13.8/NCO v10.0) with ESMTP id o9QEEGvT757764 for ; Wed, 27 Oct 2010 01:14:16 +1100 Received: from d23av01.au.ibm.com (loopback [127.0.0.1]) by d23av01.au.ibm.com (8.14.4/8.13.1/NCO v10.0 AVout) with ESMTP id o9QEEFON004928 for ; Wed, 27 Oct 2010 01:14:15 +1100 Received: from localhost6.localdomain6 ([9.77.199.82]) by d23av01.au.ibm.com (8.14.4/8.13.1/NCO v10.0 AVin) with ESMTP id o9QEEDan004875 for ; Wed, 27 Oct 2010 01:14:14 +1100 From: Arun R Bharadwaj Date: Tue, 26 Oct 2010 19:44:09 +0530 Message-ID: <20101026140218.22030.59808.stgit@localhost6.localdomain6> MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit Subject: [Qemu-devel] v8: [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 the v8 of the patch-series to have a generic asynchronous task offloading framework (called threadlets) within qemu. Changes from v7: * A few minor modifications is patch 3/3 which I had earlier overlooked. - Remove a couple of debug print statements. - Remove the unnecessary posix_aio_state check. The following series implements... --- Aneesh Kumar K.V (1): Introduce threadlets Gautham R Shenoy (2): Make paio subsystem use threadlets Add helper functions to enable virtio-9p make use of the threadlets Makefile.objs | 3 - docs/async-support.txt | 141 ++++++++++++++++++++++++++++++++++ hw/virtio-9p.c | 164 +++++++++++++++++++++++++++++++++++++++ posix-aio-compat.c | 200 ++++++++++-------------------------------------- qemu-threadlets.c | 188 +++++++++++++++++++++++++++++++++++++++++++++ qemu-threadlets.h | 49 ++++++++++++ vl.c | 3 + 7 files changed, 588 insertions(+), 160 deletions(-) create mode 100644 docs/async-support.txt create mode 100644 qemu-threadlets.c create mode 100644 qemu-threadlets.h -- arun