From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from [140.186.70.92] (port=40756 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1P8GDC-00025v-4q for qemu-devel@nongnu.org; Tue, 19 Oct 2010 13:43:36 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1P8GCy-000227-TQ for qemu-devel@nongnu.org; Tue, 19 Oct 2010 13:42:45 -0400 Received: from e23smtp03.au.ibm.com ([202.81.31.145]:56422) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1P8GCy-00020i-Ck for qemu-devel@nongnu.org; Tue, 19 Oct 2010 13:42:44 -0400 Received: from d23relay05.au.ibm.com (d23relay05.au.ibm.com [202.81.31.247]) by e23smtp03.au.ibm.com (8.14.4/8.13.1) with ESMTP id o9JHccVZ006391 for ; Wed, 20 Oct 2010 04:38:38 +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 o9JHgcxN1290482 for ; Wed, 20 Oct 2010 04:42:39 +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 o9JHgcwJ018427 for ; Wed, 20 Oct 2010 04:42:38 +1100 Received: from localhost6.localdomain6 ([9.77.193.62]) by d23av02.au.ibm.com (8.14.4/8.13.1/NCO v10.0 AVin) with ESMTP id o9JHgSmS018356 for ; Wed, 20 Oct 2010 04:42:34 +1100 From: Arun R Bharadwaj Date: Tue, 19 Oct 2010 23:12:20 +0530 Message-ID: <20101019173946.16514.62027.stgit@localhost6.localdomain6> MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit Subject: [Qemu-devel] v6: [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 v6 of the patch-series to have a generic asynchronous task offloading framework (called threadlets) within qemu. Request to consider pulling this series as discussed during the Qemu-devel call. V5 can be found here: http://www.mail-archive.com/qemu-devel@nongnu.org/msg43827.html Change from v5: * Cleaned up a few minor typos pointed out by Stefan The following series implements... --- Aneesh Kumar K.V (1): Introduce threadlets Gautham R Shenoy (2): Make paio subsystem use threadlets Add helper functions for virtio-9p to use threadlets Makefile.objs | 3 - docs/async-support.txt | 141 +++++++++++++++++++++++++++++++++++ hw/virtio-9p.c | 165 ++++++++++++++++++++++++++++++++++++++++- posix-aio-compat.c | 195 ++++++++++-------------------------------------- qemu-threadlets.c | 186 ++++++++++++++++++++++++++++++++++++++++++++++ qemu-threadlets.h | 49 ++++++++++++ vl.c | 3 + 7 files changed, 584 insertions(+), 158 deletions(-) create mode 100644 docs/async-support.txt create mode 100644 qemu-threadlets.c create mode 100644 qemu-threadlets.h -- arun