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_r(V9fsState
*s
, V9fsFidState
*fidp
, struct dirent
*dent
,
21 struct dirent
**result
)
25 v9fs_co_run_in_worker(
28 err
= s
->ops
->readdir_r(&s
->ctx
, fidp
->fs
.dir
, dent
, result
);
29 if (!*result
&& 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
, V9fsFidState
*fidp
, V9fsString
*name
,
69 mode_t mode
, uid_t uid
, gid_t gid
, struct stat
*stbuf
)
79 v9fs_string_init(&fullname
);
80 qemu_co_rwlock_rdlock(&s
->rename_lock
);
81 v9fs_string_sprintf(&fullname
, "%s/%s", fidp
->path
.data
, name
->data
);
82 v9fs_co_run_in_worker(
84 err
= s
->ops
->mkdir(&s
->ctx
, fullname
.data
, &cred
);
88 err
= s
->ops
->lstat(&s
->ctx
, fullname
.data
, stbuf
);
94 qemu_co_rwlock_unlock(&s
->rename_lock
);
95 v9fs_string_free(&fullname
);
99 int v9fs_co_opendir(V9fsState
*s
, V9fsFidState
*fidp
)
103 qemu_co_rwlock_rdlock(&s
->rename_lock
);
104 v9fs_co_run_in_worker(
106 fidp
->fs
.dir
= s
->ops
->opendir(&s
->ctx
, fidp
->path
.data
);
113 qemu_co_rwlock_unlock(&s
->rename_lock
);
116 if (total_open_fd
> open_fd_hw
) {
123 int v9fs_co_closedir(V9fsState
*s
, DIR *dir
)
127 v9fs_co_run_in_worker(
129 err
= s
->ops
->closedir(&s
->ctx
, dir
);