aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAl Viro <viro@zeniv.linux.org.uk>2016-03-18 13:25:43 -0400
committerAl Viro <viro@zeniv.linux.org.uk>2016-03-28 13:49:38 -0400
commit7dffc87f2eea9f80889d2eb87bfbe63e51b9709c (patch)
treeeeae6e9df5a974893693f3fb5364377fbf771d6a
parentLinux 4.6-rc1 (diff)
downloadlinux-dev-7dffc87f2eea9f80889d2eb87bfbe63e51b9709c.tar.xz
linux-dev-7dffc87f2eea9f80889d2eb87bfbe63e51b9709c.zip
reiserfs_cache_default_acl(): use get_acl()
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
-rw-r--r--fs/reiserfs/xattr_acl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/reiserfs/xattr_acl.c b/fs/reiserfs/xattr_acl.c
index 558a16beaacb..ec74bbedc873 100644
--- a/fs/reiserfs/xattr_acl.c
+++ b/fs/reiserfs/xattr_acl.c
@@ -370,7 +370,7 @@ int reiserfs_cache_default_acl(struct inode *inode)
if (IS_PRIVATE(inode))
return 0;
- acl = reiserfs_get_acl(inode, ACL_TYPE_DEFAULT);
+ acl = get_acl(inode, ACL_TYPE_DEFAULT);
if (acl && !IS_ERR(acl)) {
int size = reiserfs_acl_size(acl->a_count);