Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0 |
| 2 | /* |
| 3 | * Copyright (c) 2005-2006 Silicon Graphics, Inc. |
| 4 | * All Rights Reserved. |
| 5 | */ |
| 6 | #ifndef __XFS_AOPS_H__ |
| 7 | #define __XFS_AOPS_H__ |
| 8 | |
| 9 | extern struct bio_set xfs_ioend_bioset; |
| 10 | |
| 11 | /* |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 12 | * Structure for buffered I/O completions. |
| 13 | */ |
| 14 | struct xfs_ioend { |
| 15 | struct list_head io_list; /* next ioend in chain */ |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame^] | 16 | int io_fork; /* inode fork written back */ |
| 17 | xfs_exntst_t io_state; /* extent state */ |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 18 | struct inode *io_inode; /* file being written to */ |
| 19 | size_t io_size; /* size of the extent */ |
| 20 | xfs_off_t io_offset; /* offset in the file */ |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 21 | struct xfs_trans *io_append_trans;/* xact. for size update */ |
| 22 | struct bio *io_bio; /* bio being built */ |
| 23 | struct bio io_inline_bio; /* MUST BE LAST! */ |
| 24 | }; |
| 25 | |
| 26 | extern const struct address_space_operations xfs_address_space_operations; |
| 27 | extern const struct address_space_operations xfs_dax_aops; |
| 28 | |
| 29 | int xfs_setfilesize(struct xfs_inode *ip, xfs_off_t offset, size_t size); |
| 30 | |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 31 | extern struct block_device *xfs_find_bdev_for_inode(struct inode *); |
| 32 | extern struct dax_device *xfs_find_daxdev_for_inode(struct inode *); |
| 33 | |
| 34 | #endif /* __XFS_AOPS_H__ */ |