xref: /OK3568_Linux_fs/kernel/fs/xfs/xfs_aops.h (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1*4882a593Smuzhiyun // SPDX-License-Identifier: GPL-2.0
2*4882a593Smuzhiyun /*
3*4882a593Smuzhiyun  * Copyright (c) 2005-2006 Silicon Graphics, Inc.
4*4882a593Smuzhiyun  * All Rights Reserved.
5*4882a593Smuzhiyun  */
6*4882a593Smuzhiyun #ifndef __XFS_AOPS_H__
7*4882a593Smuzhiyun #define __XFS_AOPS_H__
8*4882a593Smuzhiyun 
9*4882a593Smuzhiyun extern const struct address_space_operations xfs_address_space_operations;
10*4882a593Smuzhiyun extern const struct address_space_operations xfs_dax_aops;
11*4882a593Smuzhiyun 
12*4882a593Smuzhiyun int	xfs_setfilesize(struct xfs_inode *ip, xfs_off_t offset, size_t size);
13*4882a593Smuzhiyun 
14*4882a593Smuzhiyun #endif /* __XFS_AOPS_H__ */
15