Christoph Hellwig | 65b3da3 | 2005-09-05 08:18:12 +1000 | [diff] [blame] | 1 | /* |
Nathan Scott | ad72387 | 2006-06-09 15:29:12 +1000 | [diff] [blame] | 2 | * Copyright (c) 2005-2006 Silicon Graphics, Inc. |
Nathan Scott | 7b71876 | 2005-11-02 14:58:39 +1100 | [diff] [blame] | 3 | * All Rights Reserved. |
Christoph Hellwig | 65b3da3 | 2005-09-05 08:18:12 +1000 | [diff] [blame] | 4 | * |
Nathan Scott | 7b71876 | 2005-11-02 14:58:39 +1100 | [diff] [blame] | 5 | * This program is free software; you can redistribute it and/or |
| 6 | * modify it under the terms of the GNU General Public License as |
Christoph Hellwig | 65b3da3 | 2005-09-05 08:18:12 +1000 | [diff] [blame] | 7 | * published by the Free Software Foundation. |
| 8 | * |
Nathan Scott | 7b71876 | 2005-11-02 14:58:39 +1100 | [diff] [blame] | 9 | * This program is distributed in the hope that it would be useful, |
| 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 12 | * GNU General Public License for more details. |
Christoph Hellwig | 65b3da3 | 2005-09-05 08:18:12 +1000 | [diff] [blame] | 13 | * |
Nathan Scott | 7b71876 | 2005-11-02 14:58:39 +1100 | [diff] [blame] | 14 | * You should have received a copy of the GNU General Public License |
| 15 | * along with this program; if not, write the Free Software Foundation, |
| 16 | * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
Christoph Hellwig | 65b3da3 | 2005-09-05 08:18:12 +1000 | [diff] [blame] | 17 | */ |
| 18 | #ifndef __XFS_AOPS_H__ |
| 19 | #define __XFS_AOPS_H__ |
| 20 | |
Christoph Hellwig | 65b3da3 | 2005-09-05 08:18:12 +1000 | [diff] [blame] | 21 | extern mempool_t *xfs_ioend_pool; |
| 22 | |
Christoph Hellwig | f6d6d4f | 2006-01-11 15:40:13 +1100 | [diff] [blame] | 23 | /* |
Christoph Hellwig | a206c81 | 2010-12-10 08:42:20 +0000 | [diff] [blame] | 24 | * Types of I/O for bmap clustering and I/O completion tracking. |
| 25 | */ |
| 26 | enum { |
Alain Renaud | 0d882a3 | 2012-05-22 15:56:21 -0500 | [diff] [blame] | 27 | XFS_IO_DELALLOC, /* covers delalloc region */ |
| 28 | XFS_IO_UNWRITTEN, /* covers allocated but uninitialized data */ |
| 29 | XFS_IO_OVERWRITE, /* covers already allocated extent */ |
Christoph Hellwig | a206c81 | 2010-12-10 08:42:20 +0000 | [diff] [blame] | 30 | }; |
| 31 | |
| 32 | #define XFS_IO_TYPES \ |
Alain Renaud | 0d882a3 | 2012-05-22 15:56:21 -0500 | [diff] [blame] | 33 | { XFS_IO_DELALLOC, "delalloc" }, \ |
| 34 | { XFS_IO_UNWRITTEN, "unwritten" }, \ |
| 35 | { XFS_IO_OVERWRITE, "overwrite" } |
Christoph Hellwig | a206c81 | 2010-12-10 08:42:20 +0000 | [diff] [blame] | 36 | |
| 37 | /* |
Christoph Hellwig | f6d6d4f | 2006-01-11 15:40:13 +1100 | [diff] [blame] | 38 | * xfs_ioend struct manages large extent writes for XFS. |
| 39 | * It can manage several multi-page bio's at once. |
| 40 | */ |
Christoph Hellwig | 65b3da3 | 2005-09-05 08:18:12 +1000 | [diff] [blame] | 41 | typedef struct xfs_ioend { |
Christoph Hellwig | f6d6d4f | 2006-01-11 15:40:13 +1100 | [diff] [blame] | 42 | struct xfs_ioend *io_list; /* next ioend in chain */ |
| 43 | unsigned int io_type; /* delalloc / unwritten */ |
Nathan Scott | 7d04a33 | 2006-06-09 14:58:38 +1000 | [diff] [blame] | 44 | int io_error; /* I/O error code */ |
Christoph Hellwig | 65b3da3 | 2005-09-05 08:18:12 +1000 | [diff] [blame] | 45 | atomic_t io_remaining; /* hold count */ |
Christoph Hellwig | b677c21 | 2007-08-29 11:46:28 +1000 | [diff] [blame] | 46 | struct inode *io_inode; /* file being written to */ |
Christoph Hellwig | c1a073b | 2005-09-05 08:23:35 +1000 | [diff] [blame] | 47 | struct buffer_head *io_buffer_head;/* buffer linked list head */ |
Christoph Hellwig | f6d6d4f | 2006-01-11 15:40:13 +1100 | [diff] [blame] | 48 | struct buffer_head *io_buffer_tail;/* buffer linked list tail */ |
Christoph Hellwig | 65b3da3 | 2005-09-05 08:18:12 +1000 | [diff] [blame] | 49 | size_t io_size; /* size of the extent */ |
| 50 | xfs_off_t io_offset; /* offset in the file */ |
| 51 | struct work_struct io_work; /* xfsdatad work queue */ |
Christoph Hellwig | 281627d | 2012-03-13 08:41:05 +0000 | [diff] [blame] | 52 | struct xfs_trans *io_append_trans;/* xact. for size update */ |
Christoph Hellwig | 65b3da3 | 2005-09-05 08:18:12 +1000 | [diff] [blame] | 53 | } xfs_ioend_t; |
| 54 | |
Christoph Hellwig | f5e54d6 | 2006-06-28 04:26:44 -0700 | [diff] [blame] | 55 | extern const struct address_space_operations xfs_address_space_operations; |
Dave Chinner | 6b698ed | 2015-06-04 09:18:53 +1000 | [diff] [blame] | 56 | |
| 57 | int xfs_get_blocks(struct inode *inode, sector_t offset, |
| 58 | struct buffer_head *map_bh, int create); |
| 59 | int xfs_get_blocks_direct(struct inode *inode, sector_t offset, |
| 60 | struct buffer_head *map_bh, int create); |
| 61 | void xfs_end_io_dax_write(struct buffer_head *bh, int uptodate); |
Christoph Hellwig | f6d6d4f | 2006-01-11 15:40:13 +1100 | [diff] [blame] | 62 | |
Christoph Hellwig | 20cb52e | 2010-06-24 09:46:01 +1000 | [diff] [blame] | 63 | extern void xfs_count_page_state(struct page *, int *, int *); |
Christoph Hellwig | 0b1b213 | 2009-12-14 23:14:59 +0000 | [diff] [blame] | 64 | |
Nathan Scott | ad72387 | 2006-06-09 15:29:12 +1000 | [diff] [blame] | 65 | #endif /* __XFS_AOPS_H__ */ |