|
@@ -7351,12 +7351,12 @@ static const struct inode_operations btrfs_dir_inode_operations = {
|
|
|
.listxattr = btrfs_listxattr,
|
|
|
.removexattr = btrfs_removexattr,
|
|
|
.permission = btrfs_permission,
|
|
|
- .check_acl = btrfs_check_acl,
|
|
|
+ .get_acl = btrfs_get_acl,
|
|
|
};
|
|
|
static const struct inode_operations btrfs_dir_ro_inode_operations = {
|
|
|
.lookup = btrfs_lookup,
|
|
|
.permission = btrfs_permission,
|
|
|
- .check_acl = btrfs_check_acl,
|
|
|
+ .get_acl = btrfs_get_acl,
|
|
|
};
|
|
|
|
|
|
static const struct file_operations btrfs_dir_file_operations = {
|
|
@@ -7425,7 +7425,7 @@ static const struct inode_operations btrfs_file_inode_operations = {
|
|
|
.removexattr = btrfs_removexattr,
|
|
|
.permission = btrfs_permission,
|
|
|
.fiemap = btrfs_fiemap,
|
|
|
- .check_acl = btrfs_check_acl,
|
|
|
+ .get_acl = btrfs_get_acl,
|
|
|
};
|
|
|
static const struct inode_operations btrfs_special_inode_operations = {
|
|
|
.getattr = btrfs_getattr,
|
|
@@ -7435,7 +7435,7 @@ static const struct inode_operations btrfs_special_inode_operations = {
|
|
|
.getxattr = btrfs_getxattr,
|
|
|
.listxattr = btrfs_listxattr,
|
|
|
.removexattr = btrfs_removexattr,
|
|
|
- .check_acl = btrfs_check_acl,
|
|
|
+ .get_acl = btrfs_get_acl,
|
|
|
};
|
|
|
static const struct inode_operations btrfs_symlink_inode_operations = {
|
|
|
.readlink = generic_readlink,
|
|
@@ -7447,7 +7447,7 @@ static const struct inode_operations btrfs_symlink_inode_operations = {
|
|
|
.getxattr = btrfs_getxattr,
|
|
|
.listxattr = btrfs_listxattr,
|
|
|
.removexattr = btrfs_removexattr,
|
|
|
- .check_acl = btrfs_check_acl,
|
|
|
+ .get_acl = btrfs_get_acl,
|
|
|
};
|
|
|
|
|
|
const struct dentry_operations btrfs_dentry_operations = {
|