diff options
Diffstat (limited to 'kernel/fs/ceph/acl.c')
-rw-r--r-- | kernel/fs/ceph/acl.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/kernel/fs/ceph/acl.c b/kernel/fs/ceph/acl.c index 8f84646f1..4d8caeb94 100644 --- a/kernel/fs/ceph/acl.c +++ b/kernel/fs/ceph/acl.c @@ -94,11 +94,9 @@ int ceph_set_acl(struct inode *inode, struct posix_acl *acl, int type) case ACL_TYPE_ACCESS: name = POSIX_ACL_XATTR_ACCESS; if (acl) { - ret = posix_acl_equiv_mode(acl, &new_mode); - if (ret < 0) + ret = posix_acl_update_mode(inode, &new_mode, &acl); + if (ret) goto out; - if (ret == 0) - acl = NULL; } break; case ACL_TYPE_DEFAULT: |