Lines Matching refs:fid
28 static struct posix_acl *__v9fs_get_acl(struct p9_fid *fid, char *name) in __v9fs_get_acl() argument
34 size = v9fs_fid_xattr_get(fid, name, NULL, 0); in __v9fs_get_acl()
39 size = v9fs_fid_xattr_get(fid, name, value, size); in __v9fs_get_acl()
56 int v9fs_get_acl(struct inode *inode, struct p9_fid *fid) in v9fs_get_acl() argument
70 dacl = __v9fs_get_acl(fid, POSIX_ACL_XATTR_DEFAULT); in v9fs_get_acl()
71 pacl = __v9fs_get_acl(fid, POSIX_ACL_XATTR_ACCESS); in v9fs_get_acl()
117 static int v9fs_set_acl(struct p9_fid *fid, int type, struct posix_acl *acl) in v9fs_set_acl() argument
144 retval = v9fs_fid_xattr_set(fid, name, buffer, size, 0); in v9fs_set_acl()
150 int v9fs_acl_chmod(struct inode *inode, struct p9_fid *fid) in v9fs_acl_chmod() argument
163 retval = v9fs_set_acl(fid, ACL_TYPE_ACCESS, acl); in v9fs_acl_chmod()
169 int v9fs_set_create_acl(struct inode *inode, struct p9_fid *fid, in v9fs_set_create_acl() argument
174 v9fs_set_acl(fid, ACL_TYPE_DEFAULT, dacl); in v9fs_set_create_acl()
175 v9fs_set_acl(fid, ACL_TYPE_ACCESS, acl); in v9fs_set_create_acl()