include/standard-headers: add pvrdma related headers
[qemu.git] / hw / 9pfs / 9p-util.c
blobf709c27a1fbdfa19dd5d8b1202e34d203c33c04b
1 /*
2 * 9p utilities
4 * Copyright IBM, Corp. 2017
6 * Authors:
7 * Greg Kurz <groug@kaod.org>
9 * This work is licensed under the terms of the GNU GPL, version 2 or later.
10 * See the COPYING file in the top-level directory.
13 #include "qemu/osdep.h"
14 #include "qemu/xattr.h"
15 #include "9p-util.h"
17 ssize_t fgetxattrat_nofollow(int dirfd, const char *filename, const char *name,
18 void *value, size_t size)
20 char *proc_path = g_strdup_printf("/proc/self/fd/%d/%s", dirfd, filename);
21 int ret;
23 ret = lgetxattr(proc_path, name, value, size);
24 g_free(proc_path);
25 return ret;