Lines Matching refs:value
37 char *value = NULL; in ceph_get_acl() local
57 value = kzalloc(size, GFP_NOFS); in ceph_get_acl()
58 if (!value) in ceph_get_acl()
60 size = __ceph_getxattr(inode, name, value, size); in ceph_get_acl()
65 kfree(value); in ceph_get_acl()
66 value = NULL; in ceph_get_acl()
71 acl = posix_acl_from_xattr(&init_user_ns, value, size); in ceph_get_acl()
80 kfree(value); in ceph_get_acl()
93 char *value = NULL; in ceph_set_acl() local
127 value = kmalloc(size, GFP_NOFS); in ceph_set_acl()
128 if (!value) { in ceph_set_acl()
133 ret = posix_acl_to_xattr(&init_user_ns, acl, value, size); in ceph_set_acl()
147 ret = __ceph_setxattr(inode, name, value, size, 0); in ceph_set_acl()
161 kfree(value); in ceph_set_acl()