From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([140.186.70.92]:35671) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QMtQX-0005CU-Kl for qemu-devel@nongnu.org; Wed, 18 May 2011 22:57:30 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QMtQW-0004sl-2n for qemu-devel@nongnu.org; Wed, 18 May 2011 22:57:29 -0400 Received: from e32.co.us.ibm.com ([32.97.110.150]:44295) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QMtQV-0004sP-OT for qemu-devel@nongnu.org; Wed, 18 May 2011 22:57:27 -0400 Received: from d03relay01.boulder.ibm.com (d03relay01.boulder.ibm.com [9.17.195.226]) by e32.co.us.ibm.com (8.14.4/8.13.1) with ESMTP id p4J2jw7i019192 for ; Wed, 18 May 2011 20:45:58 -0600 Received: from d03av02.boulder.ibm.com (d03av02.boulder.ibm.com [9.17.195.168]) by d03relay01.boulder.ibm.com (8.13.8/8.13.8/NCO v10.0) with ESMTP id p4J2vIPG127812 for ; Wed, 18 May 2011 20:57:20 -0600 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 p4IKuoib014884 for ; Wed, 18 May 2011 14:56:50 -0600 From: "Venkateswararao Jujjuri (JV)" Date: Wed, 18 May 2011 19:56:50 -0700 Message-Id: <1305773834-16359-1-git-send-email-jvrao@linux.vnet.ibm.com> Subject: [Qemu-devel] [V3 0/24] Async threading for VirtFS using glib threads & coroutines. List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: aliguori@us.ibm.com, "Venkateswararao Jujjuri \"" , stefanha@linux.vnet.ibm.com Anthony's " Add hard build dependency on glib" patch and Kevin/Stefan's coroutine effort is a prerequisite. Changes from V2 -------------- o Addressed all minor review comments. o Merged two patches to avoid confusion with readlink argument. Changes from V1 --------------- o Redesigned to use bh as per Stefan's suggestion. This made the code very simple but is little less performant compared to V1. Anthony suggested to go-in with cleaner code and design (This version) and deal with the performance later. Just to put in perspective: Sequential Writes of creating 1GB files using ffsb o Write size 8k With bh: 66.9MB/sec Without bh (marshalling routines): 74.9 MB/sec o Write size 128k With bh: 117MB/sec Without bh (marshalling routines): 122MB/sec o Addressed all review comments. o Using readdir_r is currently being worked on. Will add as a patch on top. This patch set contains: - Converting all 9pfs calls into coroutines. - Each 9P operation will be modified for: - Remove post* functions. These are our call back functions which makes the code very hard to read. Now with coroutines, we can achieve the same state machine model with nice sequential code flow. - Move errno access near to the local_syscall() - Introduce asynchronous threading This series has the basic infrastructure and few routines like mkdir,monod,unlink,readdir,xattr,lstat, etc converted. Currently we are working on converting and testing other 9P operations also into this model and those patches will follow shortly. Removing callback functions made some of the patches little lengthy. Here is the git tree for the reviewer convenience. http://repo.or.cz/w/qemu/aliguori/jvrao.git/shortlog/refs/heads/9p-coroutine-bh-round1-v3 Signed-off-by: Venkateswararao Jujjuri "