5 * Copyright IBM, Corp. 2011
8 * Aneesh Kumar K.V <aneesh.kumar@linux.vnet.ibm.com>
10 * This work is licensed under the terms of the GNU GPL, version 2. See
11 * the COPYING file in the top-level directory.
15 #include "fsdev/qemu-fsdev.h"
16 #include "qemu-thread.h"
17 #include "qemu-coroutine.h"
18 #include "virtio-9p-coth.h"
20 int v9fs_co_readdir(V9fsState
*s
, V9fsFidState
*fidp
, struct dirent
**dent
)
24 v9fs_co_run_in_worker(
27 /*FIXME!! need to switch to readdir_r */
28 *dent
= s
->ops
->readdir(&s
->ctx
, fidp
->fs
.dir
);
29 if (!*dent
&& errno
) {
38 off_t
v9fs_co_telldir(V9fsState
*s
, V9fsFidState
*fidp
)
42 v9fs_co_run_in_worker(
44 err
= s
->ops
->telldir(&s
->ctx
, fidp
->fs
.dir
);
52 void v9fs_co_seekdir(V9fsState
*s
, V9fsFidState
*fidp
, off_t offset
)
54 v9fs_co_run_in_worker(
56 s
->ops
->seekdir(&s
->ctx
, fidp
->fs
.dir
, offset
);
60 void v9fs_co_rewinddir(V9fsState
*s
, V9fsFidState
*fidp
)
62 v9fs_co_run_in_worker(
64 s
->ops
->rewinddir(&s
->ctx
, fidp
->fs
.dir
);
68 int v9fs_co_mkdir(V9fsState
*s
, char *name
, mode_t mode
, uid_t uid
, gid_t gid
)
77 v9fs_co_run_in_worker(
79 err
= s
->ops
->mkdir(&s
->ctx
, name
, &cred
);