2018-06-06 05:42:14 +03:00
// SPDX-License-Identifier: GPL-2.0
2005-09-05 02:18:12 +04:00
/*
2006-06-09 09:29:12 +04:00
* Copyright ( c ) 2005 - 2006 Silicon Graphics , Inc .
2005-11-02 06:58:39 +03:00
* All Rights Reserved .
2005-09-05 02:18:12 +04:00
*/
# ifndef __XFS_AOPS_H__
# define __XFS_AOPS_H__
2018-05-21 01:25:57 +03:00
extern struct bio_set xfs_ioend_bioset ;
2005-09-05 02:18:12 +04:00
2010-12-10 11:42:20 +03:00
/*
* Types of I / O for bmap clustering and I / O completion tracking .
2018-12-19 01:32:29 +03:00
*
* This enum is used in string mapping in xfs_trace . h ; please keep the
* TRACE_DEFINE_ENUMs for it up to date .
2010-12-10 11:42:20 +03:00
*/
enum {
2018-10-18 09:17:50 +03:00
XFS_IO_HOLE , /* covers region without any block allocation */
2012-05-23 00:56:21 +04:00
XFS_IO_DELALLOC , /* covers delalloc region */
XFS_IO_UNWRITTEN , /* covers allocated but uninitialized data */
XFS_IO_OVERWRITE , /* covers already allocated extent */
2016-10-03 19:11:34 +03:00
XFS_IO_COW , /* covers copy-on-write extent */
2010-12-10 11:42:20 +03:00
} ;
# define XFS_IO_TYPES \
2018-10-18 09:17:50 +03:00
{ XFS_IO_HOLE , " hole " } , \
{ XFS_IO_DELALLOC , " delalloc " } , \
{ XFS_IO_UNWRITTEN , " unwritten " } , \
{ XFS_IO_OVERWRITE , " overwrite " } , \
{ XFS_IO_COW , " CoW " }
2010-12-10 11:42:20 +03:00
2006-01-11 07:40:13 +03:00
/*
2016-04-06 01:34:30 +03:00
* Structure for buffered I / O completions .
2006-01-11 07:40:13 +03:00
*/
2016-04-06 01:34:30 +03:00
struct xfs_ioend {
2016-02-15 09:23:12 +03:00
struct list_head io_list ; /* next ioend in chain */
2006-01-11 07:40:13 +03:00
unsigned int io_type ; /* delalloc / unwritten */
2007-08-29 05:46:28 +04:00
struct inode * io_inode ; /* file being written to */
2005-09-05 02:18:12 +04:00
size_t io_size ; /* size of the extent */
xfs_off_t io_offset ; /* offset in the file */
struct work_struct io_work ; /* xfsdatad work queue */
2012-03-13 12:41:05 +04:00
struct xfs_trans * io_append_trans ; /* xact. for size update */
2016-04-06 01:11:25 +03:00
struct bio * io_bio ; /* bio being built */
2016-04-06 01:34:30 +03:00
struct bio io_inline_bio ; /* MUST BE LAST! */
} ;
2005-09-05 02:18:12 +04:00
2006-06-28 15:26:44 +04:00
extern const struct address_space_operations xfs_address_space_operations ;
2018-03-08 02:26:44 +03:00
extern const struct address_space_operations xfs_dax_aops ;
2015-06-04 02:18:53 +03:00
2016-09-19 04:26:41 +03:00
int xfs_setfilesize ( struct xfs_inode * ip , xfs_off_t offset , size_t size ) ;
2016-07-20 04:38:01 +03:00
2010-06-24 03:46:01 +04:00
extern void xfs_count_page_state ( struct page * , int * , int * ) ;
2016-02-27 02:19:52 +03:00
extern struct block_device * xfs_find_bdev_for_inode ( struct inode * ) ;
2017-08-25 01:12:50 +03:00
extern struct dax_device * xfs_find_daxdev_for_inode ( struct inode * ) ;
2009-12-15 02:14:59 +03:00
2006-06-09 09:29:12 +04:00
# endif /* __XFS_AOPS_H__ */