mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-03 07:43:54 -06:00
9p: darwin: Compatibility for f/l*xattr
On darwin `fgetxattr` takes two extra optional arguments, and the l* variants are not defined (in favor of an extra flag to the regular variants. Signed-off-by: Keno Fischer <keno@juliacomputing.com> [Michael Roitzsch: - Rebase for NixOS] Signed-off-by: Michael Roitzsch <reactorcontrol@icloud.com> Signed-off-by: Will Cohen <wwcohen@gmail.com> Message-Id: <20220227223522.91937-9-wwcohen@gmail.com> Signed-off-by: Christian Schoenebeck <qemu_oss@crudebyte.com> Acked-by: Christian Schoenebeck <qemu_oss@crudebyte.com>
This commit is contained in:
parent
57b3910bc3
commit
b5989326f5
2 changed files with 25 additions and 4 deletions
|
@ -19,6 +19,23 @@
|
|||
#define O_PATH_9P_UTIL 0
|
||||
#endif
|
||||
|
||||
#ifdef CONFIG_DARWIN
|
||||
#define qemu_fgetxattr(...) fgetxattr(__VA_ARGS__, 0, 0)
|
||||
#define qemu_lgetxattr(...) getxattr(__VA_ARGS__, 0, XATTR_NOFOLLOW)
|
||||
#define qemu_llistxattr(...) listxattr(__VA_ARGS__, XATTR_NOFOLLOW)
|
||||
#define qemu_lremovexattr(...) removexattr(__VA_ARGS__, XATTR_NOFOLLOW)
|
||||
static inline int qemu_lsetxattr(const char *path, const char *name,
|
||||
const void *value, size_t size, int flags) {
|
||||
return setxattr(path, name, value, size, 0, flags | XATTR_NOFOLLOW);
|
||||
}
|
||||
#else
|
||||
#define qemu_fgetxattr fgetxattr
|
||||
#define qemu_lgetxattr lgetxattr
|
||||
#define qemu_llistxattr llistxattr
|
||||
#define qemu_lremovexattr lremovexattr
|
||||
#define qemu_lsetxattr lsetxattr
|
||||
#endif
|
||||
|
||||
static inline void close_preserve_errno(int fd)
|
||||
{
|
||||
int serrno = errno;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue