mbox

[PULL,PATCHSET,1] VirtFS coroutine changes

Message ID 87hb5n6i18.fsf@skywalker.in.ibm.com
State New
Headers show

Pull-request

git://repo.or.cz/qemu/v9fs.git for-upstream-1

Message

Aneesh Kumar K.V Aug. 11, 2011, 4:15 p.m. UTC
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

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

Comments

Anthony Liguori Aug. 12, 2011, 1:04 p.m. UTC | #1
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
>
>