]> Git Repo - qemu.git/blame - hw/9pfs/coxattr.c
hw/9pfs: Add yield support to xattr related coroutine
[qemu.git] / hw / 9pfs / coxattr.c
CommitLineData
1ceffa54
AK
1
2/*
3 * Virtio 9p backend
4 *
5 * Copyright IBM, Corp. 2011
6 *
7 * Authors:
8 * Aneesh Kumar K.V <[email protected]>
9 *
10 * This work is licensed under the terms of the GNU GPL, version 2. See
11 * the COPYING file in the top-level directory.
12 *
13 */
14
15#include "fsdev/qemu-fsdev.h"
16#include "qemu-thread.h"
17#include "qemu-coroutine.h"
18#include "virtio-9p-coth.h"
19
20int v9fs_co_llistxattr(V9fsState *s, V9fsString *path, void *value, size_t size)
21{
22 int err;
23
24 v9fs_co_run_in_worker(
25 {
26 err = s->ops->llistxattr(&s->ctx, path->data, value, size);
27 if (err < 0) {
28 err = -errno;
29 }
30 });
31 return err;
32}
33
34int v9fs_co_lgetxattr(V9fsState *s, V9fsString *path,
35 V9fsString *xattr_name,
36 void *value, size_t size)
37{
38 int err;
39
40 v9fs_co_run_in_worker(
41 {
42 err = s->ops->lgetxattr(&s->ctx, path->data,
43 xattr_name->data,
44 value, size);
45 if (err < 0) {
46 err = -errno;
47 }
48 });
49 return err;
50}
This page took 0.027356 seconds and 4 git commands to generate.