Lines Matching defs:inode
14 struct posix_acl *fuse_get_acl(struct inode *inode, int type)
16 struct fuse_conn *fc = get_fuse_conn(inode);
22 if (fuse_is_bad(inode))
38 size = fuse_getxattr(inode, name, value, PAGE_SIZE);
53 int fuse_set_acl(struct inode *inode, struct posix_acl *acl, int type)
55 struct fuse_conn *fc = get_fuse_conn(inode);
59 if (fuse_is_bad(inode))
75 * permissions in the inode, if needed. fuse_setxattr
76 * invalidates the inode attributes, which will force
96 ret = fuse_setxattr(inode, name, value, size, 0);
99 ret = fuse_removexattr(inode, name);
101 forget_all_cached_acls(inode);
102 fuse_invalidate_attr(inode);