mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2025-04-12 21:40:09 +07:00
Btrfs: fix btrfs acl #ifdef checks
The btrfs acl code was #ifdefing for a define that didn't exist. This correctly matches it to the values used by the Kconfig file. Signed-off-by: Chris Mason <chris.mason@oracle.com>
This commit is contained in:
parent
690587d109
commit
0eda294dfc
@ -27,7 +27,7 @@
|
|||||||
#include "btrfs_inode.h"
|
#include "btrfs_inode.h"
|
||||||
#include "xattr.h"
|
#include "xattr.h"
|
||||||
|
|
||||||
#ifdef CONFIG_BTRFS_POSIX_ACL
|
#ifdef CONFIG_BTRFS_FS_POSIX_ACL
|
||||||
|
|
||||||
static struct posix_acl *btrfs_get_acl(struct inode *inode, int type)
|
static struct posix_acl *btrfs_get_acl(struct inode *inode, int type)
|
||||||
{
|
{
|
||||||
@ -313,7 +313,7 @@ struct xattr_handler btrfs_xattr_acl_access_handler = {
|
|||||||
.set = btrfs_xattr_acl_access_set,
|
.set = btrfs_xattr_acl_access_set,
|
||||||
};
|
};
|
||||||
|
|
||||||
#else /* CONFIG_BTRFS_POSIX_ACL */
|
#else /* CONFIG_BTRFS_FS_POSIX_ACL */
|
||||||
|
|
||||||
int btrfs_acl_chmod(struct inode *inode)
|
int btrfs_acl_chmod(struct inode *inode)
|
||||||
{
|
{
|
||||||
@ -325,4 +325,4 @@ int btrfs_init_acl(struct inode *inode, struct inode *dir)
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif /* CONFIG_BTRFS_POSIX_ACL */
|
#endif /* CONFIG_BTRFS_FS_POSIX_ACL */
|
||||||
|
@ -2374,7 +2374,7 @@ int btrfs_parse_options(struct btrfs_root *root, char *options);
|
|||||||
int btrfs_sync_fs(struct super_block *sb, int wait);
|
int btrfs_sync_fs(struct super_block *sb, int wait);
|
||||||
|
|
||||||
/* acl.c */
|
/* acl.c */
|
||||||
#ifdef CONFIG_BTRFS_POSIX_ACL
|
#ifdef CONFIG_BTRFS_FS_POSIX_ACL
|
||||||
int btrfs_check_acl(struct inode *inode, int mask);
|
int btrfs_check_acl(struct inode *inode, int mask);
|
||||||
#else
|
#else
|
||||||
#define btrfs_check_acl NULL
|
#define btrfs_check_acl NULL
|
||||||
|
@ -344,7 +344,7 @@ static int btrfs_fill_super(struct super_block *sb,
|
|||||||
sb->s_export_op = &btrfs_export_ops;
|
sb->s_export_op = &btrfs_export_ops;
|
||||||
sb->s_xattr = btrfs_xattr_handlers;
|
sb->s_xattr = btrfs_xattr_handlers;
|
||||||
sb->s_time_gran = 1;
|
sb->s_time_gran = 1;
|
||||||
#ifdef CONFIG_BTRFS_POSIX_ACL
|
#ifdef CONFIG_BTRFS_FS_POSIX_ACL
|
||||||
sb->s_flags |= MS_POSIXACL;
|
sb->s_flags |= MS_POSIXACL;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
@ -260,7 +260,7 @@ ssize_t btrfs_listxattr(struct dentry *dentry, char *buffer, size_t size)
|
|||||||
* attributes are handled directly.
|
* attributes are handled directly.
|
||||||
*/
|
*/
|
||||||
struct xattr_handler *btrfs_xattr_handlers[] = {
|
struct xattr_handler *btrfs_xattr_handlers[] = {
|
||||||
#ifdef CONFIG_BTRFS_POSIX_ACL
|
#ifdef CONFIG_BTRFS_FS_POSIX_ACL
|
||||||
&btrfs_xattr_acl_access_handler,
|
&btrfs_xattr_acl_access_handler,
|
||||||
&btrfs_xattr_acl_default_handler,
|
&btrfs_xattr_acl_default_handler,
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
Reference in New Issue
Block a user