]> Pileus Git - ~andy/linux/blobdiff - fs/ext4/acl.c
fs: make posix_acl_chmod more useful
[~andy/linux] / fs / ext4 / acl.c
index 39a54a0e9fe4a9a6290f75b961cde9ccea06f669..2eebe02fdf09ebc87aa6427352f80ccf45964ed8 100644 (file)
@@ -320,7 +320,7 @@ ext4_acl_chmod(struct inode *inode)
        acl = ext4_get_acl(inode, ACL_TYPE_ACCESS);
        if (IS_ERR(acl) || !acl)
                return PTR_ERR(acl);
-       error = posix_acl_chmod(&acl, GFP_KERNEL, inode->i_mode);
+       error = __posix_acl_chmod(&acl, GFP_KERNEL, inode->i_mode);
        if (error)
                return error;
 retry: