Lines Matching defs:name
20 static struct posix_acl *v9fs_fid_get_acl(struct p9_fid *fid, const char *name)
26 size = v9fs_fid_xattr_get(fid, name, NULL, 0);
36 size = v9fs_fid_xattr_get(fid, name, value, size);
47 static struct posix_acl *v9fs_acl_get(struct dentry *dentry, const char *name)
56 acl = v9fs_fid_get_acl(fid, name);
61 static struct posix_acl *__v9fs_get_acl(struct p9_fid *fid, const char *name)
66 acl = v9fs_fid_get_acl(fid, name);
251 char *name;
268 name = XATTR_NAME_POSIX_ACL_ACCESS;
271 name = XATTR_NAME_POSIX_ACL_DEFAULT;
276 retval = v9fs_fid_xattr_set(fid, name, buffer, size, 0);