Browse Source

reiserfs_cache_default_acl(): use get_acl()

Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Al Viro 9 years ago
parent
commit
7dffc87f2e
1 changed files with 1 additions and 1 deletions
  1. 1 1
      fs/reiserfs/xattr_acl.c

+ 1 - 1
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);