2018-06-06 02:42:14 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
2005-09-04 22:18:12 +00:00
|
|
|
/*
|
2006-06-09 05:29:12 +00:00
|
|
|
* Copyright (c) 2005-2006 Silicon Graphics, Inc.
|
2005-11-02 03:58:39 +00:00
|
|
|
* All Rights Reserved.
|
2005-09-04 22:18:12 +00:00
|
|
|
*/
|
|
|
|
#ifndef __XFS_AOPS_H__
|
|
|
|
#define __XFS_AOPS_H__
|
|
|
|
|
2018-05-20 22:25:57 +00:00
|
|
|
extern struct bio_set xfs_ioend_bioset;
|
2005-09-04 22:18:12 +00:00
|
|
|
|
2006-01-11 04:40:13 +00:00
|
|
|
/*
|
2016-04-05 22:34:30 +00:00
|
|
|
* Structure for buffered I/O completions.
|
2006-01-11 04:40:13 +00:00
|
|
|
*/
|
2016-04-05 22:34:30 +00:00
|
|
|
struct xfs_ioend {
|
2016-02-15 06:23:12 +00:00
|
|
|
struct list_head io_list; /* next ioend in chain */
|
2019-02-15 16:02:46 +00:00
|
|
|
int io_fork; /* inode fork written back */
|
|
|
|
xfs_exntst_t io_state; /* extent state */
|
2007-08-29 01:46:28 +00:00
|
|
|
struct inode *io_inode; /* file being written to */
|
2005-09-04 22:18:12 +00:00
|
|
|
size_t io_size; /* size of the extent */
|
|
|
|
xfs_off_t io_offset; /* offset in the file */
|
2012-03-13 08:41:05 +00:00
|
|
|
struct xfs_trans *io_append_trans;/* xact. for size update */
|
2016-04-05 22:11:25 +00:00
|
|
|
struct bio *io_bio; /* bio being built */
|
2016-04-05 22:34:30 +00:00
|
|
|
struct bio io_inline_bio; /* MUST BE LAST! */
|
|
|
|
};
|
2005-09-04 22:18:12 +00:00
|
|
|
|
2006-06-28 11:26:44 +00:00
|
|
|
extern const struct address_space_operations xfs_address_space_operations;
|
2018-03-07 23:26:44 +00:00
|
|
|
extern const struct address_space_operations xfs_dax_aops;
|
2015-06-03 23:18:53 +00:00
|
|
|
|
2016-09-19 01:26:41 +00:00
|
|
|
int xfs_setfilesize(struct xfs_inode *ip, xfs_off_t offset, size_t size);
|
2016-07-20 01:38:01 +00:00
|
|
|
|
2010-06-23 23:46:01 +00:00
|
|
|
extern void xfs_count_page_state(struct page *, int *, int *);
|
2016-02-26 23:19:52 +00:00
|
|
|
extern struct block_device *xfs_find_bdev_for_inode(struct inode *);
|
2017-08-24 22:12:50 +00:00
|
|
|
extern struct dax_device *xfs_find_daxdev_for_inode(struct inode *);
|
2009-12-14 23:14:59 +00:00
|
|
|
|
2006-06-09 05:29:12 +00:00
|
|
|
#endif /* __XFS_AOPS_H__ */
|