Contributors: 12
| Author |
Tokens |
Token Proportion |
Commits |
Commit Proportion |
| Josef Bacik |
47 |
41.23% |
2 |
11.76% |
| Christoph Hellwig |
14 |
12.28% |
3 |
17.65% |
| Chris Mason |
11 |
9.65% |
2 |
11.76% |
| Josef Whiter |
11 |
9.65% |
1 |
5.88% |
| Al Viro |
7 |
6.14% |
1 |
5.88% |
| Omar Sandoval |
7 |
6.14% |
1 |
5.88% |
| Christian Brauner |
5 |
4.39% |
2 |
11.76% |
| Yan Zheng |
3 |
2.63% |
1 |
5.88% |
| Miklos Szeredi |
3 |
2.63% |
1 |
5.88% |
| Li Zefan |
3 |
2.63% |
1 |
5.88% |
| Linus Torvalds |
2 |
1.75% |
1 |
5.88% |
| David Sterba |
1 |
0.88% |
1 |
5.88% |
| Total |
114 |
|
17 |
|
/* SPDX-License-Identifier: GPL-2.0 */
#ifndef BTRFS_ACL_H
#define BTRFS_ACL_H
#ifdef CONFIG_BTRFS_FS_POSIX_ACL
struct posix_acl *btrfs_get_acl(struct inode *inode, int type, bool rcu);
int btrfs_set_acl(struct user_namespace *mnt_userns, struct dentry *dentry,
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
#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