Contributors: 15
Author |
Tokens |
Token Proportion |
Commits |
Commit Proportion |
Josef Bacik |
44 |
32.59% |
2 |
9.09% |
Josef Whiter |
19 |
14.07% |
1 |
4.55% |
Christoph Hellwig |
13 |
9.63% |
3 |
13.64% |
Chris Mason |
12 |
8.89% |
3 |
13.64% |
David Sterba |
11 |
8.15% |
2 |
9.09% |
Johannes Thumshirn |
9 |
6.67% |
1 |
4.55% |
Omar Sandoval |
7 |
5.19% |
1 |
4.55% |
Al Viro |
5 |
3.70% |
1 |
4.55% |
Miklos Szeredi |
3 |
2.22% |
1 |
4.55% |
Yan Zheng |
3 |
2.22% |
1 |
4.55% |
Li Zefan |
2 |
1.48% |
1 |
4.55% |
Linus Torvalds |
2 |
1.48% |
1 |
4.55% |
Ilya Dryomov |
2 |
1.48% |
2 |
9.09% |
Christian Brauner |
2 |
1.48% |
1 |
4.55% |
Sage Weil |
1 |
0.74% |
1 |
4.55% |
Total |
135 |
|
22 |
|
/* SPDX-License-Identifier: GPL-2.0 */
#ifndef BTRFS_ACL_H
#define BTRFS_ACL_H
struct posix_acl;
struct inode;
struct btrfs_trans_handle;
#ifdef CONFIG_BTRFS_FS_POSIX_ACL
struct mnt_idmap;
struct dentry;
struct posix_acl *btrfs_get_acl(struct inode *inode, int type, bool rcu);
int btrfs_set_acl(struct mnt_idmap *idmap, 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
#include <linux/errno.h>
struct btrfs_trans_handle;
#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