From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([140.186.70.92]:59190) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QwZbD-00068x-DE for qemu-devel@nongnu.org; Thu, 25 Aug 2011 09:04:00 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QwZbC-00025k-7D for qemu-devel@nongnu.org; Thu, 25 Aug 2011 09:03:59 -0400 Received: from e37.co.us.ibm.com ([32.97.110.158]:44438) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QwZbB-00025Z-RB for qemu-devel@nongnu.org; Thu, 25 Aug 2011 09:03:58 -0400 Received: from d03relay01.boulder.ibm.com (d03relay01.boulder.ibm.com [9.17.195.226]) by e37.co.us.ibm.com (8.14.4/8.13.1) with ESMTP id p7PD0iF1002618 for ; Thu, 25 Aug 2011 07:00:44 -0600 Received: from d03av01.boulder.ibm.com (d03av01.boulder.ibm.com [9.17.195.167]) by d03relay01.boulder.ibm.com (8.13.8/8.13.8/NCO v10.0) with ESMTP id p7PD3kjh131264 for ; Thu, 25 Aug 2011 07:03:47 -0600 Received: from d03av01.boulder.ibm.com (loopback [127.0.0.1]) by d03av01.boulder.ibm.com (8.14.4/8.13.1/NCO v10.0 AVout) with ESMTP id p7PD3kwZ028624 for ; Thu, 25 Aug 2011 07:03:46 -0600 Message-ID: <4E56482D.1020701@us.ibm.com> Date: Thu, 25 Aug 2011 08:03:41 -0500 From: Anthony Liguori MIME-Version: 1.0 References: <8762lmn7ua.fsf@skywalker.in.ibm.com> In-Reply-To: <8762lmn7ua.fsf@skywalker.in.ibm.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PULL] VirtFS coroutine changes patchset 2 List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: "Aneesh Kumar K.V" Cc: QEMU Developers On 08/24/2011 10:32 AM, Aneesh Kumar K.V wrote: > > The following changes since commit f1a7104a5f435a1bf2a1158e6f737dbd89e8c153: > > Merge remote-tracking branch 'pmaydell/armhw-for-upstream' into staging (2011-08-21 18:34:33 -0500) > > are available in the git repository at: > > git://repo.or.cz/qemu/v9fs.git for-upstream-2 Pulled. Thanks. Regards, Anthony Liguori > > Aneesh Kumar K.V (17): > hw/9pfs: Add yeild support for fstat coroutine > hw/9pfs: Update v9fs_lock to use coroutines > hw/9pfs: Update v9fs_getlock to use coroutines > hw/9pfs: Add yield support for open and opendir coroutine > hw/9pfs: Update v9fs_open to use coroutines > hw/9pfs: Update v9fs_stat to use coroutines > hw/9pfs: Update v9fs_walk to use coroutines > hw/9pfs: Add yeild support for clunk related coroutine > hw/9pfs: Update v9fs_clunk to use coroutines > hw/9pfs: Add yield support for fsync coroutine > hw/9pfs: Update v9fs_fsync to use coroutines > hw/9pfs: Add yield support for pwritev coroutine > hw/9pfs: Update v9fs_write to use coroutines > hw/9pfs: Update v9fs_wstat to use coroutines > hw/9pfs: Update v9fs_attach to use coroutines > hw/9pfs: Add yield support for preadv coroutine > hw/9pfs: Update v9fs_read to use coroutines > > Harsh Prateek Bora (1): > use readdir_r instead of readdir for reentrancy > > Venkateswararao Jujjuri (6): > hw/9pfs: Add yield support for open2 coroutine > hw/9pfs: Update v9fs_lcreate to use coroutines > hw/9pfs: Update v9fs_create to use coroutines > hw/9pfs: Add yield support for symlin coroutine > hw/9pfs: Update v9fs_symlink to use coroutines > hw/9pfs: Add yield support for link coroutine > > Venkateswararao Jujjuri (JV) (1): > hw/9pfs: Update v9fs_link to use coroutines > > fsdev/file-op-9p.h | 2 +- > hw/9pfs/codir.c | 40 +- > hw/9pfs/cofile.c | 131 ++++ > hw/9pfs/cofs.c | 20 + > hw/9pfs/coxattr.c | 34 + > hw/9pfs/virtio-9p-coth.h | 21 +- > hw/9pfs/virtio-9p-local.c | 7 +- > hw/9pfs/virtio-9p.c | 1859 +++++++++++++++------------------------------ > hw/9pfs/virtio-9p.h | 79 -- > 9 files changed, 857 insertions(+), 1336 deletions(-) > >