]> git.proxmox.com Git - mirror_qemu.git/blame - hw/9pfs/cofile.c
Merge remote-tracking branch 'pmaydell/armhw-for-upstream' into staging
[mirror_qemu.git] / hw / 9pfs / cofile.c
CommitLineData
172198d4
AK
1
2/*
3 * Virtio 9p backend
4 *
5 * Copyright IBM, Corp. 2011
6 *
7 * Authors:
8 * Aneesh Kumar K.V <aneesh.kumar@linux.vnet.ibm.com>
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_lstat(V9fsState *s, V9fsString *path, struct stat *stbuf)
21{
22 int err;
23
24 v9fs_co_run_in_worker(
25 {
26 err = s->ops->lstat(&s->ctx, path->data, stbuf);
27 if (err < 0) {
28 err = -errno;
29 }
30 });
31 return err;
32}