fuse_i.h (6f84981772535e670e4e2df051a672af229b6694) | fuse_i.h (facd61053cff100973921d4d45d47cf53c747ec6) |
---|---|
1/* 2 FUSE: Filesystem in Userspace 3 Copyright (C) 2001-2008 Miklos Szeredi <miklos@szeredi.hu> 4 5 This program can be distributed under the terms of the GNU GPL. 6 See the file COPYING. 7*/ 8 --- 1250 unchanged lines hidden (view full) --- 1259 1260int fuse_setxattr(struct inode *inode, const char *name, const void *value, 1261 size_t size, int flags, unsigned int extra_flags); 1262ssize_t fuse_getxattr(struct inode *inode, const char *name, void *value, 1263 size_t size); 1264ssize_t fuse_listxattr(struct dentry *entry, char *list, size_t size); 1265int fuse_removexattr(struct inode *inode, const char *name); 1266extern const struct xattr_handler *fuse_xattr_handlers[]; | 1/* 2 FUSE: Filesystem in Userspace 3 Copyright (C) 2001-2008 Miklos Szeredi <miklos@szeredi.hu> 4 5 This program can be distributed under the terms of the GNU GPL. 6 See the file COPYING. 7*/ 8 --- 1250 unchanged lines hidden (view full) --- 1259 1260int fuse_setxattr(struct inode *inode, const char *name, const void *value, 1261 size_t size, int flags, unsigned int extra_flags); 1262ssize_t fuse_getxattr(struct inode *inode, const char *name, void *value, 1263 size_t size); 1264ssize_t fuse_listxattr(struct dentry *entry, char *list, size_t size); 1265int fuse_removexattr(struct inode *inode, const char *name); 1266extern const struct xattr_handler *fuse_xattr_handlers[]; |
1267extern const struct xattr_handler *fuse_acl_xattr_handlers[]; 1268extern const struct xattr_handler *fuse_no_acl_xattr_handlers[]; | |
1269 1270struct posix_acl; | 1267 1268struct posix_acl; |
1271struct posix_acl *fuse_get_acl(struct inode *inode, int type, bool rcu); | 1269struct posix_acl *fuse_get_inode_acl(struct inode *inode, int type, bool rcu); 1270struct posix_acl *fuse_get_acl(struct user_namespace *mnt_userns, 1271 struct dentry *dentry, int type); |
1272int fuse_set_acl(struct user_namespace *mnt_userns, struct dentry *dentry, 1273 struct posix_acl *acl, int type); 1274 1275/* readdir.c */ 1276int fuse_readdir(struct file *file, struct dir_context *ctx); 1277 1278/** 1279 * Return the number of bytes in an arguments list --- 43 unchanged lines hidden --- | 1272int fuse_set_acl(struct user_namespace *mnt_userns, struct dentry *dentry, 1273 struct posix_acl *acl, int type); 1274 1275/* readdir.c */ 1276int fuse_readdir(struct file *file, struct dir_context *ctx); 1277 1278/** 1279 * Return the number of bytes in an arguments list --- 43 unchanged lines hidden --- |