qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: "Aneesh Kumar K.V" <aneesh.kumar@linux.vnet.ibm.com>
To: qemu-devel@nongnu.org
Cc: aliguori@us.ibm.com,
	"Aneesh Kumar K.V" <aneesh.kumar@linux.vnet.ibm.com>
Subject: [Qemu-devel] [PATCH -V4 11/26] hw/9pfs: Add yield support to statfs coroutine
Date: Mon,  8 Aug 2011 22:33:59 +0530	[thread overview]
Message-ID: <1312823054-28331-12-git-send-email-aneesh.kumar@linux.vnet.ibm.com> (raw)
In-Reply-To: <1312823054-28331-1-git-send-email-aneesh.kumar@linux.vnet.ibm.com>

Signed-off-by: Aneesh Kumar K.V <aneesh.kumar@linux.vnet.ibm.com>
---
 hw/9pfs/cofs.c           |   14 ++++++++++++++
 hw/9pfs/virtio-9p-coth.h |    1 +
 2 files changed, 15 insertions(+), 0 deletions(-)

diff --git a/hw/9pfs/cofs.c b/hw/9pfs/cofs.c
index 6bb8b47..4138e4d 100644
--- a/hw/9pfs/cofs.c
+++ b/hw/9pfs/cofs.c
@@ -42,3 +42,17 @@ int v9fs_co_readlink(V9fsState *s, V9fsString *path, V9fsString *buf)
     }
     return err;
 }
+
+int v9fs_co_statfs(V9fsState *s, V9fsString *path, struct statfs *stbuf)
+{
+    int err;
+
+    v9fs_co_run_in_worker(
+        {
+            err = s->ops->statfs(&s->ctx, path->data, stbuf);
+            if (err < 0) {
+                err = -errno;
+            }
+        });
+    return err;
+}
diff --git a/hw/9pfs/virtio-9p-coth.h b/hw/9pfs/virtio-9p-coth.h
index 9aa5953..5d9dc0f 100644
--- a/hw/9pfs/virtio-9p-coth.h
+++ b/hw/9pfs/virtio-9p-coth.h
@@ -62,4 +62,5 @@ extern int v9fs_co_readdir(V9fsState *, V9fsFidState *,
 extern off_t v9fs_co_telldir(V9fsState *, V9fsFidState *);
 extern void v9fs_co_seekdir(V9fsState *, V9fsFidState *, off_t);
 extern void v9fs_co_rewinddir(V9fsState *, V9fsFidState *);
+extern int v9fs_co_statfs(V9fsState *, V9fsString *, struct statfs *);
 #endif
-- 
1.7.4.1

  parent reply	other threads:[~2011-08-08 17:06 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 ` Aneesh Kumar K.V [this message]
2011-08-08 17:04 ` [Qemu-devel] [PATCH -V4 12/26] hw/9pfs: Update v9fs_statfs " 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

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=1312823054-28331-12-git-send-email-aneesh.kumar@linux.vnet.ibm.com \
    --to=aneesh.kumar@linux.vnet.ibm.com \
    --cc=aliguori@us.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).