2018-06-06 02:42:14 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
2005-04-16 22:20:36 +00:00
|
|
|
/*
|
2005-11-02 03:58:39 +00:00
|
|
|
* Copyright (c) 2001-2005 Silicon Graphics, Inc.
|
|
|
|
* All Rights Reserved.
|
2005-04-16 22:20:36 +00:00
|
|
|
*/
|
|
|
|
#ifndef __XFS_ACL_H__
|
|
|
|
#define __XFS_ACL_H__
|
|
|
|
|
2009-06-10 15:07:47 +00:00
|
|
|
struct inode;
|
|
|
|
struct posix_acl;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
#ifdef CONFIG_XFS_POSIX_ACL
|
2021-08-18 20:08:24 +00:00
|
|
|
extern struct posix_acl *xfs_get_acl(struct inode *inode, int type, bool rcu);
|
2021-01-21 13:19:43 +00:00
|
|
|
extern int xfs_set_acl(struct user_namespace *mnt_userns, struct inode *inode,
|
|
|
|
struct posix_acl *acl, int type);
|
2017-06-26 15:48:18 +00:00
|
|
|
extern int __xfs_set_acl(struct inode *inode, struct posix_acl *acl, int type);
|
2020-02-27 01:30:41 +00:00
|
|
|
void xfs_forget_acl(struct inode *inode, const char *name);
|
2005-04-16 22:20:36 +00:00
|
|
|
#else
|
2022-04-26 03:34:42 +00:00
|
|
|
#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)
|
2011-07-26 09:15:20 +00:00
|
|
|
{
|
2022-04-26 03:34:42 +00:00
|
|
|
return 0;
|
2011-07-26 09:15:20 +00:00
|
|
|
}
|
2020-02-27 01:30:41 +00:00
|
|
|
static inline void xfs_forget_acl(struct inode *inode, const char *name)
|
|
|
|
{
|
|
|
|
}
|
2009-06-10 15:07:47 +00:00
|
|
|
#endif /* CONFIG_XFS_POSIX_ACL */
|
2015-11-03 01:56:17 +00:00
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
#endif /* __XFS_ACL_H__ */
|