hw/9pfs: Add yeild support for clunk related coroutine

This include lsetxattr, lremovexattr, closedir and close.

Signed-off-by: Aneesh Kumar K.V <aneesh.kumar@linux.vnet.ibm.com>
This commit is contained in:
Aneesh Kumar K.V 2011-05-07 21:09:24 +05:30
parent 3cc19c0c60
commit bed4352c4f
4 changed files with 71 additions and 0 deletions

View file

@ -81,3 +81,19 @@ int v9fs_co_open2(V9fsState *s, V9fsFidState *fidp, char *fullname, gid_t gid,
});
return err;
}
int v9fs_co_close(V9fsState *s, V9fsFidState *fidp)
{
int fd;
int err;
fd = fidp->fs.fd;
v9fs_co_run_in_worker(
{
err = s->ops->close(&s->ctx, fd);
if (err < 0) {
err = -errno;
}
});
return err;
}