2022-10-27 03:08:33 +08:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0 */
|
|
|
|
|
|
|
|
#ifndef BTRFS_ACL_H
|
|
|
|
#define BTRFS_ACL_H
|
|
|
|
|
2024-01-27 07:53:06 +08:00
|
|
|
struct posix_acl;
|
|
|
|
struct inode;
|
|
|
|
struct btrfs_trans_handle;
|
|
|
|
|
2022-10-27 03:08:33 +08:00
|
|
|
#ifdef CONFIG_BTRFS_FS_POSIX_ACL
|
|
|
|
|
2024-01-27 07:53:06 +08:00
|
|
|
struct mnt_idmap;
|
|
|
|
struct dentry;
|
|
|
|
|
2022-10-27 03:08:33 +08:00
|
|
|
struct posix_acl *btrfs_get_acl(struct inode *inode, int type, bool rcu);
|
2023-01-13 19:49:20 +08:00
|
|
|
int btrfs_set_acl(struct mnt_idmap *idmap, struct dentry *dentry,
|
2022-10-27 03:08:33 +08:00
|
|
|
struct posix_acl *acl, int type);
|
|
|
|
int __btrfs_set_acl(struct btrfs_trans_handle *trans, struct inode *inode,
|
|
|
|
struct posix_acl *acl, int type);
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
2024-01-27 07:53:06 +08:00
|
|
|
#include <linux/errno.h>
|
|
|
|
|
|
|
|
struct btrfs_trans_handle;
|
|
|
|
|
2022-10-27 03:08:33 +08:00
|
|
|
#define btrfs_get_acl NULL
|
|
|
|
#define btrfs_set_acl NULL
|
|
|
|
static inline int __btrfs_set_acl(struct btrfs_trans_handle *trans,
|
|
|
|
struct inode *inode, struct posix_acl *acl,
|
|
|
|
int type)
|
|
|
|
{
|
|
|
|
return -EOPNOTSUPP;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|