From: Anthony Liguori <aliguori@us.ibm.com>
To: "Aneesh Kumar K.V" <aneesh.kumar@linux.vnet.ibm.com>
Cc: qemu-devel@nongnu.org
Subject: Re: [Qemu-devel] [PULL] [PATCHSET 1] VirtFS coroutine changes
Date: Fri, 12 Aug 2011 08:04:56 -0500 [thread overview]
Message-ID: <4E4524F8.4070602@us.ibm.com> (raw)
In-Reply-To: <87hb5n6i18.fsf@skywalker.in.ibm.com>
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"<aneesh.kumar@linux.vnet.ibm.com> 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
>
>
prev parent reply other threads:[~2011-08-12 13:05 UTC|newest]
Thread overview: 30+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-08-08 17:03 [Qemu-devel] [PATCHSET 1] VirtFS coroutine changes Aneesh Kumar K.V
2011-08-08 17:03 ` [Qemu-devel] [PATCH -V4 01/26] coroutine: add gthread dependency Aneesh Kumar K.V
2011-08-19 10:48 ` TeLeMan
2011-08-08 17:03 ` [Qemu-devel] [PATCH -V4 02/26] [virtio-9p] Add infrastructure to support glib threads and coroutines Aneesh Kumar K.V
2011-08-08 17:03 ` [Qemu-devel] [PATCH -V4 03/26] [virtio-9p] Change all pdu handlers to coroutines Aneesh Kumar K.V
2011-08-08 17:03 ` [Qemu-devel] [PATCH -V4 04/26] [virtio-9p] Remove post functions for v9fs_readlink Aneesh Kumar K.V
2011-08-08 17:03 ` [Qemu-devel] [PATCH -V4 05/26] [virtio-9p] clean up v9fs_readlink Aneesh Kumar K.V
2011-08-08 17:03 ` [Qemu-devel] [PATCH -V4 06/26] [virtio-9p] coroutines for readlink Aneesh Kumar K.V
2011-08-08 17:03 ` [Qemu-devel] [PATCH -V4 07/26] [virtio-9p] Remove post functions for v9fs_mkdir Aneesh Kumar K.V
2011-08-08 17:03 ` [Qemu-devel] [PATCH -V4 08/26] [virtio-9p] clean up v9fs_mkdir Aneesh Kumar K.V
2011-08-08 17:03 ` [Qemu-devel] [PATCH -V4 09/26] hw/9pfs: Add yield support for readdir related coroutines Aneesh Kumar K.V
2011-08-08 17:03 ` [Qemu-devel] [PATCH -V4 10/26] hw/9pfs: Update v9fs_readdir to use coroutines Aneesh Kumar K.V
2011-08-08 17:03 ` [Qemu-devel] [PATCH -V4 11/26] hw/9pfs: Add yield support to statfs coroutine Aneesh Kumar K.V
2011-08-08 17:04 ` [Qemu-devel] [PATCH -V4 12/26] hw/9pfs: Update v9fs_statfs to use coroutines Aneesh Kumar K.V
2011-08-08 17:04 ` [Qemu-devel] [PATCH -V4 13/26] hw/9pfs: Add yield support to lstat coroutine Aneesh Kumar K.V
2011-08-08 17:04 ` [Qemu-devel] [PATCH -V4 14/26] hw/9pfs: Update v9fs_getattr to use coroutines Aneesh Kumar K.V
2011-08-08 17:04 ` [Qemu-devel] [PATCH -V4 15/26] hw/9pfs: Add yield support to setattr related coroutines Aneesh Kumar K.V
2011-08-08 17:04 ` [Qemu-devel] [PATCH -V4 16/26] hw/9pfs: Update v9fs_setattr to use coroutines Aneesh Kumar K.V
2011-08-08 17:04 ` [Qemu-devel] [PATCH -V4 17/26] hw/9pfs: Add yield support to xattr related coroutine Aneesh Kumar K.V
2011-08-08 17:04 ` [Qemu-devel] [PATCH -V4 18/26] hw/9pfs: Update v9fs_xattrwalk to coroutines Aneesh Kumar K.V
2011-08-08 17:04 ` [Qemu-devel] [PATCH -V4 19/26] hw/9pfs: Update v9fs_xattrcreate to use coroutines Aneesh Kumar K.V
2011-08-08 17:04 ` [Qemu-devel] [PATCH -V4 20/26] hw/9pfs: Add yield support to mknod coroutine Aneesh Kumar K.V
2011-08-08 17:04 ` [Qemu-devel] [PATCH -V4 21/26] hw/9pfs: Update v9fs_mknod to use coroutines Aneesh Kumar K.V
2011-08-08 17:04 ` [Qemu-devel] [PATCH -V4 22/26] [virtio-9p] coroutine and threading for mkdir Aneesh Kumar K.V
2011-08-08 17:04 ` [Qemu-devel] [PATCH -V4 23/26] [virtio-9p] Remove post functions for v9fs_remove Aneesh Kumar K.V
2011-08-08 17:04 ` [Qemu-devel] [PATCH -V4 24/26] [virtio-9p] clean up v9fs_remove Aneesh Kumar K.V
2011-08-08 17:04 ` [Qemu-devel] [PATCH -V4 25/26] [virtio-9p] coroutine and threading for remove/unlink Aneesh Kumar K.V
2011-08-08 17:04 ` [Qemu-devel] [PATCH -V4 26/26] hw/9pfs: Add yeild support to rename coroutine Aneesh Kumar K.V
2011-08-11 16:15 ` [Qemu-devel] [PULL] [PATCHSET 1] VirtFS coroutine changes Aneesh Kumar K.V
2011-08-12 13:04 ` Anthony Liguori [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=4E4524F8.4070602@us.ibm.com \
--to=aliguori@us.ibm.com \
--cc=aneesh.kumar@linux.vnet.ibm.com \
--cc=qemu-devel@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).