Lines Matching refs:value
37 char *value = NULL; in ceph_get_acl() local
54 value = kzalloc(size, GFP_NOFS); in ceph_get_acl()
55 if (!value) in ceph_get_acl()
57 size = __ceph_getxattr(inode, name, value, size); in ceph_get_acl()
62 kfree(value); in ceph_get_acl()
63 value = NULL; in ceph_get_acl()
68 acl = posix_acl_from_xattr(&init_user_ns, value, size); in ceph_get_acl()
77 kfree(value); in ceph_get_acl()
89 char *value = NULL; in ceph_set_acl() local
122 value = kmalloc(size, GFP_NOFS); in ceph_set_acl()
123 if (!value) { in ceph_set_acl()
128 ret = posix_acl_to_xattr(&init_user_ns, acl, value, size); in ceph_set_acl()
142 ret = __ceph_setxattr(inode, name, value, size, 0); in ceph_set_acl()
156 kfree(value); in ceph_set_acl()