This commit is contained in:
2026-08-14 12:01:38 +02:00
commit 0bbc249155
21 changed files with 6786 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
/* SPDX-License-Identifier: GPL-2.0-only */
/*
* Copyright (C) 2017-2018 HUAWEI, Inc.
* https://www.huawei.com/
*/
#ifndef __EROFS_XATTR_H
#define __EROFS_XATTR_H
#include "internal.h"
int erofs_xattr_prefixes_init(struct erofs_mount *em);
void erofs_xattr_prefixes_cleanup(struct erofs_mount *em);
int erofs_getxattr(struct vnode *vp, int attrnamespace, const char *name,
struct uio *uio, size_t *sizep);
int erofs_listxattr(struct vnode *vp, int attrnamespace, struct uio *uio,
size_t *sizep);
int erofs_get_acl(struct vnode *vp, acl_type_t type, struct acl *aclp);
#endif