Lines Matching refs:value
39 char *value = NULL; in ceph_get_acl() local
59 value = kzalloc(size, GFP_NOFS); in ceph_get_acl()
60 if (!value) in ceph_get_acl()
62 size = __ceph_getxattr(inode, name, value, size); in ceph_get_acl()
67 kfree(value); in ceph_get_acl()
68 value = NULL; in ceph_get_acl()
73 acl = posix_acl_from_xattr(&init_user_ns, value, size); in ceph_get_acl()
82 kfree(value); in ceph_get_acl()
95 char *value = NULL; in ceph_set_acl() local
130 value = kmalloc(size, GFP_NOFS); in ceph_set_acl()
131 if (!value) { in ceph_set_acl()
136 ret = posix_acl_to_xattr(&init_user_ns, acl, value, size); in ceph_set_acl()
150 ret = __ceph_setxattr(inode, name, value, size, 0); in ceph_set_acl()
164 kfree(value); in ceph_set_acl()