0001
0002
0003
0004
0005
0006 #ifndef __XFS_IOPS_H__
0007 #define __XFS_IOPS_H__
0008
0009 struct xfs_inode;
0010
0011 extern const struct file_operations xfs_file_operations;
0012 extern const struct file_operations xfs_dir_file_operations;
0013
0014 extern ssize_t xfs_vn_listxattr(struct dentry *, char *data, size_t size);
0015
0016 extern void xfs_setattr_time(struct xfs_inode *ip, struct iattr *iattr);
0017 int xfs_vn_setattr_size(struct user_namespace *mnt_userns,
0018 struct dentry *dentry, struct iattr *vap);
0019
0020 int xfs_inode_init_security(struct inode *inode, struct inode *dir,
0021 const struct qstr *qstr);
0022
0023 #endif