Commit 7dffc87f authored by Al Viro's avatar Al Viro

reiserfs_cache_default_acl(): use get_acl()

Signed-off-by: default avatarAl Viro <viro@zeniv.linux.org.uk>
parent f55532a0
......@@ -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);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment