Dave Chinner | 0b61f8a | 2018-06-05 19:42:14 -0700 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0 |
Christoph Hellwig | 65b3da3 | 2005-09-05 08:18:12 +1000 | [diff] [blame] | 2 | /* |
Nathan Scott | ad72387 | 2006-06-09 15:29:12 +1000 | [diff] [blame] | 3 | * Copyright (c) 2005-2006 Silicon Graphics, Inc. |
Nathan Scott | 7b71876 | 2005-11-02 14:58:39 +1100 | [diff] [blame] | 4 | * All Rights Reserved. |
Christoph Hellwig | 65b3da3 | 2005-09-05 08:18:12 +1000 | [diff] [blame] | 5 | */ |
| 6 | #ifndef __XFS_AOPS_H__ |
| 7 | #define __XFS_AOPS_H__ |
| 8 | |
Christoph Hellwig | f5e54d6 | 2006-06-28 04:26:44 -0700 | [diff] [blame] | 9 | extern const struct address_space_operations xfs_address_space_operations; |
Dan Williams | 6e2608d | 2018-03-07 15:26:44 -0800 | [diff] [blame] | 10 | extern const struct address_space_operations xfs_dax_aops; |
Dave Chinner | 6b698ed | 2015-06-04 09:18:53 +1000 | [diff] [blame] | 11 | |
Christoph Hellwig | e372843 | 2016-09-19 11:26:41 +1000 | [diff] [blame] | 12 | int xfs_setfilesize(struct xfs_inode *ip, xfs_off_t offset, size_t size); |
Christoph Hellwig | fa8d972 | 2016-07-20 11:38:01 +1000 | [diff] [blame] | 13 | |
Nathan Scott | ad72387 | 2006-06-09 15:29:12 +1000 | [diff] [blame] | 14 | #endif /* __XFS_AOPS_H__ */ |