// 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); extern int xfs_set_acl(struct inode *inode, struct posix_acl *acl, int type); extern int __xfs_set_acl(struct inode *inode, struct posix_acl *acl, int type); #else
static inline struct posix_acl *xfs_get_acl(struct inode *inode, int type) { return NULL; }Contributors
| Person | Tokens | Prop | Commits | CommitProp |
| Markus Trippelsdorf | 14 | 70.00% | 1 | 33.33% |
| Christoph Hellwig | 6 | 30.00% | 2 | 66.67% |
| Total | 20 | 100.00% | 3 | 100.00% |
| Person | Tokens | Prop | Commits | CommitProp |
| Christoph Hellwig | 65 | 55.08% | 4 | 44.44% |
| Jan Kara | 18 | 15.25% | 1 | 11.11% |
| Andreas Gruenbacher | 18 | 15.25% | 1 | 11.11% |
| Markus Trippelsdorf | 14 | 11.86% | 1 | 11.11% |
| Dave Chinner | 2 | 1.69% | 1 | 11.11% |
| Stephen Lord | 1 | 0.85% | 1 | 11.11% |
| Total | 118 | 100.00% | 9 | 100.00% |