X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=fs%2Fceph%2Facl.c;h=c53a1d2206225ca26f669642a22cfde767e45bc1;hb=4ee22162ae5fa34ac70e4ae06330395409921c5c;hp=c91b293267d748af2f35e4fdcfa67563337e15f9;hpb=61401a8724c2ce912b243ef95427a9b2e5a1ed50;p=platform%2Fkernel%2Flinux-rpi.git diff --git a/fs/ceph/acl.c b/fs/ceph/acl.c index c91b293..c53a1d2 100644 --- a/fs/ceph/acl.c +++ b/fs/ceph/acl.c @@ -140,7 +140,7 @@ int ceph_set_acl(struct mnt_idmap *idmap, struct dentry *dentry, newattrs.ia_ctime = current_time(inode); newattrs.ia_mode = new_mode; newattrs.ia_valid = ATTR_MODE | ATTR_CTIME; - ret = __ceph_setattr(inode, &newattrs); + ret = __ceph_setattr(inode, &newattrs, NULL); if (ret) goto out_free; } @@ -151,7 +151,7 @@ int ceph_set_acl(struct mnt_idmap *idmap, struct dentry *dentry, newattrs.ia_ctime = old_ctime; newattrs.ia_mode = old_mode; newattrs.ia_valid = ATTR_MODE | ATTR_CTIME; - __ceph_setattr(inode, &newattrs); + __ceph_setattr(inode, &newattrs, NULL); } goto out_free; }