From: Anthony Liguori <anthony@codemonkey.ws>
To: "Aneesh Kumar K.V" <aneesh.kumar@linux.vnet.ibm.com>
Cc: qemu-devel@nongnu.org
Subject: Re: [Qemu-devel] [PULL] [PATCHSET 2] VirtFS coroutine changes
Date: Sun, 21 Aug 2011 18:36:11 -0500 [thread overview]
Message-ID: <4E51966B.2010703@codemonkey.ws> (raw)
In-Reply-To: <87ty9hzsta.fsf@skywalker.in.ibm.com>
On 08/16/2011 03:03 AM, Aneesh Kumar K.V wrote:
>
> Here is the updated pull request for the second patchset.
>
> The following changes since commit 3b6ffe50300f13240e1b46420ad05da1116df410:
>
> hw/scsi-bus.c: Fix use of uninitialised variable (2011-08-14 19:34:25 +0000)
>
> are available in the git repository at:
> git://repo.or.cz/qemu/v9fs.git for-upstream-2
This conflicts badly with master. Please rebase.
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 | 1855 +++++++++++++++------------------------------
> hw/9pfs/virtio-9p.h | 79 --
> 9 files changed, 859 insertions(+), 1330 deletions(-)
>
>
next prev parent reply other threads:[~2011-08-21 23:36 UTC|newest]
Thread overview: 33+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-08-08 17:06 [Qemu-devel] [PATCHSET 2] VirtFS coroutine changes Aneesh Kumar K.V
2011-08-08 17:06 ` [Qemu-devel] [PATCH -V4 01/28] hw/9pfs: Update vfs_rename to use coroutines Aneesh Kumar K.V
2011-08-08 17:06 ` [Qemu-devel] [PATCH -V4 02/28] hw/9pfs: Add yeild support for fstat coroutine Aneesh Kumar K.V
2011-08-08 17:06 ` [Qemu-devel] [PATCH -V4 03/28] hw/9pfs: Update v9fs_lock to use coroutines Aneesh Kumar K.V
2011-08-08 17:06 ` [Qemu-devel] [PATCH -V4 04/28] hw/9pfs: Update v9fs_getlock " Aneesh Kumar K.V
2011-08-08 17:06 ` [Qemu-devel] [PATCH -V4 05/28] hw/9pfs: Add yield support for open and opendir coroutine Aneesh Kumar K.V
2011-08-08 17:06 ` [Qemu-devel] [PATCH -V4 06/28] hw/9pfs: Update v9fs_open to use coroutines Aneesh Kumar K.V
2011-08-08 17:06 ` [Qemu-devel] [PATCH -V4 07/28] [virtio-9p] Remove post functions for v9fs_lcreate Aneesh Kumar K.V
2011-08-08 17:06 ` [Qemu-devel] [PATCH -V4 08/28] [virtio-9p] clean up v9fs_lcreate Aneesh Kumar K.V
2011-08-08 17:06 ` [Qemu-devel] [PATCH -V4 09/28] [virtio-9p] coroutine and threading for open2 Aneesh Kumar K.V
2011-08-08 17:06 ` [Qemu-devel] [PATCH -V4 10/28] hw/9pfs: Update v9fs_stat to use coroutines Aneesh Kumar K.V
2011-08-08 17:06 ` [Qemu-devel] [PATCH -V4 11/28] hw/9pfs: Update v9fs_walk " Aneesh Kumar K.V
2011-08-08 17:06 ` [Qemu-devel] [PATCH -V4 12/28] hw/9pfs: Add yeild support for clunk related coroutine Aneesh Kumar K.V
2011-08-08 17:06 ` [Qemu-devel] [PATCH -V4 13/28] hw/9pfs: Update v9fs_clunk to use coroutines Aneesh Kumar K.V
2011-08-08 17:06 ` [Qemu-devel] [PATCH -V4 14/28] hw/9pfs: Add yield support for fsync coroutine Aneesh Kumar K.V
2011-08-08 17:06 ` [Qemu-devel] [PATCH -V4 15/28] hw/9pfs: Update v9fs_fsync to use coroutines Aneesh Kumar K.V
2011-08-08 17:06 ` [Qemu-devel] [PATCH -V4 16/28] [virtio-9p] Remove post functions for v9fs_create Aneesh Kumar K.V
2011-08-08 17:06 ` [Qemu-devel] [PATCH -V4 17/28] [virtio-9p] clean up v9fs_create Rearrange the code Aneesh Kumar K.V
2011-08-08 17:06 ` [Qemu-devel] [PATCH -V4 18/28] [virtio-9p] Remove post functions for v9fs_symlink Aneesh Kumar K.V
2011-08-08 17:06 ` [Qemu-devel] [PATCH -V4 19/28] [virtio-9p] clean up v9fs_symlink Aneesh Kumar K.V
2011-08-08 17:06 ` [Qemu-devel] [PATCH -V4 20/28] [virtio-9p] coroutine and threading for v9fs_do_symlink Aneesh Kumar K.V
2011-08-08 17:06 ` [Qemu-devel] [PATCH -V4 21/28] [virtio-9p] coroutine and threading for v9fs_do_link Aneesh Kumar K.V
2011-08-08 17:06 ` [Qemu-devel] [PATCH -V4 22/28] hw/9pfs: Add yield support for pwritev coroutine Aneesh Kumar K.V
2011-08-08 17:06 ` [Qemu-devel] [PATCH -V4 23/28] hw/9pfs: Update v9fs_write to use coroutines Aneesh Kumar K.V
2011-08-08 17:06 ` [Qemu-devel] [PATCH -V4 24/28] hw/9pfs: Update v9fs_wstat " Aneesh Kumar K.V
2011-08-08 17:06 ` [Qemu-devel] [PATCH -V4 25/28] hw/9pfs: Update v9fs_attach " Aneesh Kumar K.V
2011-08-08 17:06 ` [Qemu-devel] [PATCH -V4 26/28] hw/9pfs: Add yield support for preadv coroutine Aneesh Kumar K.V
2011-08-08 17:06 ` [Qemu-devel] [PATCH -V4 27/28] hw/9pfs: Update v9fs_read to use coroutines Aneesh Kumar K.V
2011-08-08 17:06 ` [Qemu-devel] [PATCH -V4 28/28] use readdir_r instead of readdir for reentrancy Aneesh Kumar K.V
2011-08-11 15:47 ` [Qemu-devel] [PATCHSET 2] VirtFS coroutine changes Aneesh Kumar K.V
2011-08-16 8:03 ` [Qemu-devel] [PULL] " Aneesh Kumar K.V
2011-08-21 23:36 ` Anthony Liguori [this message]
2011-08-22 5:52 ` Aneesh Kumar K.V
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=4E51966B.2010703@codemonkey.ws \
--to=anthony@codemonkey.ws \
--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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.