Contributors: 9
Author |
Tokens |
Token Proportion |
Commits |
Commit Proportion |
Christoph Hellwig |
100 |
68.49% |
6 |
37.50% |
Andreas Gruenbacher |
13 |
8.90% |
1 |
6.25% |
Markus Trippelsdorf |
10 |
6.85% |
1 |
6.25% |
Christian Brauner |
7 |
4.79% |
3 |
18.75% |
Yang Xu |
7 |
4.79% |
1 |
6.25% |
Miklos Szeredi |
3 |
2.05% |
1 |
6.25% |
Jan Kara |
3 |
2.05% |
1 |
6.25% |
David Chinner |
2 |
1.37% |
1 |
6.25% |
Stephen Lord |
1 |
0.68% |
1 |
6.25% |
Total |
146 |
|
16 |
|
// SPDX-License-Identifier: GPL-2.0
/*
* Copyright (c) 2001-2005 Silicon Graphics, Inc.
* All Rights Reserved.
*/
#ifndef __XFS_ACL_H__
#define __XFS_ACL_H__
struct inode;
struct posix_acl;
#ifdef CONFIG_XFS_POSIX_ACL
extern struct posix_acl *xfs_get_acl(struct inode *inode, int type, bool rcu);
extern int xfs_set_acl(struct mnt_idmap *idmap, struct dentry *dentry,
struct posix_acl *acl, int type);
extern int __xfs_set_acl(struct inode *inode, struct posix_acl *acl, int type);
void xfs_forget_acl(struct inode *inode, const char *name);
#else
#define xfs_get_acl NULL
#define xfs_set_acl NULL
static inline int __xfs_set_acl(struct inode *inode, struct posix_acl *acl,
int type)
{
return 0;
}
static inline void xfs_forget_acl(struct inode *inode, const char *name)
{
}
#endif /* CONFIG_XFS_POSIX_ACL */
#endif /* __XFS_ACL_H__ */