From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([140.186.70.92]:51996) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QrrQA-0000ZU-Td for qemu-devel@nongnu.org; Fri, 12 Aug 2011 09:05:08 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QrrQ8-0000UX-RS for qemu-devel@nongnu.org; Fri, 12 Aug 2011 09:05:06 -0400 Received: from e2.ny.us.ibm.com ([32.97.182.142]:36760) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QrrQ8-0000U9-Nc for qemu-devel@nongnu.org; Fri, 12 Aug 2011 09:05:04 -0400 Received: from d01relay03.pok.ibm.com (d01relay03.pok.ibm.com [9.56.227.235]) by e2.ny.us.ibm.com (8.14.4/8.13.1) with ESMTP id p7CChRtN003120 for ; Fri, 12 Aug 2011 08:43:27 -0400 Received: from d03av05.boulder.ibm.com (d03av05.boulder.ibm.com [9.17.195.85]) by d01relay03.pok.ibm.com (8.13.8/8.13.8/NCO v10.0) with ESMTP id p7CD52Zf261366 for ; Fri, 12 Aug 2011 09:05:03 -0400 Received: from d03av05.boulder.ibm.com (loopback [127.0.0.1]) by d03av05.boulder.ibm.com (8.14.4/8.13.1/NCO v10.0 AVout) with ESMTP id p7CD4u4u009182 for ; Fri, 12 Aug 2011 07:04:57 -0600 Message-ID: <4E4524F8.4070602@us.ibm.com> Date: Fri, 12 Aug 2011 08:04:56 -0500 From: Anthony Liguori MIME-Version: 1.0 References: <1312823054-28331-1-git-send-email-aneesh.kumar@linux.vnet.ibm.com> <87hb5n6i18.fsf@skywalker.in.ibm.com> In-Reply-To: <87hb5n6i18.fsf@skywalker.in.ibm.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PULL] [PATCHSET 1] VirtFS coroutine changes List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: "Aneesh Kumar K.V" Cc: qemu-devel@nongnu.org On 08/11/2011 11:15 AM, Aneesh Kumar K.V wrote: > On Mon, 8 Aug 2011 22:33:48 +0530, "Aneesh Kumar K.V" wrote: >> Full patchset is available at >> >> git://repo.or.cz/qemu/v9fs.git for-upstream-1 >> >> -aneesh Pulled. Thanks. Regards, Anthony Liguori > > Here is the updated pull request. I folded few patches based > on the review. But there are no code changes. > > The following changes since commit 23ddf2bb1e4bfe2b72a726fe5e828807b65941ad: > > Fix forcing multicast msgs to loopback on OpenBSD. (2011-08-07 11:06:43 +0000) > > are available in the git repository at: > git://repo.or.cz/qemu/v9fs.git for-upstream-1 > > Aneesh Kumar K.V (15): > hw/9pfs: Add yield support for readdir related coroutines > hw/9pfs: Update v9fs_readdir to use coroutines > hw/9pfs: Add yield support to statfs coroutine > hw/9pfs: Update v9fs_statfs to use coroutines > hw/9pfs: Add yield support to lstat coroutine > hw/9pfs: Update v9fs_getattr to use coroutines > hw/9pfs: Add yield support to setattr related coroutines > hw/9pfs: Update v9fs_setattr to use coroutines > hw/9pfs: Add yield support to xattr related coroutine > hw/9pfs: Update v9fs_xattrwalk to coroutines > hw/9pfs: Update v9fs_xattrcreate to use coroutines > hw/9pfs: Add yield support to mknod coroutine > hw/9pfs: Update v9fs_mknod to use coroutines > hw/9pfs: Add yeild support to rename coroutine > hw/9pfs: Update vfs_rename to use coroutines > > Stefan Hajnoczi (1): > coroutine: add gthread dependency > > Venkateswararao Jujjuri (5): > hw/9pfs: Update v9fs_readlink to use coroutine > hw/9pfs: Add yield support for mkdir coroutine > hw/9pfs: Update mkdir to use coroutines > hw/9pfs: Add yield support for remove > hw/9pfs: Update v9fs_remove to use coroutines > > Venkateswararao Jujjuri (JV) (3): > [virtio-9p] Add infrastructure to support glib threads and coroutines. > [virtio-9p] Change all pdu handlers to coroutines. > hw/9pfs: Add yeild support for readlink > > Makefile.objs | 3 + > configure | 18 +- > hw/9pfs/codir.c | 85 +++ > hw/9pfs/cofile.c | 32 ++ > hw/9pfs/cofs.c | 171 ++++++ > hw/9pfs/coxattr.c | 50 ++ > hw/9pfs/virtio-9p-coth.c | 102 ++++ > hw/9pfs/virtio-9p-coth.h | 79 +++ > hw/9pfs/virtio-9p-device.c | 7 +- > hw/9pfs/virtio-9p.c | 1269 +++++++++++++++++--------------------------- > hw/9pfs/virtio-9p.h | 76 +--- > 11 files changed, 1031 insertions(+), 861 deletions(-) > create mode 100644 hw/9pfs/codir.c > create mode 100644 hw/9pfs/cofile.c > create mode 100644 hw/9pfs/cofs.c > create mode 100644 hw/9pfs/coxattr.c > create mode 100644 hw/9pfs/virtio-9p-coth.c > create mode 100644 hw/9pfs/virtio-9p-coth.h > >