162306a36Sopenharmony_ci// SPDX-License-Identifier: GPL-2.0 262306a36Sopenharmony_ci/* 362306a36Sopenharmony_ci * Copyright (c) 2000-2003,2005 Silicon Graphics, Inc. 462306a36Sopenharmony_ci * All Rights Reserved. 562306a36Sopenharmony_ci */ 662306a36Sopenharmony_ci#ifndef __XFS_IOPS_H__ 762306a36Sopenharmony_ci#define __XFS_IOPS_H__ 862306a36Sopenharmony_ci 962306a36Sopenharmony_cistruct xfs_inode; 1062306a36Sopenharmony_ci 1162306a36Sopenharmony_ciextern const struct file_operations xfs_file_operations; 1262306a36Sopenharmony_ciextern const struct file_operations xfs_dir_file_operations; 1362306a36Sopenharmony_ci 1462306a36Sopenharmony_ciextern ssize_t xfs_vn_listxattr(struct dentry *, char *data, size_t size); 1562306a36Sopenharmony_ci 1662306a36Sopenharmony_ciint xfs_vn_setattr_size(struct mnt_idmap *idmap, 1762306a36Sopenharmony_ci struct dentry *dentry, struct iattr *vap); 1862306a36Sopenharmony_ci 1962306a36Sopenharmony_ciint xfs_inode_init_security(struct inode *inode, struct inode *dir, 2062306a36Sopenharmony_ci const struct qstr *qstr); 2162306a36Sopenharmony_ci 2262306a36Sopenharmony_ci#endif /* __XFS_IOPS_H__ */ 23