Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
Nathan Scott | 7b71876 | 2005-11-02 14:58:39 +1100 | [diff] [blame] | 2 | * Copyright (c) 2000-2005 Silicon Graphics, Inc. |
| 3 | * All Rights Reserved. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [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 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [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. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [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 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 18 | #include "xfs.h" |
Dave Chinner | 70a9883 | 2013-10-23 10:36:05 +1100 | [diff] [blame] | 19 | #include "xfs_shared.h" |
Dave Chinner | 239880e | 2013-10-23 10:50:10 +1100 | [diff] [blame] | 20 | #include "xfs_format.h" |
| 21 | #include "xfs_log_format.h" |
| 22 | #include "xfs_trans_resv.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 23 | #include "xfs_mount.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | #include "xfs_inode.h" |
Dave Chinner | 239880e | 2013-10-23 10:50:10 +1100 | [diff] [blame] | 25 | #include "xfs_trans.h" |
Christoph Hellwig | 281627d | 2012-03-13 08:41:05 +0000 | [diff] [blame] | 26 | #include "xfs_inode_item.h" |
Nathan Scott | a844f45 | 2005-11-02 14:38:42 +1100 | [diff] [blame] | 27 | #include "xfs_alloc.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | #include "xfs_error.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | #include "xfs_iomap.h" |
Christoph Hellwig | 0b1b213 | 2009-12-14 23:14:59 +0000 | [diff] [blame] | 30 | #include "xfs_trace.h" |
Dave Chinner | 3ed3a43 | 2010-03-05 02:00:42 +0000 | [diff] [blame] | 31 | #include "xfs_bmap.h" |
Dave Chinner | 6898811 | 2013-08-12 20:49:42 +1000 | [diff] [blame] | 32 | #include "xfs_bmap_util.h" |
Dave Chinner | a4fbe6a | 2013-10-23 10:51:50 +1100 | [diff] [blame] | 33 | #include "xfs_bmap_btree.h" |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 34 | #include <linux/gfp.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 | #include <linux/mpage.h> |
Christoph Hellwig | 10ce444 | 2006-01-11 20:48:14 +1100 | [diff] [blame] | 36 | #include <linux/pagevec.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 | #include <linux/writeback.h> |
| 38 | |
Christoph Hellwig | 273dda7 | 2016-02-08 14:40:51 +1100 | [diff] [blame] | 39 | /* flags for direct write completions */ |
| 40 | #define XFS_DIO_FLAG_UNWRITTEN (1 << 0) |
| 41 | #define XFS_DIO_FLAG_APPEND (1 << 1) |
| 42 | |
Dave Chinner | fbcc025 | 2016-02-15 17:21:19 +1100 | [diff] [blame] | 43 | /* |
| 44 | * structure owned by writepages passed to individual writepage calls |
| 45 | */ |
| 46 | struct xfs_writepage_ctx { |
| 47 | struct xfs_bmbt_irec imap; |
| 48 | bool imap_valid; |
| 49 | unsigned int io_type; |
Dave Chinner | fbcc025 | 2016-02-15 17:21:19 +1100 | [diff] [blame] | 50 | struct xfs_ioend *ioend; |
| 51 | sector_t last_block; |
| 52 | }; |
| 53 | |
Christoph Hellwig | 0b1b213 | 2009-12-14 23:14:59 +0000 | [diff] [blame] | 54 | void |
Nathan Scott | f51623b | 2006-03-14 13:26:27 +1100 | [diff] [blame] | 55 | xfs_count_page_state( |
| 56 | struct page *page, |
| 57 | int *delalloc, |
Nathan Scott | f51623b | 2006-03-14 13:26:27 +1100 | [diff] [blame] | 58 | int *unwritten) |
| 59 | { |
| 60 | struct buffer_head *bh, *head; |
| 61 | |
Christoph Hellwig | 20cb52e | 2010-06-24 09:46:01 +1000 | [diff] [blame] | 62 | *delalloc = *unwritten = 0; |
Nathan Scott | f51623b | 2006-03-14 13:26:27 +1100 | [diff] [blame] | 63 | |
| 64 | bh = head = page_buffers(page); |
| 65 | do { |
Christoph Hellwig | 20cb52e | 2010-06-24 09:46:01 +1000 | [diff] [blame] | 66 | if (buffer_unwritten(bh)) |
Nathan Scott | f51623b | 2006-03-14 13:26:27 +1100 | [diff] [blame] | 67 | (*unwritten) = 1; |
| 68 | else if (buffer_delay(bh)) |
| 69 | (*delalloc) = 1; |
| 70 | } while ((bh = bh->b_this_page) != head); |
| 71 | } |
| 72 | |
Ross Zwisler | 20a90f5 | 2016-02-26 15:19:52 -0800 | [diff] [blame] | 73 | struct block_device * |
Christoph Hellwig | 6214ed4 | 2007-09-14 15:23:17 +1000 | [diff] [blame] | 74 | xfs_find_bdev_for_inode( |
Christoph Hellwig | 046f168 | 2010-04-28 12:28:52 +0000 | [diff] [blame] | 75 | struct inode *inode) |
Christoph Hellwig | 6214ed4 | 2007-09-14 15:23:17 +1000 | [diff] [blame] | 76 | { |
Christoph Hellwig | 046f168 | 2010-04-28 12:28:52 +0000 | [diff] [blame] | 77 | struct xfs_inode *ip = XFS_I(inode); |
Christoph Hellwig | 6214ed4 | 2007-09-14 15:23:17 +1000 | [diff] [blame] | 78 | struct xfs_mount *mp = ip->i_mount; |
| 79 | |
Eric Sandeen | 71ddabb | 2007-11-23 16:29:42 +1100 | [diff] [blame] | 80 | if (XFS_IS_REALTIME_INODE(ip)) |
Christoph Hellwig | 6214ed4 | 2007-09-14 15:23:17 +1000 | [diff] [blame] | 81 | return mp->m_rtdev_targp->bt_bdev; |
| 82 | else |
| 83 | return mp->m_ddev_targp->bt_bdev; |
| 84 | } |
| 85 | |
Christoph Hellwig | 0829c36 | 2005-09-02 16:58:49 +1000 | [diff] [blame] | 86 | /* |
Dave Chinner | 37992c1 | 2016-04-06 08:12:28 +1000 | [diff] [blame] | 87 | * We're now finished for good with this page. Update the page state via the |
| 88 | * associated buffer_heads, paying attention to the start and end offsets that |
| 89 | * we need to process on the page. |
Dave Chinner | 28b783e | 2016-07-22 09:56:38 +1000 | [diff] [blame] | 90 | * |
| 91 | * Landmine Warning: bh->b_end_io() will call end_page_writeback() on the last |
| 92 | * buffer in the IO. Once it does this, it is unsafe to access the bufferhead or |
| 93 | * the page at all, as we may be racing with memory reclaim and it can free both |
| 94 | * the bufferhead chain and the page as it will see the page as clean and |
| 95 | * unused. |
Dave Chinner | 37992c1 | 2016-04-06 08:12:28 +1000 | [diff] [blame] | 96 | */ |
| 97 | static void |
| 98 | xfs_finish_page_writeback( |
| 99 | struct inode *inode, |
| 100 | struct bio_vec *bvec, |
| 101 | int error) |
| 102 | { |
Dave Chinner | 37992c1 | 2016-04-06 08:12:28 +1000 | [diff] [blame] | 103 | unsigned int end = bvec->bv_offset + bvec->bv_len - 1; |
Dave Chinner | 28b783e | 2016-07-22 09:56:38 +1000 | [diff] [blame] | 104 | struct buffer_head *head, *bh, *next; |
Dave Chinner | 37992c1 | 2016-04-06 08:12:28 +1000 | [diff] [blame] | 105 | unsigned int off = 0; |
Dave Chinner | 28b783e | 2016-07-22 09:56:38 +1000 | [diff] [blame] | 106 | unsigned int bsize; |
Dave Chinner | 37992c1 | 2016-04-06 08:12:28 +1000 | [diff] [blame] | 107 | |
| 108 | ASSERT(bvec->bv_offset < PAGE_SIZE); |
Christoph Hellwig | 690a787 | 2016-05-20 10:29:15 +1000 | [diff] [blame] | 109 | ASSERT((bvec->bv_offset & ((1 << inode->i_blkbits) - 1)) == 0); |
Dave Chinner | 37992c1 | 2016-04-06 08:12:28 +1000 | [diff] [blame] | 110 | ASSERT(end < PAGE_SIZE); |
Christoph Hellwig | 690a787 | 2016-05-20 10:29:15 +1000 | [diff] [blame] | 111 | ASSERT((bvec->bv_len & ((1 << inode->i_blkbits) - 1)) == 0); |
Dave Chinner | 37992c1 | 2016-04-06 08:12:28 +1000 | [diff] [blame] | 112 | |
| 113 | bh = head = page_buffers(bvec->bv_page); |
| 114 | |
Dave Chinner | 28b783e | 2016-07-22 09:56:38 +1000 | [diff] [blame] | 115 | bsize = bh->b_size; |
Dave Chinner | 37992c1 | 2016-04-06 08:12:28 +1000 | [diff] [blame] | 116 | do { |
Dave Chinner | 28b783e | 2016-07-22 09:56:38 +1000 | [diff] [blame] | 117 | next = bh->b_this_page; |
Dave Chinner | 37992c1 | 2016-04-06 08:12:28 +1000 | [diff] [blame] | 118 | if (off < bvec->bv_offset) |
| 119 | goto next_bh; |
| 120 | if (off > end) |
| 121 | break; |
| 122 | bh->b_end_io(bh, !error); |
| 123 | next_bh: |
Dave Chinner | 28b783e | 2016-07-22 09:56:38 +1000 | [diff] [blame] | 124 | off += bsize; |
| 125 | } while ((bh = next) != head); |
Dave Chinner | 37992c1 | 2016-04-06 08:12:28 +1000 | [diff] [blame] | 126 | } |
| 127 | |
| 128 | /* |
| 129 | * We're now finished for good with this ioend structure. Update the page |
| 130 | * state, release holds on bios, and finally free up memory. Do not use the |
| 131 | * ioend after this. |
Christoph Hellwig | f6d6d4f | 2006-01-11 15:40:13 +1100 | [diff] [blame] | 132 | */ |
Christoph Hellwig | 0829c36 | 2005-09-02 16:58:49 +1000 | [diff] [blame] | 133 | STATIC void |
| 134 | xfs_destroy_ioend( |
Christoph Hellwig | 0e51a8e | 2016-04-06 08:34:30 +1000 | [diff] [blame] | 135 | struct xfs_ioend *ioend, |
| 136 | int error) |
Christoph Hellwig | 0829c36 | 2005-09-02 16:58:49 +1000 | [diff] [blame] | 137 | { |
Dave Chinner | 37992c1 | 2016-04-06 08:12:28 +1000 | [diff] [blame] | 138 | struct inode *inode = ioend->io_inode; |
Christoph Hellwig | 0e51a8e | 2016-04-06 08:34:30 +1000 | [diff] [blame] | 139 | struct bio *last = ioend->io_bio; |
Dave Chinner | 37992c1 | 2016-04-06 08:12:28 +1000 | [diff] [blame] | 140 | struct bio *bio, *next; |
Christoph Hellwig | f6d6d4f | 2006-01-11 15:40:13 +1100 | [diff] [blame] | 141 | |
Christoph Hellwig | 0e51a8e | 2016-04-06 08:34:30 +1000 | [diff] [blame] | 142 | for (bio = &ioend->io_inline_bio; bio; bio = next) { |
Dave Chinner | 37992c1 | 2016-04-06 08:12:28 +1000 | [diff] [blame] | 143 | struct bio_vec *bvec; |
| 144 | int i; |
| 145 | |
Christoph Hellwig | 0e51a8e | 2016-04-06 08:34:30 +1000 | [diff] [blame] | 146 | /* |
| 147 | * For the last bio, bi_private points to the ioend, so we |
| 148 | * need to explicitly end the iteration here. |
| 149 | */ |
| 150 | if (bio == last) |
| 151 | next = NULL; |
| 152 | else |
| 153 | next = bio->bi_private; |
Dave Chinner | 37992c1 | 2016-04-06 08:12:28 +1000 | [diff] [blame] | 154 | |
| 155 | /* walk each page on bio, ending page IO on them */ |
| 156 | bio_for_each_segment_all(bvec, bio, i) |
| 157 | xfs_finish_page_writeback(inode, bvec, error); |
| 158 | |
| 159 | bio_put(bio); |
Christoph Hellwig | f6d6d4f | 2006-01-11 15:40:13 +1100 | [diff] [blame] | 160 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 161 | } |
| 162 | |
| 163 | /* |
Christoph Hellwig | fc0063c | 2011-08-23 08:28:11 +0000 | [diff] [blame] | 164 | * Fast and loose check if this write could update the on-disk inode size. |
| 165 | */ |
| 166 | static inline bool xfs_ioend_is_append(struct xfs_ioend *ioend) |
| 167 | { |
| 168 | return ioend->io_offset + ioend->io_size > |
| 169 | XFS_I(ioend->io_inode)->i_d.di_size; |
| 170 | } |
| 171 | |
Christoph Hellwig | 281627d | 2012-03-13 08:41:05 +0000 | [diff] [blame] | 172 | STATIC int |
| 173 | xfs_setfilesize_trans_alloc( |
| 174 | struct xfs_ioend *ioend) |
| 175 | { |
| 176 | struct xfs_mount *mp = XFS_I(ioend->io_inode)->i_mount; |
| 177 | struct xfs_trans *tp; |
| 178 | int error; |
| 179 | |
Christoph Hellwig | 253f491 | 2016-04-06 09:19:55 +1000 | [diff] [blame] | 180 | error = xfs_trans_alloc(mp, &M_RES(mp)->tr_fsyncts, 0, 0, 0, &tp); |
| 181 | if (error) |
Christoph Hellwig | 281627d | 2012-03-13 08:41:05 +0000 | [diff] [blame] | 182 | return error; |
Christoph Hellwig | 281627d | 2012-03-13 08:41:05 +0000 | [diff] [blame] | 183 | |
| 184 | ioend->io_append_trans = tp; |
| 185 | |
| 186 | /* |
Dave Chinner | 437a255 | 2012-11-28 13:01:00 +1100 | [diff] [blame] | 187 | * We may pass freeze protection with a transaction. So tell lockdep |
Jan Kara | d9457dc | 2012-06-12 16:20:39 +0200 | [diff] [blame] | 188 | * we released it. |
| 189 | */ |
Oleg Nesterov | bee9182 | 2015-07-19 23:48:20 +0200 | [diff] [blame] | 190 | __sb_writers_release(ioend->io_inode->i_sb, SB_FREEZE_FS); |
Jan Kara | d9457dc | 2012-06-12 16:20:39 +0200 | [diff] [blame] | 191 | /* |
Christoph Hellwig | 281627d | 2012-03-13 08:41:05 +0000 | [diff] [blame] | 192 | * We hand off the transaction to the completion thread now, so |
| 193 | * clear the flag here. |
| 194 | */ |
| 195 | current_restore_flags_nested(&tp->t_pflags, PF_FSTRANS); |
| 196 | return 0; |
| 197 | } |
| 198 | |
Christoph Hellwig | fc0063c | 2011-08-23 08:28:11 +0000 | [diff] [blame] | 199 | /* |
Christoph Hellwig | 2813d68 | 2011-12-18 20:00:12 +0000 | [diff] [blame] | 200 | * Update on-disk file size now that data has been written to disk. |
Lachlan McIlroy | ba87ea6 | 2007-05-08 13:49:46 +1000 | [diff] [blame] | 201 | */ |
Christoph Hellwig | 281627d | 2012-03-13 08:41:05 +0000 | [diff] [blame] | 202 | STATIC int |
Lachlan McIlroy | ba87ea6 | 2007-05-08 13:49:46 +1000 | [diff] [blame] | 203 | xfs_setfilesize( |
Christoph Hellwig | 2ba6623 | 2015-02-02 10:02:09 +1100 | [diff] [blame] | 204 | struct xfs_inode *ip, |
| 205 | struct xfs_trans *tp, |
| 206 | xfs_off_t offset, |
| 207 | size_t size) |
Lachlan McIlroy | ba87ea6 | 2007-05-08 13:49:46 +1000 | [diff] [blame] | 208 | { |
Lachlan McIlroy | ba87ea6 | 2007-05-08 13:49:46 +1000 | [diff] [blame] | 209 | xfs_fsize_t isize; |
Lachlan McIlroy | ba87ea6 | 2007-05-08 13:49:46 +1000 | [diff] [blame] | 210 | |
Christoph Hellwig | aa6bf01 | 2012-02-29 09:53:48 +0000 | [diff] [blame] | 211 | xfs_ilock(ip, XFS_ILOCK_EXCL); |
Christoph Hellwig | 2ba6623 | 2015-02-02 10:02:09 +1100 | [diff] [blame] | 212 | isize = xfs_new_eof(ip, offset + size); |
Christoph Hellwig | 281627d | 2012-03-13 08:41:05 +0000 | [diff] [blame] | 213 | if (!isize) { |
| 214 | xfs_iunlock(ip, XFS_ILOCK_EXCL); |
Christoph Hellwig | 4906e21 | 2015-06-04 13:47:56 +1000 | [diff] [blame] | 215 | xfs_trans_cancel(tp); |
Christoph Hellwig | 281627d | 2012-03-13 08:41:05 +0000 | [diff] [blame] | 216 | return 0; |
Lachlan McIlroy | ba87ea6 | 2007-05-08 13:49:46 +1000 | [diff] [blame] | 217 | } |
| 218 | |
Christoph Hellwig | 2ba6623 | 2015-02-02 10:02:09 +1100 | [diff] [blame] | 219 | trace_xfs_setfilesize(ip, offset, size); |
Christoph Hellwig | 281627d | 2012-03-13 08:41:05 +0000 | [diff] [blame] | 220 | |
| 221 | ip->i_d.di_size = isize; |
| 222 | xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL); |
| 223 | xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE); |
| 224 | |
Christoph Hellwig | 7039331 | 2015-06-04 13:48:08 +1000 | [diff] [blame] | 225 | return xfs_trans_commit(tp); |
Christoph Hellwig | 0829c36 | 2005-09-02 16:58:49 +1000 | [diff] [blame] | 226 | } |
| 227 | |
Christoph Hellwig | 2ba6623 | 2015-02-02 10:02:09 +1100 | [diff] [blame] | 228 | STATIC int |
| 229 | xfs_setfilesize_ioend( |
Christoph Hellwig | 0e51a8e | 2016-04-06 08:34:30 +1000 | [diff] [blame] | 230 | struct xfs_ioend *ioend, |
| 231 | int error) |
Christoph Hellwig | 2ba6623 | 2015-02-02 10:02:09 +1100 | [diff] [blame] | 232 | { |
| 233 | struct xfs_inode *ip = XFS_I(ioend->io_inode); |
| 234 | struct xfs_trans *tp = ioend->io_append_trans; |
| 235 | |
| 236 | /* |
| 237 | * The transaction may have been allocated in the I/O submission thread, |
| 238 | * thus we need to mark ourselves as being in a transaction manually. |
| 239 | * Similarly for freeze protection. |
| 240 | */ |
| 241 | current_set_flags_nested(&tp->t_pflags, PF_FSTRANS); |
Oleg Nesterov | bee9182 | 2015-07-19 23:48:20 +0200 | [diff] [blame] | 242 | __sb_writers_acquired(VFS_I(ip)->i_sb, SB_FREEZE_FS); |
Christoph Hellwig | 2ba6623 | 2015-02-02 10:02:09 +1100 | [diff] [blame] | 243 | |
Zhaohongjiang | 5cb13dc | 2015-10-12 15:28:39 +1100 | [diff] [blame] | 244 | /* we abort the update if there was an IO error */ |
Christoph Hellwig | 0e51a8e | 2016-04-06 08:34:30 +1000 | [diff] [blame] | 245 | if (error) { |
Zhaohongjiang | 5cb13dc | 2015-10-12 15:28:39 +1100 | [diff] [blame] | 246 | xfs_trans_cancel(tp); |
Christoph Hellwig | 0e51a8e | 2016-04-06 08:34:30 +1000 | [diff] [blame] | 247 | return error; |
Zhaohongjiang | 5cb13dc | 2015-10-12 15:28:39 +1100 | [diff] [blame] | 248 | } |
| 249 | |
Christoph Hellwig | 2ba6623 | 2015-02-02 10:02:09 +1100 | [diff] [blame] | 250 | return xfs_setfilesize(ip, tp, ioend->io_offset, ioend->io_size); |
| 251 | } |
| 252 | |
Christoph Hellwig | 0829c36 | 2005-09-02 16:58:49 +1000 | [diff] [blame] | 253 | /* |
Dave Chinner | 77d7a0c | 2010-02-17 05:36:29 +0000 | [diff] [blame] | 254 | * IO write completion. |
| 255 | */ |
| 256 | STATIC void |
| 257 | xfs_end_io( |
| 258 | struct work_struct *work) |
| 259 | { |
Christoph Hellwig | 0e51a8e | 2016-04-06 08:34:30 +1000 | [diff] [blame] | 260 | struct xfs_ioend *ioend = |
| 261 | container_of(work, struct xfs_ioend, io_work); |
| 262 | struct xfs_inode *ip = XFS_I(ioend->io_inode); |
| 263 | int error = ioend->io_bio->bi_error; |
Dave Chinner | 77d7a0c | 2010-02-17 05:36:29 +0000 | [diff] [blame] | 264 | |
Brian Foster | af055e3 | 2016-02-08 15:00:02 +1100 | [diff] [blame] | 265 | /* |
| 266 | * Set an error if the mount has shut down and proceed with end I/O |
| 267 | * processing so it can perform whatever cleanups are necessary. |
| 268 | */ |
| 269 | if (XFS_FORCED_SHUTDOWN(ip->i_mount)) |
Christoph Hellwig | 0e51a8e | 2016-04-06 08:34:30 +1000 | [diff] [blame] | 270 | error = -EIO; |
Christoph Hellwig | 04f658e | 2011-08-24 05:59:25 +0000 | [diff] [blame] | 271 | |
Dave Chinner | 77d7a0c | 2010-02-17 05:36:29 +0000 | [diff] [blame] | 272 | /* |
| 273 | * For unwritten extents we need to issue transactions to convert a |
| 274 | * range to normal written extens after the data I/O has finished. |
Zhaohongjiang | 5cb13dc | 2015-10-12 15:28:39 +1100 | [diff] [blame] | 275 | * Detecting and handling completion IO errors is done individually |
| 276 | * for each case as different cleanup operations need to be performed |
| 277 | * on error. |
Dave Chinner | 77d7a0c | 2010-02-17 05:36:29 +0000 | [diff] [blame] | 278 | */ |
Alain Renaud | 0d882a3 | 2012-05-22 15:56:21 -0500 | [diff] [blame] | 279 | if (ioend->io_type == XFS_IO_UNWRITTEN) { |
Christoph Hellwig | 0e51a8e | 2016-04-06 08:34:30 +1000 | [diff] [blame] | 280 | if (error) |
Zhaohongjiang | 5cb13dc | 2015-10-12 15:28:39 +1100 | [diff] [blame] | 281 | goto done; |
Dave Chinner | 77d7a0c | 2010-02-17 05:36:29 +0000 | [diff] [blame] | 282 | error = xfs_iomap_write_unwritten(ip, ioend->io_offset, |
Dave Chinner | 437a255 | 2012-11-28 13:01:00 +1100 | [diff] [blame] | 283 | ioend->io_size); |
Christoph Hellwig | 281627d | 2012-03-13 08:41:05 +0000 | [diff] [blame] | 284 | } else if (ioend->io_append_trans) { |
Christoph Hellwig | 0e51a8e | 2016-04-06 08:34:30 +1000 | [diff] [blame] | 285 | error = xfs_setfilesize_ioend(ioend, error); |
Christoph Hellwig | 84803fb | 2012-02-29 09:53:50 +0000 | [diff] [blame] | 286 | } else { |
Christoph Hellwig | 281627d | 2012-03-13 08:41:05 +0000 | [diff] [blame] | 287 | ASSERT(!xfs_ioend_is_append(ioend)); |
Dave Chinner | 77d7a0c | 2010-02-17 05:36:29 +0000 | [diff] [blame] | 288 | } |
| 289 | |
Christoph Hellwig | 04f658e | 2011-08-24 05:59:25 +0000 | [diff] [blame] | 290 | done: |
Christoph Hellwig | 0e51a8e | 2016-04-06 08:34:30 +1000 | [diff] [blame] | 291 | xfs_destroy_ioend(ioend, error); |
Dave Chinner | 77d7a0c | 2010-02-17 05:36:29 +0000 | [diff] [blame] | 292 | } |
| 293 | |
Christoph Hellwig | 0e51a8e | 2016-04-06 08:34:30 +1000 | [diff] [blame] | 294 | STATIC void |
| 295 | xfs_end_bio( |
| 296 | struct bio *bio) |
Christoph Hellwig | 0829c36 | 2005-09-02 16:58:49 +1000 | [diff] [blame] | 297 | { |
Christoph Hellwig | 0e51a8e | 2016-04-06 08:34:30 +1000 | [diff] [blame] | 298 | struct xfs_ioend *ioend = bio->bi_private; |
| 299 | struct xfs_mount *mp = XFS_I(ioend->io_inode)->i_mount; |
Christoph Hellwig | 0829c36 | 2005-09-02 16:58:49 +1000 | [diff] [blame] | 300 | |
Christoph Hellwig | 0e51a8e | 2016-04-06 08:34:30 +1000 | [diff] [blame] | 301 | if (ioend->io_type == XFS_IO_UNWRITTEN) |
| 302 | queue_work(mp->m_unwritten_workqueue, &ioend->io_work); |
| 303 | else if (ioend->io_append_trans) |
| 304 | queue_work(mp->m_data_workqueue, &ioend->io_work); |
| 305 | else |
| 306 | xfs_destroy_ioend(ioend, bio->bi_error); |
Christoph Hellwig | 0829c36 | 2005-09-02 16:58:49 +1000 | [diff] [blame] | 307 | } |
| 308 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 309 | STATIC int |
| 310 | xfs_map_blocks( |
| 311 | struct inode *inode, |
| 312 | loff_t offset, |
Christoph Hellwig | 207d041 | 2010-04-28 12:28:56 +0000 | [diff] [blame] | 313 | struct xfs_bmbt_irec *imap, |
Dave Chinner | 988ef92 | 2016-02-15 17:20:50 +1100 | [diff] [blame] | 314 | int type) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 315 | { |
Christoph Hellwig | a206c81 | 2010-12-10 08:42:20 +0000 | [diff] [blame] | 316 | struct xfs_inode *ip = XFS_I(inode); |
| 317 | struct xfs_mount *mp = ip->i_mount; |
Christoph Hellwig | ed1e7b7 | 2010-12-10 08:42:22 +0000 | [diff] [blame] | 318 | ssize_t count = 1 << inode->i_blkbits; |
Christoph Hellwig | a206c81 | 2010-12-10 08:42:20 +0000 | [diff] [blame] | 319 | xfs_fileoff_t offset_fsb, end_fsb; |
| 320 | int error = 0; |
Christoph Hellwig | a206c81 | 2010-12-10 08:42:20 +0000 | [diff] [blame] | 321 | int bmapi_flags = XFS_BMAPI_ENTIRE; |
| 322 | int nimaps = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 323 | |
Christoph Hellwig | a206c81 | 2010-12-10 08:42:20 +0000 | [diff] [blame] | 324 | if (XFS_FORCED_SHUTDOWN(mp)) |
Eric Sandeen | b474c7a | 2014-06-22 15:04:54 +1000 | [diff] [blame] | 325 | return -EIO; |
Christoph Hellwig | a206c81 | 2010-12-10 08:42:20 +0000 | [diff] [blame] | 326 | |
Alain Renaud | 0d882a3 | 2012-05-22 15:56:21 -0500 | [diff] [blame] | 327 | if (type == XFS_IO_UNWRITTEN) |
Christoph Hellwig | a206c81 | 2010-12-10 08:42:20 +0000 | [diff] [blame] | 328 | bmapi_flags |= XFS_BMAPI_IGSTATE; |
Christoph Hellwig | a206c81 | 2010-12-10 08:42:20 +0000 | [diff] [blame] | 329 | |
Dave Chinner | 988ef92 | 2016-02-15 17:20:50 +1100 | [diff] [blame] | 330 | xfs_ilock(ip, XFS_ILOCK_SHARED); |
Christoph Hellwig | 8ff2957 | 2010-12-10 08:42:21 +0000 | [diff] [blame] | 331 | ASSERT(ip->i_d.di_format != XFS_DINODE_FMT_BTREE || |
| 332 | (ip->i_df.if_flags & XFS_IFEXTENTS)); |
Dave Chinner | d2c2819 | 2012-06-08 15:44:53 +1000 | [diff] [blame] | 333 | ASSERT(offset <= mp->m_super->s_maxbytes); |
Christoph Hellwig | 8ff2957 | 2010-12-10 08:42:21 +0000 | [diff] [blame] | 334 | |
Dave Chinner | d2c2819 | 2012-06-08 15:44:53 +1000 | [diff] [blame] | 335 | if (offset + count > mp->m_super->s_maxbytes) |
| 336 | count = mp->m_super->s_maxbytes - offset; |
Christoph Hellwig | a206c81 | 2010-12-10 08:42:20 +0000 | [diff] [blame] | 337 | end_fsb = XFS_B_TO_FSB(mp, (xfs_ufsize_t)offset + count); |
| 338 | offset_fsb = XFS_B_TO_FSBT(mp, offset); |
Dave Chinner | 5c8ed20 | 2011-09-18 20:40:45 +0000 | [diff] [blame] | 339 | error = xfs_bmapi_read(ip, offset_fsb, end_fsb - offset_fsb, |
| 340 | imap, &nimaps, bmapi_flags); |
Christoph Hellwig | 8ff2957 | 2010-12-10 08:42:21 +0000 | [diff] [blame] | 341 | xfs_iunlock(ip, XFS_ILOCK_SHARED); |
| 342 | |
Christoph Hellwig | a206c81 | 2010-12-10 08:42:20 +0000 | [diff] [blame] | 343 | if (error) |
Dave Chinner | 2451337 | 2014-06-25 14:58:08 +1000 | [diff] [blame] | 344 | return error; |
Christoph Hellwig | a206c81 | 2010-12-10 08:42:20 +0000 | [diff] [blame] | 345 | |
Alain Renaud | 0d882a3 | 2012-05-22 15:56:21 -0500 | [diff] [blame] | 346 | if (type == XFS_IO_DELALLOC && |
Christoph Hellwig | 8ff2957 | 2010-12-10 08:42:21 +0000 | [diff] [blame] | 347 | (!nimaps || isnullstartblock(imap->br_startblock))) { |
Jie Liu | 0799a3e | 2013-09-29 18:56:04 +0800 | [diff] [blame] | 348 | error = xfs_iomap_write_allocate(ip, offset, imap); |
Christoph Hellwig | a206c81 | 2010-12-10 08:42:20 +0000 | [diff] [blame] | 349 | if (!error) |
| 350 | trace_xfs_map_blocks_alloc(ip, offset, count, type, imap); |
Dave Chinner | 2451337 | 2014-06-25 14:58:08 +1000 | [diff] [blame] | 351 | return error; |
Christoph Hellwig | a206c81 | 2010-12-10 08:42:20 +0000 | [diff] [blame] | 352 | } |
| 353 | |
Christoph Hellwig | 8ff2957 | 2010-12-10 08:42:21 +0000 | [diff] [blame] | 354 | #ifdef DEBUG |
Alain Renaud | 0d882a3 | 2012-05-22 15:56:21 -0500 | [diff] [blame] | 355 | if (type == XFS_IO_UNWRITTEN) { |
Christoph Hellwig | 8ff2957 | 2010-12-10 08:42:21 +0000 | [diff] [blame] | 356 | ASSERT(nimaps); |
| 357 | ASSERT(imap->br_startblock != HOLESTARTBLOCK); |
| 358 | ASSERT(imap->br_startblock != DELAYSTARTBLOCK); |
| 359 | } |
| 360 | #endif |
| 361 | if (nimaps) |
| 362 | trace_xfs_map_blocks_found(ip, offset, count, type, imap); |
| 363 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 364 | } |
| 365 | |
Dave Chinner | fbcc025 | 2016-02-15 17:21:19 +1100 | [diff] [blame] | 366 | STATIC bool |
Christoph Hellwig | 558e689 | 2010-04-28 12:28:58 +0000 | [diff] [blame] | 367 | xfs_imap_valid( |
Christoph Hellwig | 8699bb0 | 2010-04-28 12:28:54 +0000 | [diff] [blame] | 368 | struct inode *inode, |
Christoph Hellwig | 207d041 | 2010-04-28 12:28:56 +0000 | [diff] [blame] | 369 | struct xfs_bmbt_irec *imap, |
Christoph Hellwig | 558e689 | 2010-04-28 12:28:58 +0000 | [diff] [blame] | 370 | xfs_off_t offset) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 371 | { |
Christoph Hellwig | 558e689 | 2010-04-28 12:28:58 +0000 | [diff] [blame] | 372 | offset >>= inode->i_blkbits; |
Christoph Hellwig | 8699bb0 | 2010-04-28 12:28:54 +0000 | [diff] [blame] | 373 | |
Christoph Hellwig | 558e689 | 2010-04-28 12:28:58 +0000 | [diff] [blame] | 374 | return offset >= imap->br_startoff && |
| 375 | offset < imap->br_startoff + imap->br_blockcount; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 376 | } |
| 377 | |
Christoph Hellwig | f6d6d4f | 2006-01-11 15:40:13 +1100 | [diff] [blame] | 378 | STATIC void |
| 379 | xfs_start_buffer_writeback( |
| 380 | struct buffer_head *bh) |
| 381 | { |
| 382 | ASSERT(buffer_mapped(bh)); |
| 383 | ASSERT(buffer_locked(bh)); |
| 384 | ASSERT(!buffer_delay(bh)); |
| 385 | ASSERT(!buffer_unwritten(bh)); |
| 386 | |
| 387 | mark_buffer_async_write(bh); |
| 388 | set_buffer_uptodate(bh); |
| 389 | clear_buffer_dirty(bh); |
| 390 | } |
| 391 | |
| 392 | STATIC void |
| 393 | xfs_start_page_writeback( |
| 394 | struct page *page, |
Dave Chinner | e10de37 | 2016-02-15 17:23:12 +1100 | [diff] [blame] | 395 | int clear_dirty) |
Christoph Hellwig | f6d6d4f | 2006-01-11 15:40:13 +1100 | [diff] [blame] | 396 | { |
| 397 | ASSERT(PageLocked(page)); |
| 398 | ASSERT(!PageWriteback(page)); |
Dave Chinner | 0d085a5 | 2014-09-23 15:36:27 +1000 | [diff] [blame] | 399 | |
| 400 | /* |
| 401 | * if the page was not fully cleaned, we need to ensure that the higher |
| 402 | * layers come back to it correctly. That means we need to keep the page |
| 403 | * dirty, and for WB_SYNC_ALL writeback we need to ensure the |
| 404 | * PAGECACHE_TAG_TOWRITE index mark is not removed so another attempt to |
| 405 | * write this page in this writeback sweep will be made. |
| 406 | */ |
| 407 | if (clear_dirty) { |
David Chinner | 9213202 | 2006-12-21 10:24:01 +1100 | [diff] [blame] | 408 | clear_page_dirty_for_io(page); |
Dave Chinner | 0d085a5 | 2014-09-23 15:36:27 +1000 | [diff] [blame] | 409 | set_page_writeback(page); |
| 410 | } else |
| 411 | set_page_writeback_keepwrite(page); |
| 412 | |
Christoph Hellwig | f6d6d4f | 2006-01-11 15:40:13 +1100 | [diff] [blame] | 413 | unlock_page(page); |
Christoph Hellwig | f6d6d4f | 2006-01-11 15:40:13 +1100 | [diff] [blame] | 414 | } |
| 415 | |
Zhi Yong Wu | c7c1a7d | 2013-08-07 10:11:09 +0000 | [diff] [blame] | 416 | static inline int xfs_bio_add_buffer(struct bio *bio, struct buffer_head *bh) |
Christoph Hellwig | f6d6d4f | 2006-01-11 15:40:13 +1100 | [diff] [blame] | 417 | { |
| 418 | return bio_add_page(bio, bh->b_page, bh->b_size, bh_offset(bh)); |
| 419 | } |
| 420 | |
| 421 | /* |
Dave Chinner | bb18782 | 2016-04-06 08:11:25 +1000 | [diff] [blame] | 422 | * Submit the bio for an ioend. We are passed an ioend with a bio attached to |
| 423 | * it, and we submit that bio. The ioend may be used for multiple bio |
| 424 | * submissions, so we only want to allocate an append transaction for the ioend |
| 425 | * once. In the case of multiple bio submission, each bio will take an IO |
| 426 | * reference to the ioend to ensure that the ioend completion is only done once |
| 427 | * all bios have been submitted and the ioend is really done. |
Dave Chinner | 7bf7f35 | 2012-11-12 22:09:45 +1100 | [diff] [blame] | 428 | * |
| 429 | * If @fail is non-zero, it means that we have a situation where some part of |
| 430 | * the submission process has failed after we have marked paged for writeback |
Dave Chinner | bb18782 | 2016-04-06 08:11:25 +1000 | [diff] [blame] | 431 | * and unlocked them. In this situation, we need to fail the bio and ioend |
| 432 | * rather than submit it to IO. This typically only happens on a filesystem |
| 433 | * shutdown. |
Christoph Hellwig | f6d6d4f | 2006-01-11 15:40:13 +1100 | [diff] [blame] | 434 | */ |
Dave Chinner | e10de37 | 2016-02-15 17:23:12 +1100 | [diff] [blame] | 435 | STATIC int |
Christoph Hellwig | f6d6d4f | 2006-01-11 15:40:13 +1100 | [diff] [blame] | 436 | xfs_submit_ioend( |
Christoph Hellwig | 06342cf | 2009-10-30 09:09:15 +0000 | [diff] [blame] | 437 | struct writeback_control *wbc, |
Christoph Hellwig | 0e51a8e | 2016-04-06 08:34:30 +1000 | [diff] [blame] | 438 | struct xfs_ioend *ioend, |
Dave Chinner | e10de37 | 2016-02-15 17:23:12 +1100 | [diff] [blame] | 439 | int status) |
Christoph Hellwig | f6d6d4f | 2006-01-11 15:40:13 +1100 | [diff] [blame] | 440 | { |
Dave Chinner | e10de37 | 2016-02-15 17:23:12 +1100 | [diff] [blame] | 441 | /* Reserve log space if we might write beyond the on-disk inode size. */ |
| 442 | if (!status && |
Christoph Hellwig | 0e51a8e | 2016-04-06 08:34:30 +1000 | [diff] [blame] | 443 | ioend->io_type != XFS_IO_UNWRITTEN && |
Dave Chinner | bb18782 | 2016-04-06 08:11:25 +1000 | [diff] [blame] | 444 | xfs_ioend_is_append(ioend) && |
| 445 | !ioend->io_append_trans) |
Dave Chinner | e10de37 | 2016-02-15 17:23:12 +1100 | [diff] [blame] | 446 | status = xfs_setfilesize_trans_alloc(ioend); |
Dave Chinner | bb18782 | 2016-04-06 08:11:25 +1000 | [diff] [blame] | 447 | |
Christoph Hellwig | 0e51a8e | 2016-04-06 08:34:30 +1000 | [diff] [blame] | 448 | ioend->io_bio->bi_private = ioend; |
| 449 | ioend->io_bio->bi_end_io = xfs_end_bio; |
Mike Christie | 50bfcd0 | 2016-06-05 14:31:57 -0500 | [diff] [blame] | 450 | bio_set_op_attrs(ioend->io_bio, REQ_OP_WRITE, |
| 451 | (wbc->sync_mode == WB_SYNC_ALL) ? WRITE_SYNC : 0); |
Dave Chinner | e10de37 | 2016-02-15 17:23:12 +1100 | [diff] [blame] | 452 | /* |
| 453 | * If we are failing the IO now, just mark the ioend with an |
| 454 | * error and finish it. This will run IO completion immediately |
| 455 | * as there is only one reference to the ioend at this point in |
| 456 | * time. |
| 457 | */ |
| 458 | if (status) { |
Christoph Hellwig | 0e51a8e | 2016-04-06 08:34:30 +1000 | [diff] [blame] | 459 | ioend->io_bio->bi_error = status; |
| 460 | bio_endio(ioend->io_bio); |
Dave Chinner | e10de37 | 2016-02-15 17:23:12 +1100 | [diff] [blame] | 461 | return status; |
| 462 | } |
Christoph Hellwig | f6d6d4f | 2006-01-11 15:40:13 +1100 | [diff] [blame] | 463 | |
Mike Christie | 4e49ea4 | 2016-06-05 14:31:41 -0500 | [diff] [blame] | 464 | submit_bio(ioend->io_bio); |
Dave Chinner | e10de37 | 2016-02-15 17:23:12 +1100 | [diff] [blame] | 465 | return 0; |
Christoph Hellwig | f6d6d4f | 2006-01-11 15:40:13 +1100 | [diff] [blame] | 466 | } |
| 467 | |
Christoph Hellwig | 0e51a8e | 2016-04-06 08:34:30 +1000 | [diff] [blame] | 468 | static void |
| 469 | xfs_init_bio_from_bh( |
| 470 | struct bio *bio, |
| 471 | struct buffer_head *bh) |
| 472 | { |
| 473 | bio->bi_iter.bi_sector = bh->b_blocknr * (bh->b_size >> 9); |
| 474 | bio->bi_bdev = bh->b_bdev; |
| 475 | } |
| 476 | |
| 477 | static struct xfs_ioend * |
| 478 | xfs_alloc_ioend( |
| 479 | struct inode *inode, |
| 480 | unsigned int type, |
| 481 | xfs_off_t offset, |
| 482 | struct buffer_head *bh) |
| 483 | { |
| 484 | struct xfs_ioend *ioend; |
| 485 | struct bio *bio; |
| 486 | |
| 487 | bio = bio_alloc_bioset(GFP_NOFS, BIO_MAX_PAGES, xfs_ioend_bioset); |
| 488 | xfs_init_bio_from_bh(bio, bh); |
| 489 | |
| 490 | ioend = container_of(bio, struct xfs_ioend, io_inline_bio); |
| 491 | INIT_LIST_HEAD(&ioend->io_list); |
| 492 | ioend->io_type = type; |
| 493 | ioend->io_inode = inode; |
| 494 | ioend->io_size = 0; |
| 495 | ioend->io_offset = offset; |
| 496 | INIT_WORK(&ioend->io_work, xfs_end_io); |
| 497 | ioend->io_append_trans = NULL; |
| 498 | ioend->io_bio = bio; |
| 499 | return ioend; |
| 500 | } |
| 501 | |
| 502 | /* |
| 503 | * Allocate a new bio, and chain the old bio to the new one. |
| 504 | * |
| 505 | * Note that we have to do perform the chaining in this unintuitive order |
| 506 | * so that the bi_private linkage is set up in the right direction for the |
| 507 | * traversal in xfs_destroy_ioend(). |
| 508 | */ |
| 509 | static void |
| 510 | xfs_chain_bio( |
| 511 | struct xfs_ioend *ioend, |
| 512 | struct writeback_control *wbc, |
| 513 | struct buffer_head *bh) |
| 514 | { |
| 515 | struct bio *new; |
| 516 | |
| 517 | new = bio_alloc(GFP_NOFS, BIO_MAX_PAGES); |
| 518 | xfs_init_bio_from_bh(new, bh); |
| 519 | |
| 520 | bio_chain(ioend->io_bio, new); |
| 521 | bio_get(ioend->io_bio); /* for xfs_destroy_ioend */ |
Mike Christie | 50bfcd0 | 2016-06-05 14:31:57 -0500 | [diff] [blame] | 522 | bio_set_op_attrs(ioend->io_bio, REQ_OP_WRITE, |
| 523 | (wbc->sync_mode == WB_SYNC_ALL) ? WRITE_SYNC : 0); |
Mike Christie | 4e49ea4 | 2016-06-05 14:31:41 -0500 | [diff] [blame] | 524 | submit_bio(ioend->io_bio); |
Christoph Hellwig | 0e51a8e | 2016-04-06 08:34:30 +1000 | [diff] [blame] | 525 | ioend->io_bio = new; |
| 526 | } |
| 527 | |
Christoph Hellwig | f6d6d4f | 2006-01-11 15:40:13 +1100 | [diff] [blame] | 528 | /* |
| 529 | * Test to see if we've been building up a completion structure for |
| 530 | * earlier buffers -- if so, we try to append to this ioend if we |
| 531 | * can, otherwise we finish off any current ioend and start another. |
Dave Chinner | e10de37 | 2016-02-15 17:23:12 +1100 | [diff] [blame] | 532 | * Return the ioend we finished off so that the caller can submit it |
| 533 | * once it has finished processing the dirty page. |
Christoph Hellwig | f6d6d4f | 2006-01-11 15:40:13 +1100 | [diff] [blame] | 534 | */ |
| 535 | STATIC void |
| 536 | xfs_add_to_ioend( |
| 537 | struct inode *inode, |
| 538 | struct buffer_head *bh, |
Christoph Hellwig | 7336cea | 2006-01-11 20:49:16 +1100 | [diff] [blame] | 539 | xfs_off_t offset, |
Dave Chinner | e10de37 | 2016-02-15 17:23:12 +1100 | [diff] [blame] | 540 | struct xfs_writepage_ctx *wpc, |
Dave Chinner | bb18782 | 2016-04-06 08:11:25 +1000 | [diff] [blame] | 541 | struct writeback_control *wbc, |
Dave Chinner | e10de37 | 2016-02-15 17:23:12 +1100 | [diff] [blame] | 542 | struct list_head *iolist) |
Christoph Hellwig | f6d6d4f | 2006-01-11 15:40:13 +1100 | [diff] [blame] | 543 | { |
Dave Chinner | fbcc025 | 2016-02-15 17:21:19 +1100 | [diff] [blame] | 544 | if (!wpc->ioend || wpc->io_type != wpc->ioend->io_type || |
Darrick J. Wong | 0df61da | 2016-03-07 09:32:14 +1100 | [diff] [blame] | 545 | bh->b_blocknr != wpc->last_block + 1 || |
| 546 | offset != wpc->ioend->io_offset + wpc->ioend->io_size) { |
Dave Chinner | e10de37 | 2016-02-15 17:23:12 +1100 | [diff] [blame] | 547 | if (wpc->ioend) |
| 548 | list_add(&wpc->ioend->io_list, iolist); |
Christoph Hellwig | 0e51a8e | 2016-04-06 08:34:30 +1000 | [diff] [blame] | 549 | wpc->ioend = xfs_alloc_ioend(inode, wpc->io_type, offset, bh); |
Christoph Hellwig | f6d6d4f | 2006-01-11 15:40:13 +1100 | [diff] [blame] | 550 | } |
| 551 | |
Christoph Hellwig | 0e51a8e | 2016-04-06 08:34:30 +1000 | [diff] [blame] | 552 | /* |
| 553 | * If the buffer doesn't fit into the bio we need to allocate a new |
| 554 | * one. This shouldn't happen more than once for a given buffer. |
| 555 | */ |
| 556 | while (xfs_bio_add_buffer(wpc->ioend->io_bio, bh) != bh->b_size) |
| 557 | xfs_chain_bio(wpc->ioend, wbc, bh); |
Dave Chinner | bb18782 | 2016-04-06 08:11:25 +1000 | [diff] [blame] | 558 | |
Dave Chinner | fbcc025 | 2016-02-15 17:21:19 +1100 | [diff] [blame] | 559 | wpc->ioend->io_size += bh->b_size; |
| 560 | wpc->last_block = bh->b_blocknr; |
Dave Chinner | e10de37 | 2016-02-15 17:23:12 +1100 | [diff] [blame] | 561 | xfs_start_buffer_writeback(bh); |
Christoph Hellwig | f6d6d4f | 2006-01-11 15:40:13 +1100 | [diff] [blame] | 562 | } |
| 563 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 564 | STATIC void |
Nathan Scott | 87cbc49 | 2006-03-14 13:26:43 +1100 | [diff] [blame] | 565 | xfs_map_buffer( |
Christoph Hellwig | 046f168 | 2010-04-28 12:28:52 +0000 | [diff] [blame] | 566 | struct inode *inode, |
Nathan Scott | 87cbc49 | 2006-03-14 13:26:43 +1100 | [diff] [blame] | 567 | struct buffer_head *bh, |
Christoph Hellwig | 207d041 | 2010-04-28 12:28:56 +0000 | [diff] [blame] | 568 | struct xfs_bmbt_irec *imap, |
Christoph Hellwig | 046f168 | 2010-04-28 12:28:52 +0000 | [diff] [blame] | 569 | xfs_off_t offset) |
Nathan Scott | 87cbc49 | 2006-03-14 13:26:43 +1100 | [diff] [blame] | 570 | { |
| 571 | sector_t bn; |
Christoph Hellwig | 8699bb0 | 2010-04-28 12:28:54 +0000 | [diff] [blame] | 572 | struct xfs_mount *m = XFS_I(inode)->i_mount; |
Christoph Hellwig | 207d041 | 2010-04-28 12:28:56 +0000 | [diff] [blame] | 573 | xfs_off_t iomap_offset = XFS_FSB_TO_B(m, imap->br_startoff); |
| 574 | xfs_daddr_t iomap_bn = xfs_fsb_to_db(XFS_I(inode), imap->br_startblock); |
Nathan Scott | 87cbc49 | 2006-03-14 13:26:43 +1100 | [diff] [blame] | 575 | |
Christoph Hellwig | 207d041 | 2010-04-28 12:28:56 +0000 | [diff] [blame] | 576 | ASSERT(imap->br_startblock != HOLESTARTBLOCK); |
| 577 | ASSERT(imap->br_startblock != DELAYSTARTBLOCK); |
Nathan Scott | 87cbc49 | 2006-03-14 13:26:43 +1100 | [diff] [blame] | 578 | |
Christoph Hellwig | e513182 | 2010-04-28 12:28:55 +0000 | [diff] [blame] | 579 | bn = (iomap_bn >> (inode->i_blkbits - BBSHIFT)) + |
Christoph Hellwig | 8699bb0 | 2010-04-28 12:28:54 +0000 | [diff] [blame] | 580 | ((offset - iomap_offset) >> inode->i_blkbits); |
Nathan Scott | 87cbc49 | 2006-03-14 13:26:43 +1100 | [diff] [blame] | 581 | |
Christoph Hellwig | 046f168 | 2010-04-28 12:28:52 +0000 | [diff] [blame] | 582 | ASSERT(bn || XFS_IS_REALTIME_INODE(XFS_I(inode))); |
Nathan Scott | 87cbc49 | 2006-03-14 13:26:43 +1100 | [diff] [blame] | 583 | |
| 584 | bh->b_blocknr = bn; |
| 585 | set_buffer_mapped(bh); |
| 586 | } |
| 587 | |
| 588 | STATIC void |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 589 | xfs_map_at_offset( |
Christoph Hellwig | 046f168 | 2010-04-28 12:28:52 +0000 | [diff] [blame] | 590 | struct inode *inode, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 591 | struct buffer_head *bh, |
Christoph Hellwig | 207d041 | 2010-04-28 12:28:56 +0000 | [diff] [blame] | 592 | struct xfs_bmbt_irec *imap, |
Christoph Hellwig | 046f168 | 2010-04-28 12:28:52 +0000 | [diff] [blame] | 593 | xfs_off_t offset) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 594 | { |
Christoph Hellwig | 207d041 | 2010-04-28 12:28:56 +0000 | [diff] [blame] | 595 | ASSERT(imap->br_startblock != HOLESTARTBLOCK); |
| 596 | ASSERT(imap->br_startblock != DELAYSTARTBLOCK); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 597 | |
Christoph Hellwig | 207d041 | 2010-04-28 12:28:56 +0000 | [diff] [blame] | 598 | xfs_map_buffer(inode, bh, imap, offset); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 599 | set_buffer_mapped(bh); |
| 600 | clear_buffer_delay(bh); |
Christoph Hellwig | f6d6d4f | 2006-01-11 15:40:13 +1100 | [diff] [blame] | 601 | clear_buffer_unwritten(bh); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 602 | } |
| 603 | |
| 604 | /* |
Dave Chinner | a49935f | 2014-03-07 16:19:14 +1100 | [diff] [blame] | 605 | * Test if a given page contains at least one buffer of a given @type. |
| 606 | * If @check_all_buffers is true, then we walk all the buffers in the page to |
| 607 | * try to find one of the type passed in. If it is not set, then the caller only |
| 608 | * needs to check the first buffer on the page for a match. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 609 | */ |
Dave Chinner | a49935f | 2014-03-07 16:19:14 +1100 | [diff] [blame] | 610 | STATIC bool |
Dave Chinner | 6ffc4db | 2012-04-23 15:58:43 +1000 | [diff] [blame] | 611 | xfs_check_page_type( |
Christoph Hellwig | 10ce444 | 2006-01-11 20:48:14 +1100 | [diff] [blame] | 612 | struct page *page, |
Dave Chinner | a49935f | 2014-03-07 16:19:14 +1100 | [diff] [blame] | 613 | unsigned int type, |
| 614 | bool check_all_buffers) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 615 | { |
Dave Chinner | a49935f | 2014-03-07 16:19:14 +1100 | [diff] [blame] | 616 | struct buffer_head *bh; |
| 617 | struct buffer_head *head; |
| 618 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 619 | if (PageWriteback(page)) |
Dave Chinner | a49935f | 2014-03-07 16:19:14 +1100 | [diff] [blame] | 620 | return false; |
| 621 | if (!page->mapping) |
| 622 | return false; |
| 623 | if (!page_has_buffers(page)) |
| 624 | return false; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 625 | |
Dave Chinner | a49935f | 2014-03-07 16:19:14 +1100 | [diff] [blame] | 626 | bh = head = page_buffers(page); |
| 627 | do { |
| 628 | if (buffer_unwritten(bh)) { |
| 629 | if (type == XFS_IO_UNWRITTEN) |
| 630 | return true; |
| 631 | } else if (buffer_delay(bh)) { |
Dan Carpenter | 805eeb8 | 2014-04-04 06:56:30 +1100 | [diff] [blame] | 632 | if (type == XFS_IO_DELALLOC) |
Dave Chinner | a49935f | 2014-03-07 16:19:14 +1100 | [diff] [blame] | 633 | return true; |
| 634 | } else if (buffer_dirty(bh) && buffer_mapped(bh)) { |
Dan Carpenter | 805eeb8 | 2014-04-04 06:56:30 +1100 | [diff] [blame] | 635 | if (type == XFS_IO_OVERWRITE) |
Dave Chinner | a49935f | 2014-03-07 16:19:14 +1100 | [diff] [blame] | 636 | return true; |
| 637 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 638 | |
Dave Chinner | a49935f | 2014-03-07 16:19:14 +1100 | [diff] [blame] | 639 | /* If we are only checking the first buffer, we are done now. */ |
| 640 | if (!check_all_buffers) |
| 641 | break; |
| 642 | } while ((bh = bh->b_this_page) != head); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 643 | |
Dave Chinner | a49935f | 2014-03-07 16:19:14 +1100 | [diff] [blame] | 644 | return false; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 645 | } |
| 646 | |
Dave Chinner | 3ed3a43 | 2010-03-05 02:00:42 +0000 | [diff] [blame] | 647 | STATIC void |
| 648 | xfs_vm_invalidatepage( |
| 649 | struct page *page, |
Lukas Czerner | d47992f | 2013-05-21 23:17:23 -0400 | [diff] [blame] | 650 | unsigned int offset, |
| 651 | unsigned int length) |
Dave Chinner | 3ed3a43 | 2010-03-05 02:00:42 +0000 | [diff] [blame] | 652 | { |
Lukas Czerner | 34097df | 2013-05-21 23:58:01 -0400 | [diff] [blame] | 653 | trace_xfs_invalidatepage(page->mapping->host, page, offset, |
| 654 | length); |
| 655 | block_invalidatepage(page, offset, length); |
Dave Chinner | 3ed3a43 | 2010-03-05 02:00:42 +0000 | [diff] [blame] | 656 | } |
| 657 | |
| 658 | /* |
| 659 | * If the page has delalloc buffers on it, we need to punch them out before we |
| 660 | * invalidate the page. If we don't, we leave a stale delalloc mapping on the |
| 661 | * inode that can trip a BUG() in xfs_get_blocks() later on if a direct IO read |
| 662 | * is done on that same region - the delalloc extent is returned when none is |
| 663 | * supposed to be there. |
| 664 | * |
| 665 | * We prevent this by truncating away the delalloc regions on the page before |
| 666 | * invalidating it. Because they are delalloc, we can do this without needing a |
| 667 | * transaction. Indeed - if we get ENOSPC errors, we have to be able to do this |
| 668 | * truncation without a transaction as there is no space left for block |
| 669 | * reservation (typically why we see a ENOSPC in writeback). |
| 670 | * |
| 671 | * This is not a performance critical path, so for now just do the punching a |
| 672 | * buffer head at a time. |
| 673 | */ |
| 674 | STATIC void |
| 675 | xfs_aops_discard_page( |
| 676 | struct page *page) |
| 677 | { |
| 678 | struct inode *inode = page->mapping->host; |
| 679 | struct xfs_inode *ip = XFS_I(inode); |
| 680 | struct buffer_head *bh, *head; |
| 681 | loff_t offset = page_offset(page); |
Dave Chinner | 3ed3a43 | 2010-03-05 02:00:42 +0000 | [diff] [blame] | 682 | |
Dave Chinner | a49935f | 2014-03-07 16:19:14 +1100 | [diff] [blame] | 683 | if (!xfs_check_page_type(page, XFS_IO_DELALLOC, true)) |
Dave Chinner | 3ed3a43 | 2010-03-05 02:00:42 +0000 | [diff] [blame] | 684 | goto out_invalidate; |
| 685 | |
Dave Chinner | e8c3753 | 2010-03-15 02:36:35 +0000 | [diff] [blame] | 686 | if (XFS_FORCED_SHUTDOWN(ip->i_mount)) |
| 687 | goto out_invalidate; |
| 688 | |
Dave Chinner | 4f10700 | 2011-03-07 10:00:35 +1100 | [diff] [blame] | 689 | xfs_alert(ip->i_mount, |
Dave Chinner | 3ed3a43 | 2010-03-05 02:00:42 +0000 | [diff] [blame] | 690 | "page discard on page %p, inode 0x%llx, offset %llu.", |
| 691 | page, ip->i_ino, offset); |
| 692 | |
| 693 | xfs_ilock(ip, XFS_ILOCK_EXCL); |
| 694 | bh = head = page_buffers(page); |
| 695 | do { |
Dave Chinner | 3ed3a43 | 2010-03-05 02:00:42 +0000 | [diff] [blame] | 696 | int error; |
Dave Chinner | c726de4 | 2010-11-30 15:14:39 +1100 | [diff] [blame] | 697 | xfs_fileoff_t start_fsb; |
Dave Chinner | 3ed3a43 | 2010-03-05 02:00:42 +0000 | [diff] [blame] | 698 | |
| 699 | if (!buffer_delay(bh)) |
| 700 | goto next_buffer; |
| 701 | |
Dave Chinner | c726de4 | 2010-11-30 15:14:39 +1100 | [diff] [blame] | 702 | start_fsb = XFS_B_TO_FSBT(ip->i_mount, offset); |
| 703 | error = xfs_bmap_punch_delalloc_range(ip, start_fsb, 1); |
Dave Chinner | 3ed3a43 | 2010-03-05 02:00:42 +0000 | [diff] [blame] | 704 | if (error) { |
| 705 | /* something screwed, just bail */ |
Dave Chinner | e8c3753 | 2010-03-15 02:36:35 +0000 | [diff] [blame] | 706 | if (!XFS_FORCED_SHUTDOWN(ip->i_mount)) { |
Dave Chinner | 4f10700 | 2011-03-07 10:00:35 +1100 | [diff] [blame] | 707 | xfs_alert(ip->i_mount, |
Dave Chinner | 3ed3a43 | 2010-03-05 02:00:42 +0000 | [diff] [blame] | 708 | "page discard unable to remove delalloc mapping."); |
Dave Chinner | e8c3753 | 2010-03-15 02:36:35 +0000 | [diff] [blame] | 709 | } |
Dave Chinner | 3ed3a43 | 2010-03-05 02:00:42 +0000 | [diff] [blame] | 710 | break; |
| 711 | } |
| 712 | next_buffer: |
Dave Chinner | c726de4 | 2010-11-30 15:14:39 +1100 | [diff] [blame] | 713 | offset += 1 << inode->i_blkbits; |
Dave Chinner | 3ed3a43 | 2010-03-05 02:00:42 +0000 | [diff] [blame] | 714 | |
| 715 | } while ((bh = bh->b_this_page) != head); |
| 716 | |
| 717 | xfs_iunlock(ip, XFS_ILOCK_EXCL); |
| 718 | out_invalidate: |
Kirill A. Shutemov | 09cbfea | 2016-04-01 15:29:47 +0300 | [diff] [blame] | 719 | xfs_vm_invalidatepage(page, 0, PAGE_SIZE); |
Dave Chinner | 3ed3a43 | 2010-03-05 02:00:42 +0000 | [diff] [blame] | 720 | return; |
| 721 | } |
| 722 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 723 | /* |
Dave Chinner | e10de37 | 2016-02-15 17:23:12 +1100 | [diff] [blame] | 724 | * We implement an immediate ioend submission policy here to avoid needing to |
| 725 | * chain multiple ioends and hence nest mempool allocations which can violate |
| 726 | * forward progress guarantees we need to provide. The current ioend we are |
| 727 | * adding buffers to is cached on the writepage context, and if the new buffer |
| 728 | * does not append to the cached ioend it will create a new ioend and cache that |
| 729 | * instead. |
| 730 | * |
| 731 | * If a new ioend is created and cached, the old ioend is returned and queued |
| 732 | * locally for submission once the entire page is processed or an error has been |
| 733 | * detected. While ioends are submitted immediately after they are completed, |
| 734 | * batching optimisations are provided by higher level block plugging. |
| 735 | * |
| 736 | * At the end of a writeback pass, there will be a cached ioend remaining on the |
| 737 | * writepage context that the caller will need to submit. |
| 738 | */ |
Dave Chinner | bfce7d2 | 2016-02-15 17:21:37 +1100 | [diff] [blame] | 739 | static int |
| 740 | xfs_writepage_map( |
| 741 | struct xfs_writepage_ctx *wpc, |
Dave Chinner | e10de37 | 2016-02-15 17:23:12 +1100 | [diff] [blame] | 742 | struct writeback_control *wbc, |
Dave Chinner | bfce7d2 | 2016-02-15 17:21:37 +1100 | [diff] [blame] | 743 | struct inode *inode, |
| 744 | struct page *page, |
| 745 | loff_t offset, |
| 746 | __uint64_t end_offset) |
| 747 | { |
Dave Chinner | e10de37 | 2016-02-15 17:23:12 +1100 | [diff] [blame] | 748 | LIST_HEAD(submit_list); |
| 749 | struct xfs_ioend *ioend, *next; |
Dave Chinner | bfce7d2 | 2016-02-15 17:21:37 +1100 | [diff] [blame] | 750 | struct buffer_head *bh, *head; |
| 751 | ssize_t len = 1 << inode->i_blkbits; |
| 752 | int error = 0; |
Dave Chinner | bfce7d2 | 2016-02-15 17:21:37 +1100 | [diff] [blame] | 753 | int count = 0; |
Dave Chinner | e10de37 | 2016-02-15 17:23:12 +1100 | [diff] [blame] | 754 | int uptodate = 1; |
Dave Chinner | bfce7d2 | 2016-02-15 17:21:37 +1100 | [diff] [blame] | 755 | |
| 756 | bh = head = page_buffers(page); |
| 757 | offset = page_offset(page); |
Dave Chinner | bfce7d2 | 2016-02-15 17:21:37 +1100 | [diff] [blame] | 758 | do { |
| 759 | if (offset >= end_offset) |
| 760 | break; |
| 761 | if (!buffer_uptodate(bh)) |
| 762 | uptodate = 0; |
| 763 | |
| 764 | /* |
| 765 | * set_page_dirty dirties all buffers in a page, independent |
| 766 | * of their state. The dirty state however is entirely |
| 767 | * meaningless for holes (!mapped && uptodate), so skip |
| 768 | * buffers covering holes here. |
| 769 | */ |
| 770 | if (!buffer_mapped(bh) && buffer_uptodate(bh)) { |
| 771 | wpc->imap_valid = false; |
| 772 | continue; |
| 773 | } |
| 774 | |
| 775 | if (buffer_unwritten(bh)) { |
| 776 | if (wpc->io_type != XFS_IO_UNWRITTEN) { |
| 777 | wpc->io_type = XFS_IO_UNWRITTEN; |
| 778 | wpc->imap_valid = false; |
| 779 | } |
| 780 | } else if (buffer_delay(bh)) { |
| 781 | if (wpc->io_type != XFS_IO_DELALLOC) { |
| 782 | wpc->io_type = XFS_IO_DELALLOC; |
| 783 | wpc->imap_valid = false; |
| 784 | } |
| 785 | } else if (buffer_uptodate(bh)) { |
| 786 | if (wpc->io_type != XFS_IO_OVERWRITE) { |
| 787 | wpc->io_type = XFS_IO_OVERWRITE; |
| 788 | wpc->imap_valid = false; |
| 789 | } |
| 790 | } else { |
| 791 | if (PageUptodate(page)) |
| 792 | ASSERT(buffer_mapped(bh)); |
| 793 | /* |
| 794 | * This buffer is not uptodate and will not be |
| 795 | * written to disk. Ensure that we will put any |
| 796 | * subsequent writeable buffers into a new |
| 797 | * ioend. |
| 798 | */ |
| 799 | wpc->imap_valid = false; |
| 800 | continue; |
| 801 | } |
| 802 | |
| 803 | if (wpc->imap_valid) |
| 804 | wpc->imap_valid = xfs_imap_valid(inode, &wpc->imap, |
| 805 | offset); |
| 806 | if (!wpc->imap_valid) { |
| 807 | error = xfs_map_blocks(inode, offset, &wpc->imap, |
| 808 | wpc->io_type); |
| 809 | if (error) |
Dave Chinner | e10de37 | 2016-02-15 17:23:12 +1100 | [diff] [blame] | 810 | goto out; |
Dave Chinner | bfce7d2 | 2016-02-15 17:21:37 +1100 | [diff] [blame] | 811 | wpc->imap_valid = xfs_imap_valid(inode, &wpc->imap, |
| 812 | offset); |
| 813 | } |
| 814 | if (wpc->imap_valid) { |
| 815 | lock_buffer(bh); |
| 816 | if (wpc->io_type != XFS_IO_OVERWRITE) |
| 817 | xfs_map_at_offset(inode, bh, &wpc->imap, offset); |
Dave Chinner | bb18782 | 2016-04-06 08:11:25 +1000 | [diff] [blame] | 818 | xfs_add_to_ioend(inode, bh, offset, wpc, wbc, &submit_list); |
Dave Chinner | bfce7d2 | 2016-02-15 17:21:37 +1100 | [diff] [blame] | 819 | count++; |
| 820 | } |
| 821 | |
Dave Chinner | bfce7d2 | 2016-02-15 17:21:37 +1100 | [diff] [blame] | 822 | } while (offset += len, ((bh = bh->b_this_page) != head)); |
| 823 | |
| 824 | if (uptodate && bh == head) |
| 825 | SetPageUptodate(page); |
| 826 | |
Dave Chinner | e10de37 | 2016-02-15 17:23:12 +1100 | [diff] [blame] | 827 | ASSERT(wpc->ioend || list_empty(&submit_list)); |
Dave Chinner | bfce7d2 | 2016-02-15 17:21:37 +1100 | [diff] [blame] | 828 | |
Dave Chinner | e10de37 | 2016-02-15 17:23:12 +1100 | [diff] [blame] | 829 | out: |
Dave Chinner | bfce7d2 | 2016-02-15 17:21:37 +1100 | [diff] [blame] | 830 | /* |
Dave Chinner | e10de37 | 2016-02-15 17:23:12 +1100 | [diff] [blame] | 831 | * On error, we have to fail the ioend here because we have locked |
| 832 | * buffers in the ioend. If we don't do this, we'll deadlock |
| 833 | * invalidating the page as that tries to lock the buffers on the page. |
| 834 | * Also, because we may have set pages under writeback, we have to make |
| 835 | * sure we run IO completion to mark the error state of the IO |
| 836 | * appropriately, so we can't cancel the ioend directly here. That means |
| 837 | * we have to mark this page as under writeback if we included any |
| 838 | * buffers from it in the ioend chain so that completion treats it |
| 839 | * correctly. |
Dave Chinner | bfce7d2 | 2016-02-15 17:21:37 +1100 | [diff] [blame] | 840 | * |
Dave Chinner | e10de37 | 2016-02-15 17:23:12 +1100 | [diff] [blame] | 841 | * If we didn't include the page in the ioend, the on error we can |
| 842 | * simply discard and unlock it as there are no other users of the page |
| 843 | * or it's buffers right now. The caller will still need to trigger |
| 844 | * submission of outstanding ioends on the writepage context so they are |
| 845 | * treated correctly on error. |
Dave Chinner | bfce7d2 | 2016-02-15 17:21:37 +1100 | [diff] [blame] | 846 | */ |
Dave Chinner | e10de37 | 2016-02-15 17:23:12 +1100 | [diff] [blame] | 847 | if (count) { |
| 848 | xfs_start_page_writeback(page, !error); |
| 849 | |
| 850 | /* |
| 851 | * Preserve the original error if there was one, otherwise catch |
| 852 | * submission errors here and propagate into subsequent ioend |
| 853 | * submissions. |
| 854 | */ |
| 855 | list_for_each_entry_safe(ioend, next, &submit_list, io_list) { |
| 856 | int error2; |
| 857 | |
| 858 | list_del_init(&ioend->io_list); |
| 859 | error2 = xfs_submit_ioend(wbc, ioend, error); |
| 860 | if (error2 && !error) |
| 861 | error = error2; |
| 862 | } |
| 863 | } else if (error) { |
Dave Chinner | bfce7d2 | 2016-02-15 17:21:37 +1100 | [diff] [blame] | 864 | xfs_aops_discard_page(page); |
| 865 | ClearPageUptodate(page); |
| 866 | unlock_page(page); |
Dave Chinner | e10de37 | 2016-02-15 17:23:12 +1100 | [diff] [blame] | 867 | } else { |
| 868 | /* |
| 869 | * We can end up here with no error and nothing to write if we |
| 870 | * race with a partial page truncate on a sub-page block sized |
| 871 | * filesystem. In that case we need to mark the page clean. |
| 872 | */ |
| 873 | xfs_start_page_writeback(page, 1); |
| 874 | end_page_writeback(page); |
Dave Chinner | bfce7d2 | 2016-02-15 17:21:37 +1100 | [diff] [blame] | 875 | } |
Dave Chinner | e10de37 | 2016-02-15 17:23:12 +1100 | [diff] [blame] | 876 | |
Dave Chinner | bfce7d2 | 2016-02-15 17:21:37 +1100 | [diff] [blame] | 877 | mapping_set_error(page->mapping, error); |
| 878 | return error; |
| 879 | } |
| 880 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 881 | /* |
Christoph Hellwig | 89f3b363 | 2010-06-24 09:45:48 +1000 | [diff] [blame] | 882 | * Write out a dirty page. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 883 | * |
Christoph Hellwig | 89f3b363 | 2010-06-24 09:45:48 +1000 | [diff] [blame] | 884 | * For delalloc space on the page we need to allocate space and flush it. |
| 885 | * For unwritten space on the page we need to start the conversion to |
| 886 | * regular allocated space. |
Christoph Hellwig | 89f3b363 | 2010-06-24 09:45:48 +1000 | [diff] [blame] | 887 | * For any other dirty buffer heads on the page we should flush them. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 888 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 889 | STATIC int |
Dave Chinner | fbcc025 | 2016-02-15 17:21:19 +1100 | [diff] [blame] | 890 | xfs_do_writepage( |
Christoph Hellwig | 89f3b363 | 2010-06-24 09:45:48 +1000 | [diff] [blame] | 891 | struct page *page, |
Dave Chinner | fbcc025 | 2016-02-15 17:21:19 +1100 | [diff] [blame] | 892 | struct writeback_control *wbc, |
| 893 | void *data) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 894 | { |
Dave Chinner | fbcc025 | 2016-02-15 17:21:19 +1100 | [diff] [blame] | 895 | struct xfs_writepage_ctx *wpc = data; |
Christoph Hellwig | 89f3b363 | 2010-06-24 09:45:48 +1000 | [diff] [blame] | 896 | struct inode *inode = page->mapping->host; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 897 | loff_t offset; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 898 | __uint64_t end_offset; |
Dave Chinner | ad68972 | 2016-02-15 17:21:31 +1100 | [diff] [blame] | 899 | pgoff_t end_index; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 900 | |
Lukas Czerner | 34097df | 2013-05-21 23:58:01 -0400 | [diff] [blame] | 901 | trace_xfs_writepage(inode, page, 0, 0); |
Christoph Hellwig | 89f3b363 | 2010-06-24 09:45:48 +1000 | [diff] [blame] | 902 | |
Christoph Hellwig | 20cb52e | 2010-06-24 09:46:01 +1000 | [diff] [blame] | 903 | ASSERT(page_has_buffers(page)); |
| 904 | |
Christoph Hellwig | 89f3b363 | 2010-06-24 09:45:48 +1000 | [diff] [blame] | 905 | /* |
| 906 | * Refuse to write the page out if we are called from reclaim context. |
| 907 | * |
Christoph Hellwig | d4f7a5c | 2010-06-28 10:34:44 -0400 | [diff] [blame] | 908 | * This avoids stack overflows when called from deeply used stacks in |
| 909 | * random callers for direct reclaim or memcg reclaim. We explicitly |
| 910 | * allow reclaim from kswapd as the stack usage there is relatively low. |
Christoph Hellwig | 89f3b363 | 2010-06-24 09:45:48 +1000 | [diff] [blame] | 911 | * |
Mel Gorman | 94054fa | 2011-10-31 17:07:45 -0700 | [diff] [blame] | 912 | * This should never happen except in the case of a VM regression so |
| 913 | * warn about it. |
Christoph Hellwig | 89f3b363 | 2010-06-24 09:45:48 +1000 | [diff] [blame] | 914 | */ |
Mel Gorman | 94054fa | 2011-10-31 17:07:45 -0700 | [diff] [blame] | 915 | if (WARN_ON_ONCE((current->flags & (PF_MEMALLOC|PF_KSWAPD)) == |
| 916 | PF_MEMALLOC)) |
Christoph Hellwig | b5420f2 | 2010-08-24 11:47:51 +1000 | [diff] [blame] | 917 | goto redirty; |
Christoph Hellwig | 89f3b363 | 2010-06-24 09:45:48 +1000 | [diff] [blame] | 918 | |
| 919 | /* |
Christoph Hellwig | 680a647 | 2011-07-08 14:34:05 +0200 | [diff] [blame] | 920 | * Given that we do not allow direct reclaim to call us, we should |
| 921 | * never be called while in a filesystem transaction. |
Christoph Hellwig | 89f3b363 | 2010-06-24 09:45:48 +1000 | [diff] [blame] | 922 | */ |
Christoph Hellwig | 448011e | 2014-06-06 16:05:15 +1000 | [diff] [blame] | 923 | if (WARN_ON_ONCE(current->flags & PF_FSTRANS)) |
Christoph Hellwig | b5420f2 | 2010-08-24 11:47:51 +1000 | [diff] [blame] | 924 | goto redirty; |
Christoph Hellwig | 89f3b363 | 2010-06-24 09:45:48 +1000 | [diff] [blame] | 925 | |
Jie Liu | 8695d27 | 2014-05-20 08:24:26 +1000 | [diff] [blame] | 926 | /* |
Dave Chinner | ad68972 | 2016-02-15 17:21:31 +1100 | [diff] [blame] | 927 | * Is this page beyond the end of the file? |
| 928 | * |
Jie Liu | 8695d27 | 2014-05-20 08:24:26 +1000 | [diff] [blame] | 929 | * The page index is less than the end_index, adjust the end_offset |
| 930 | * to the highest offset that this page should represent. |
| 931 | * ----------------------------------------------------- |
| 932 | * | file mapping | <EOF> | |
| 933 | * ----------------------------------------------------- |
| 934 | * | Page ... | Page N-2 | Page N-1 | Page N | | |
| 935 | * ^--------------------------------^----------|-------- |
| 936 | * | desired writeback range | see else | |
| 937 | * ---------------------------------^------------------| |
| 938 | */ |
Dave Chinner | ad68972 | 2016-02-15 17:21:31 +1100 | [diff] [blame] | 939 | offset = i_size_read(inode); |
Kirill A. Shutemov | 09cbfea | 2016-04-01 15:29:47 +0300 | [diff] [blame] | 940 | end_index = offset >> PAGE_SHIFT; |
Jie Liu | 8695d27 | 2014-05-20 08:24:26 +1000 | [diff] [blame] | 941 | if (page->index < end_index) |
Kirill A. Shutemov | 09cbfea | 2016-04-01 15:29:47 +0300 | [diff] [blame] | 942 | end_offset = (xfs_off_t)(page->index + 1) << PAGE_SHIFT; |
Jie Liu | 8695d27 | 2014-05-20 08:24:26 +1000 | [diff] [blame] | 943 | else { |
| 944 | /* |
| 945 | * Check whether the page to write out is beyond or straddles |
| 946 | * i_size or not. |
| 947 | * ------------------------------------------------------- |
| 948 | * | file mapping | <EOF> | |
| 949 | * ------------------------------------------------------- |
| 950 | * | Page ... | Page N-2 | Page N-1 | Page N | Beyond | |
| 951 | * ^--------------------------------^-----------|--------- |
| 952 | * | | Straddles | |
| 953 | * ---------------------------------^-----------|--------| |
| 954 | */ |
Kirill A. Shutemov | 09cbfea | 2016-04-01 15:29:47 +0300 | [diff] [blame] | 955 | unsigned offset_into_page = offset & (PAGE_SIZE - 1); |
Christoph Hellwig | 6b7a03f | 2012-07-03 12:20:00 -0400 | [diff] [blame] | 956 | |
| 957 | /* |
Jan Kara | ff9a28f | 2013-03-14 14:30:54 +0100 | [diff] [blame] | 958 | * Skip the page if it is fully outside i_size, e.g. due to a |
| 959 | * truncate operation that is in progress. We must redirty the |
| 960 | * page so that reclaim stops reclaiming it. Otherwise |
| 961 | * xfs_vm_releasepage() is called on it and gets confused. |
Jie Liu | 8695d27 | 2014-05-20 08:24:26 +1000 | [diff] [blame] | 962 | * |
| 963 | * Note that the end_index is unsigned long, it would overflow |
| 964 | * if the given offset is greater than 16TB on 32-bit system |
| 965 | * and if we do check the page is fully outside i_size or not |
| 966 | * via "if (page->index >= end_index + 1)" as "end_index + 1" |
| 967 | * will be evaluated to 0. Hence this page will be redirtied |
| 968 | * and be written out repeatedly which would result in an |
| 969 | * infinite loop, the user program that perform this operation |
| 970 | * will hang. Instead, we can verify this situation by checking |
| 971 | * if the page to write is totally beyond the i_size or if it's |
| 972 | * offset is just equal to the EOF. |
Christoph Hellwig | 6b7a03f | 2012-07-03 12:20:00 -0400 | [diff] [blame] | 973 | */ |
Jie Liu | 8695d27 | 2014-05-20 08:24:26 +1000 | [diff] [blame] | 974 | if (page->index > end_index || |
| 975 | (page->index == end_index && offset_into_page == 0)) |
Jan Kara | ff9a28f | 2013-03-14 14:30:54 +0100 | [diff] [blame] | 976 | goto redirty; |
Christoph Hellwig | 6b7a03f | 2012-07-03 12:20:00 -0400 | [diff] [blame] | 977 | |
| 978 | /* |
| 979 | * The page straddles i_size. It must be zeroed out on each |
| 980 | * and every writepage invocation because it may be mmapped. |
| 981 | * "A file is mapped in multiples of the page size. For a file |
Jie Liu | 8695d27 | 2014-05-20 08:24:26 +1000 | [diff] [blame] | 982 | * that is not a multiple of the page size, the remaining |
Christoph Hellwig | 6b7a03f | 2012-07-03 12:20:00 -0400 | [diff] [blame] | 983 | * memory is zeroed when mapped, and writes to that region are |
| 984 | * not written out to the file." |
| 985 | */ |
Kirill A. Shutemov | 09cbfea | 2016-04-01 15:29:47 +0300 | [diff] [blame] | 986 | zero_user_segment(page, offset_into_page, PAGE_SIZE); |
Jie Liu | 8695d27 | 2014-05-20 08:24:26 +1000 | [diff] [blame] | 987 | |
| 988 | /* Adjust the end_offset to the end of file */ |
| 989 | end_offset = offset; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 990 | } |
| 991 | |
Dave Chinner | e10de37 | 2016-02-15 17:23:12 +1100 | [diff] [blame] | 992 | return xfs_writepage_map(wpc, wbc, inode, page, offset, end_offset); |
Nathan Scott | f51623b | 2006-03-14 13:26:27 +1100 | [diff] [blame] | 993 | |
Christoph Hellwig | b5420f2 | 2010-08-24 11:47:51 +1000 | [diff] [blame] | 994 | redirty: |
Nathan Scott | f51623b | 2006-03-14 13:26:27 +1100 | [diff] [blame] | 995 | redirty_page_for_writepage(wbc, page); |
| 996 | unlock_page(page); |
| 997 | return 0; |
Nathan Scott | f51623b | 2006-03-14 13:26:27 +1100 | [diff] [blame] | 998 | } |
| 999 | |
Nathan Scott | 7d4fb40 | 2006-06-09 15:27:16 +1000 | [diff] [blame] | 1000 | STATIC int |
Dave Chinner | fbcc025 | 2016-02-15 17:21:19 +1100 | [diff] [blame] | 1001 | xfs_vm_writepage( |
| 1002 | struct page *page, |
| 1003 | struct writeback_control *wbc) |
| 1004 | { |
| 1005 | struct xfs_writepage_ctx wpc = { |
| 1006 | .io_type = XFS_IO_INVALID, |
| 1007 | }; |
| 1008 | int ret; |
| 1009 | |
| 1010 | ret = xfs_do_writepage(page, wbc, &wpc); |
Dave Chinner | e10de37 | 2016-02-15 17:23:12 +1100 | [diff] [blame] | 1011 | if (wpc.ioend) |
| 1012 | ret = xfs_submit_ioend(wbc, wpc.ioend, ret); |
| 1013 | return ret; |
Dave Chinner | fbcc025 | 2016-02-15 17:21:19 +1100 | [diff] [blame] | 1014 | } |
| 1015 | |
| 1016 | STATIC int |
Nathan Scott | 7d4fb40 | 2006-06-09 15:27:16 +1000 | [diff] [blame] | 1017 | xfs_vm_writepages( |
| 1018 | struct address_space *mapping, |
| 1019 | struct writeback_control *wbc) |
| 1020 | { |
Dave Chinner | fbcc025 | 2016-02-15 17:21:19 +1100 | [diff] [blame] | 1021 | struct xfs_writepage_ctx wpc = { |
| 1022 | .io_type = XFS_IO_INVALID, |
| 1023 | }; |
| 1024 | int ret; |
| 1025 | |
Christoph Hellwig | b3aea4e | 2007-08-29 11:44:37 +1000 | [diff] [blame] | 1026 | xfs_iflags_clear(XFS_I(mapping->host), XFS_ITRUNCATED); |
Ross Zwisler | 7f6d5b5 | 2016-02-26 15:19:55 -0800 | [diff] [blame] | 1027 | if (dax_mapping(mapping)) |
| 1028 | return dax_writeback_mapping_range(mapping, |
| 1029 | xfs_find_bdev_for_inode(mapping->host), wbc); |
| 1030 | |
Dave Chinner | fbcc025 | 2016-02-15 17:21:19 +1100 | [diff] [blame] | 1031 | ret = write_cache_pages(mapping, wbc, xfs_do_writepage, &wpc); |
Dave Chinner | e10de37 | 2016-02-15 17:23:12 +1100 | [diff] [blame] | 1032 | if (wpc.ioend) |
| 1033 | ret = xfs_submit_ioend(wbc, wpc.ioend, ret); |
| 1034 | return ret; |
Nathan Scott | 7d4fb40 | 2006-06-09 15:27:16 +1000 | [diff] [blame] | 1035 | } |
| 1036 | |
Nathan Scott | f51623b | 2006-03-14 13:26:27 +1100 | [diff] [blame] | 1037 | /* |
| 1038 | * Called to move a page into cleanable state - and from there |
Christoph Hellwig | 89f3b363 | 2010-06-24 09:45:48 +1000 | [diff] [blame] | 1039 | * to be released. The page should already be clean. We always |
Nathan Scott | f51623b | 2006-03-14 13:26:27 +1100 | [diff] [blame] | 1040 | * have buffer heads in this call. |
| 1041 | * |
Christoph Hellwig | 89f3b363 | 2010-06-24 09:45:48 +1000 | [diff] [blame] | 1042 | * Returns 1 if the page is ok to release, 0 otherwise. |
Nathan Scott | f51623b | 2006-03-14 13:26:27 +1100 | [diff] [blame] | 1043 | */ |
| 1044 | STATIC int |
Nathan Scott | 238f4c5 | 2006-03-17 17:26:25 +1100 | [diff] [blame] | 1045 | xfs_vm_releasepage( |
Nathan Scott | f51623b | 2006-03-14 13:26:27 +1100 | [diff] [blame] | 1046 | struct page *page, |
| 1047 | gfp_t gfp_mask) |
| 1048 | { |
Christoph Hellwig | 20cb52e | 2010-06-24 09:46:01 +1000 | [diff] [blame] | 1049 | int delalloc, unwritten; |
Nathan Scott | f51623b | 2006-03-14 13:26:27 +1100 | [diff] [blame] | 1050 | |
Lukas Czerner | 34097df | 2013-05-21 23:58:01 -0400 | [diff] [blame] | 1051 | trace_xfs_releasepage(page->mapping->host, page, 0, 0); |
Nathan Scott | 238f4c5 | 2006-03-17 17:26:25 +1100 | [diff] [blame] | 1052 | |
Brian Foster | 99579cc | 2016-07-22 09:50:38 +1000 | [diff] [blame] | 1053 | /* |
| 1054 | * mm accommodates an old ext3 case where clean pages might not have had |
| 1055 | * the dirty bit cleared. Thus, it can send actual dirty pages to |
| 1056 | * ->releasepage() via shrink_active_list(). Conversely, |
| 1057 | * block_invalidatepage() can send pages that are still marked dirty |
| 1058 | * but otherwise have invalidated buffers. |
| 1059 | * |
| 1060 | * We've historically freed buffers on the latter. Instead, quietly |
| 1061 | * filter out all dirty pages to avoid spurious buffer state warnings. |
| 1062 | * This can likely be removed once shrink_active_list() is fixed. |
| 1063 | */ |
| 1064 | if (PageDirty(page)) |
| 1065 | return 0; |
| 1066 | |
Christoph Hellwig | 20cb52e | 2010-06-24 09:46:01 +1000 | [diff] [blame] | 1067 | xfs_count_page_state(page, &delalloc, &unwritten); |
Nathan Scott | f51623b | 2006-03-14 13:26:27 +1100 | [diff] [blame] | 1068 | |
Christoph Hellwig | 448011e | 2014-06-06 16:05:15 +1000 | [diff] [blame] | 1069 | if (WARN_ON_ONCE(delalloc)) |
Christoph Hellwig | 89f3b363 | 2010-06-24 09:45:48 +1000 | [diff] [blame] | 1070 | return 0; |
Christoph Hellwig | 448011e | 2014-06-06 16:05:15 +1000 | [diff] [blame] | 1071 | if (WARN_ON_ONCE(unwritten)) |
Nathan Scott | f51623b | 2006-03-14 13:26:27 +1100 | [diff] [blame] | 1072 | return 0; |
| 1073 | |
Nathan Scott | f51623b | 2006-03-14 13:26:27 +1100 | [diff] [blame] | 1074 | return try_to_free_buffers(page); |
| 1075 | } |
| 1076 | |
Dave Chinner | a719370 | 2015-04-16 21:57:48 +1000 | [diff] [blame] | 1077 | /* |
Christoph Hellwig | 273dda7 | 2016-02-08 14:40:51 +1100 | [diff] [blame] | 1078 | * When we map a DIO buffer, we may need to pass flags to |
| 1079 | * xfs_end_io_direct_write to tell it what kind of write IO we are doing. |
Dave Chinner | 3e12dbb | 2015-11-03 12:27:22 +1100 | [diff] [blame] | 1080 | * |
| 1081 | * Note that for DIO, an IO to the highest supported file block offset (i.e. |
| 1082 | * 2^63 - 1FSB bytes) will result in the offset + count overflowing a signed 64 |
| 1083 | * bit variable. Hence if we see this overflow, we have to assume that the IO is |
| 1084 | * extending the file size. We won't know for sure until IO completion is run |
| 1085 | * and the actual max write offset is communicated to the IO completion |
| 1086 | * routine. |
Dave Chinner | a719370 | 2015-04-16 21:57:48 +1000 | [diff] [blame] | 1087 | */ |
| 1088 | static void |
| 1089 | xfs_map_direct( |
| 1090 | struct inode *inode, |
| 1091 | struct buffer_head *bh_result, |
| 1092 | struct xfs_bmbt_irec *imap, |
Christoph Hellwig | 273dda7 | 2016-02-08 14:40:51 +1100 | [diff] [blame] | 1093 | xfs_off_t offset) |
Dave Chinner | a719370 | 2015-04-16 21:57:48 +1000 | [diff] [blame] | 1094 | { |
Christoph Hellwig | 273dda7 | 2016-02-08 14:40:51 +1100 | [diff] [blame] | 1095 | uintptr_t *flags = (uintptr_t *)&bh_result->b_private; |
Dave Chinner | d5cc2e3 | 2015-04-16 21:59:07 +1000 | [diff] [blame] | 1096 | xfs_off_t size = bh_result->b_size; |
Dave Chinner | d5cc2e3 | 2015-04-16 21:59:07 +1000 | [diff] [blame] | 1097 | |
Christoph Hellwig | 273dda7 | 2016-02-08 14:40:51 +1100 | [diff] [blame] | 1098 | trace_xfs_get_blocks_map_direct(XFS_I(inode), offset, size, |
| 1099 | ISUNWRITTEN(imap) ? XFS_IO_UNWRITTEN : XFS_IO_OVERWRITE, imap); |
Dave Chinner | d5cc2e3 | 2015-04-16 21:59:07 +1000 | [diff] [blame] | 1100 | |
Christoph Hellwig | 273dda7 | 2016-02-08 14:40:51 +1100 | [diff] [blame] | 1101 | if (ISUNWRITTEN(imap)) { |
| 1102 | *flags |= XFS_DIO_FLAG_UNWRITTEN; |
Dave Chinner | a06c277 | 2015-04-16 22:00:00 +1000 | [diff] [blame] | 1103 | set_buffer_defer_completion(bh_result); |
Christoph Hellwig | 273dda7 | 2016-02-08 14:40:51 +1100 | [diff] [blame] | 1104 | } else if (offset + size > i_size_read(inode) || offset + size < 0) { |
| 1105 | *flags |= XFS_DIO_FLAG_APPEND; |
| 1106 | set_buffer_defer_completion(bh_result); |
Dave Chinner | a719370 | 2015-04-16 21:57:48 +1000 | [diff] [blame] | 1107 | } |
| 1108 | } |
| 1109 | |
Dave Chinner | 1fdca9c | 2015-04-16 21:58:21 +1000 | [diff] [blame] | 1110 | /* |
| 1111 | * If this is O_DIRECT or the mpage code calling tell them how large the mapping |
| 1112 | * is, so that we can avoid repeated get_blocks calls. |
| 1113 | * |
| 1114 | * If the mapping spans EOF, then we have to break the mapping up as the mapping |
| 1115 | * for blocks beyond EOF must be marked new so that sub block regions can be |
| 1116 | * correctly zeroed. We can't do this for mappings within EOF unless the mapping |
| 1117 | * was just allocated or is unwritten, otherwise the callers would overwrite |
| 1118 | * existing data with zeros. Hence we have to split the mapping into a range up |
| 1119 | * to and including EOF, and a second mapping for beyond EOF. |
| 1120 | */ |
| 1121 | static void |
| 1122 | xfs_map_trim_size( |
| 1123 | struct inode *inode, |
| 1124 | sector_t iblock, |
| 1125 | struct buffer_head *bh_result, |
| 1126 | struct xfs_bmbt_irec *imap, |
| 1127 | xfs_off_t offset, |
| 1128 | ssize_t size) |
| 1129 | { |
| 1130 | xfs_off_t mapping_size; |
| 1131 | |
| 1132 | mapping_size = imap->br_startoff + imap->br_blockcount - iblock; |
| 1133 | mapping_size <<= inode->i_blkbits; |
| 1134 | |
| 1135 | ASSERT(mapping_size > 0); |
| 1136 | if (mapping_size > size) |
| 1137 | mapping_size = size; |
| 1138 | if (offset < i_size_read(inode) && |
| 1139 | offset + mapping_size >= i_size_read(inode)) { |
| 1140 | /* limit mapping to block that spans EOF */ |
| 1141 | mapping_size = roundup_64(i_size_read(inode) - offset, |
| 1142 | 1 << inode->i_blkbits); |
| 1143 | } |
| 1144 | if (mapping_size > LONG_MAX) |
| 1145 | mapping_size = LONG_MAX; |
| 1146 | |
| 1147 | bh_result->b_size = mapping_size; |
| 1148 | } |
| 1149 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1150 | STATIC int |
Nathan Scott | c253666 | 2006-03-29 10:44:40 +1000 | [diff] [blame] | 1151 | __xfs_get_blocks( |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1152 | struct inode *inode, |
| 1153 | sector_t iblock, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1154 | struct buffer_head *bh_result, |
| 1155 | int create, |
Dave Chinner | 3e12dbb | 2015-11-03 12:27:22 +1100 | [diff] [blame] | 1156 | bool direct, |
| 1157 | bool dax_fault) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1158 | { |
Christoph Hellwig | a206c81 | 2010-12-10 08:42:20 +0000 | [diff] [blame] | 1159 | struct xfs_inode *ip = XFS_I(inode); |
| 1160 | struct xfs_mount *mp = ip->i_mount; |
| 1161 | xfs_fileoff_t offset_fsb, end_fsb; |
| 1162 | int error = 0; |
| 1163 | int lockmode = 0; |
Christoph Hellwig | 207d041 | 2010-04-28 12:28:56 +0000 | [diff] [blame] | 1164 | struct xfs_bmbt_irec imap; |
Christoph Hellwig | a206c81 | 2010-12-10 08:42:20 +0000 | [diff] [blame] | 1165 | int nimaps = 1; |
Nathan Scott | fdc7ed7 | 2005-11-02 15:13:13 +1100 | [diff] [blame] | 1166 | xfs_off_t offset; |
| 1167 | ssize_t size; |
Christoph Hellwig | 207d041 | 2010-04-28 12:28:56 +0000 | [diff] [blame] | 1168 | int new = 0; |
Christoph Hellwig | a206c81 | 2010-12-10 08:42:20 +0000 | [diff] [blame] | 1169 | |
Christoph Hellwig | 6e8a27a | 2016-06-21 09:53:45 +1000 | [diff] [blame] | 1170 | BUG_ON(create && !direct); |
| 1171 | |
Christoph Hellwig | a206c81 | 2010-12-10 08:42:20 +0000 | [diff] [blame] | 1172 | if (XFS_FORCED_SHUTDOWN(mp)) |
Eric Sandeen | b474c7a | 2014-06-22 15:04:54 +1000 | [diff] [blame] | 1173 | return -EIO; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1174 | |
Nathan Scott | fdc7ed7 | 2005-11-02 15:13:13 +1100 | [diff] [blame] | 1175 | offset = (xfs_off_t)iblock << inode->i_blkbits; |
Nathan Scott | c253666 | 2006-03-29 10:44:40 +1000 | [diff] [blame] | 1176 | ASSERT(bh_result->b_size >= (1 << inode->i_blkbits)); |
| 1177 | size = bh_result->b_size; |
Lachlan McIlroy | 364f358 | 2008-09-17 16:50:14 +1000 | [diff] [blame] | 1178 | |
Christoph Hellwig | 6e8a27a | 2016-06-21 09:53:45 +1000 | [diff] [blame] | 1179 | if (!create && offset >= i_size_read(inode)) |
Lachlan McIlroy | 364f358 | 2008-09-17 16:50:14 +1000 | [diff] [blame] | 1180 | return 0; |
| 1181 | |
Dave Chinner | 507630b | 2012-03-27 10:34:50 -0400 | [diff] [blame] | 1182 | /* |
| 1183 | * Direct I/O is usually done on preallocated files, so try getting |
Christoph Hellwig | 6e8a27a | 2016-06-21 09:53:45 +1000 | [diff] [blame] | 1184 | * a block mapping without an exclusive lock first. |
Dave Chinner | 507630b | 2012-03-27 10:34:50 -0400 | [diff] [blame] | 1185 | */ |
Christoph Hellwig | 6e8a27a | 2016-06-21 09:53:45 +1000 | [diff] [blame] | 1186 | lockmode = xfs_ilock_data_map_shared(ip); |
Christoph Hellwig | f2bde9b | 2010-06-24 11:44:35 +1000 | [diff] [blame] | 1187 | |
Dave Chinner | d2c2819 | 2012-06-08 15:44:53 +1000 | [diff] [blame] | 1188 | ASSERT(offset <= mp->m_super->s_maxbytes); |
| 1189 | if (offset + size > mp->m_super->s_maxbytes) |
| 1190 | size = mp->m_super->s_maxbytes - offset; |
Christoph Hellwig | a206c81 | 2010-12-10 08:42:20 +0000 | [diff] [blame] | 1191 | end_fsb = XFS_B_TO_FSB(mp, (xfs_ufsize_t)offset + size); |
| 1192 | offset_fsb = XFS_B_TO_FSBT(mp, offset); |
| 1193 | |
Dave Chinner | 5c8ed20 | 2011-09-18 20:40:45 +0000 | [diff] [blame] | 1194 | error = xfs_bmapi_read(ip, offset_fsb, end_fsb - offset_fsb, |
| 1195 | &imap, &nimaps, XFS_BMAPI_ENTIRE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1196 | if (error) |
Christoph Hellwig | a206c81 | 2010-12-10 08:42:20 +0000 | [diff] [blame] | 1197 | goto out_unlock; |
| 1198 | |
Dave Chinner | 1ca1915 | 2015-11-03 12:37:00 +1100 | [diff] [blame] | 1199 | /* for DAX, we convert unwritten extents directly */ |
Christoph Hellwig | a206c81 | 2010-12-10 08:42:20 +0000 | [diff] [blame] | 1200 | if (create && |
| 1201 | (!nimaps || |
| 1202 | (imap.br_startblock == HOLESTARTBLOCK || |
Dave Chinner | 1ca1915 | 2015-11-03 12:37:00 +1100 | [diff] [blame] | 1203 | imap.br_startblock == DELAYSTARTBLOCK) || |
| 1204 | (IS_DAX(inode) && ISUNWRITTEN(&imap)))) { |
Christoph Hellwig | 6e8a27a | 2016-06-21 09:53:45 +1000 | [diff] [blame] | 1205 | /* |
| 1206 | * xfs_iomap_write_direct() expects the shared lock. It |
| 1207 | * is unlocked on return. |
| 1208 | */ |
| 1209 | if (lockmode == XFS_ILOCK_EXCL) |
| 1210 | xfs_ilock_demote(ip, lockmode); |
Brian Foster | 009c6e8 | 2015-10-12 15:34:20 +1100 | [diff] [blame] | 1211 | |
Christoph Hellwig | 6e8a27a | 2016-06-21 09:53:45 +1000 | [diff] [blame] | 1212 | error = xfs_iomap_write_direct(ip, offset, size, |
| 1213 | &imap, nimaps); |
| 1214 | if (error) |
| 1215 | return error; |
| 1216 | new = 1; |
Dave Chinner | 6b698ed | 2015-06-04 09:18:53 +1000 | [diff] [blame] | 1217 | |
Dave Chinner | d5cc2e3 | 2015-04-16 21:59:07 +1000 | [diff] [blame] | 1218 | trace_xfs_get_blocks_alloc(ip, offset, size, |
| 1219 | ISUNWRITTEN(&imap) ? XFS_IO_UNWRITTEN |
| 1220 | : XFS_IO_DELALLOC, &imap); |
Christoph Hellwig | a206c81 | 2010-12-10 08:42:20 +0000 | [diff] [blame] | 1221 | } else if (nimaps) { |
Dave Chinner | d5cc2e3 | 2015-04-16 21:59:07 +1000 | [diff] [blame] | 1222 | trace_xfs_get_blocks_found(ip, offset, size, |
| 1223 | ISUNWRITTEN(&imap) ? XFS_IO_UNWRITTEN |
| 1224 | : XFS_IO_OVERWRITE, &imap); |
Dave Chinner | 507630b | 2012-03-27 10:34:50 -0400 | [diff] [blame] | 1225 | xfs_iunlock(ip, lockmode); |
Christoph Hellwig | a206c81 | 2010-12-10 08:42:20 +0000 | [diff] [blame] | 1226 | } else { |
| 1227 | trace_xfs_get_blocks_notfound(ip, offset, size); |
| 1228 | goto out_unlock; |
| 1229 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1230 | |
Dave Chinner | 1ca1915 | 2015-11-03 12:37:00 +1100 | [diff] [blame] | 1231 | if (IS_DAX(inode) && create) { |
| 1232 | ASSERT(!ISUNWRITTEN(&imap)); |
| 1233 | /* zeroing is not needed at a higher layer */ |
| 1234 | new = 0; |
| 1235 | } |
| 1236 | |
Dave Chinner | 1fdca9c | 2015-04-16 21:58:21 +1000 | [diff] [blame] | 1237 | /* trim mapping down to size requested */ |
Christoph Hellwig | 6e8a27a | 2016-06-21 09:53:45 +1000 | [diff] [blame] | 1238 | xfs_map_trim_size(inode, iblock, bh_result, &imap, offset, size); |
Dave Chinner | 1fdca9c | 2015-04-16 21:58:21 +1000 | [diff] [blame] | 1239 | |
Dave Chinner | a719370 | 2015-04-16 21:57:48 +1000 | [diff] [blame] | 1240 | /* |
| 1241 | * For unwritten extents do not report a disk address in the buffered |
| 1242 | * read case (treat as if we're reading into a hole). |
| 1243 | */ |
Christoph Hellwig | 207d041 | 2010-04-28 12:28:56 +0000 | [diff] [blame] | 1244 | if (imap.br_startblock != HOLESTARTBLOCK && |
Dave Chinner | a719370 | 2015-04-16 21:57:48 +1000 | [diff] [blame] | 1245 | imap.br_startblock != DELAYSTARTBLOCK && |
| 1246 | (create || !ISUNWRITTEN(&imap))) { |
| 1247 | xfs_map_buffer(inode, bh_result, &imap, offset); |
| 1248 | if (ISUNWRITTEN(&imap)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1249 | set_buffer_unwritten(bh_result); |
Dave Chinner | a719370 | 2015-04-16 21:57:48 +1000 | [diff] [blame] | 1250 | /* direct IO needs special help */ |
Christoph Hellwig | 6e8a27a | 2016-06-21 09:53:45 +1000 | [diff] [blame] | 1251 | if (create) { |
Christoph Hellwig | 273dda7 | 2016-02-08 14:40:51 +1100 | [diff] [blame] | 1252 | if (dax_fault) |
| 1253 | ASSERT(!ISUNWRITTEN(&imap)); |
| 1254 | else |
| 1255 | xfs_map_direct(inode, bh_result, &imap, offset); |
| 1256 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1257 | } |
| 1258 | |
Nathan Scott | c253666 | 2006-03-29 10:44:40 +1000 | [diff] [blame] | 1259 | /* |
| 1260 | * If this is a realtime file, data may be on a different device. |
| 1261 | * to that pointed to from the buffer_head b_bdev currently. |
| 1262 | */ |
Christoph Hellwig | 046f168 | 2010-04-28 12:28:52 +0000 | [diff] [blame] | 1263 | bh_result->b_bdev = xfs_find_bdev_for_inode(inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1264 | |
Nathan Scott | c253666 | 2006-03-29 10:44:40 +1000 | [diff] [blame] | 1265 | /* |
David Chinner | 549054a | 2007-02-10 18:36:35 +1100 | [diff] [blame] | 1266 | * If we previously allocated a block out beyond eof and we are now |
| 1267 | * coming back to use it then we will need to flag it as new even if it |
| 1268 | * has a disk address. |
| 1269 | * |
| 1270 | * With sub-block writes into unwritten extents we also need to mark |
| 1271 | * the buffer as new so that the unwritten parts of the buffer gets |
| 1272 | * correctly zeroed. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1273 | */ |
| 1274 | if (create && |
| 1275 | ((!buffer_mapped(bh_result) && !buffer_uptodate(bh_result)) || |
David Chinner | 549054a | 2007-02-10 18:36:35 +1100 | [diff] [blame] | 1276 | (offset >= i_size_read(inode)) || |
Christoph Hellwig | 207d041 | 2010-04-28 12:28:56 +0000 | [diff] [blame] | 1277 | (new || ISUNWRITTEN(&imap)))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1278 | set_buffer_new(bh_result); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1279 | |
Christoph Hellwig | 6e8a27a | 2016-06-21 09:53:45 +1000 | [diff] [blame] | 1280 | BUG_ON(direct && imap.br_startblock == DELAYSTARTBLOCK); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1281 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1282 | return 0; |
Christoph Hellwig | a206c81 | 2010-12-10 08:42:20 +0000 | [diff] [blame] | 1283 | |
| 1284 | out_unlock: |
| 1285 | xfs_iunlock(ip, lockmode); |
Dave Chinner | 2451337 | 2014-06-25 14:58:08 +1000 | [diff] [blame] | 1286 | return error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1287 | } |
| 1288 | |
| 1289 | int |
Nathan Scott | c253666 | 2006-03-29 10:44:40 +1000 | [diff] [blame] | 1290 | xfs_get_blocks( |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1291 | struct inode *inode, |
| 1292 | sector_t iblock, |
| 1293 | struct buffer_head *bh_result, |
| 1294 | int create) |
| 1295 | { |
Dave Chinner | 3e12dbb | 2015-11-03 12:27:22 +1100 | [diff] [blame] | 1296 | return __xfs_get_blocks(inode, iblock, bh_result, create, false, false); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1297 | } |
| 1298 | |
Dave Chinner | 6b698ed | 2015-06-04 09:18:53 +1000 | [diff] [blame] | 1299 | int |
Nathan Scott | e4c573b | 2006-03-14 13:54:26 +1100 | [diff] [blame] | 1300 | xfs_get_blocks_direct( |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1301 | struct inode *inode, |
| 1302 | sector_t iblock, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1303 | struct buffer_head *bh_result, |
| 1304 | int create) |
| 1305 | { |
Dave Chinner | 3e12dbb | 2015-11-03 12:27:22 +1100 | [diff] [blame] | 1306 | return __xfs_get_blocks(inode, iblock, bh_result, create, true, false); |
| 1307 | } |
| 1308 | |
| 1309 | int |
| 1310 | xfs_get_blocks_dax_fault( |
| 1311 | struct inode *inode, |
| 1312 | sector_t iblock, |
| 1313 | struct buffer_head *bh_result, |
| 1314 | int create) |
| 1315 | { |
| 1316 | return __xfs_get_blocks(inode, iblock, bh_result, create, true, true); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1317 | } |
| 1318 | |
Christoph Hellwig | 273dda7 | 2016-02-08 14:40:51 +1100 | [diff] [blame] | 1319 | /* |
| 1320 | * Complete a direct I/O write request. |
| 1321 | * |
| 1322 | * xfs_map_direct passes us some flags in the private data to tell us what to |
| 1323 | * do. If no flags are set, then the write IO is an overwrite wholly within |
| 1324 | * the existing allocated file size and so there is nothing for us to do. |
| 1325 | * |
| 1326 | * Note that in this case the completion can be called in interrupt context, |
| 1327 | * whereas if we have flags set we will always be called in task context |
| 1328 | * (i.e. from a workqueue). |
| 1329 | */ |
Christoph Hellwig | fa8d972 | 2016-07-20 11:38:01 +1000 | [diff] [blame] | 1330 | int |
Christoph Hellwig | 273dda7 | 2016-02-08 14:40:51 +1100 | [diff] [blame] | 1331 | xfs_end_io_direct_write( |
| 1332 | struct kiocb *iocb, |
Christoph Hellwig | 209fb87 | 2010-07-18 21:17:11 +0000 | [diff] [blame] | 1333 | loff_t offset, |
Christoph Hellwig | 273dda7 | 2016-02-08 14:40:51 +1100 | [diff] [blame] | 1334 | ssize_t size, |
| 1335 | void *private) |
Christoph Hellwig | f097386 | 2005-09-05 08:22:52 +1000 | [diff] [blame] | 1336 | { |
Christoph Hellwig | 273dda7 | 2016-02-08 14:40:51 +1100 | [diff] [blame] | 1337 | struct inode *inode = file_inode(iocb->ki_filp); |
| 1338 | struct xfs_inode *ip = XFS_I(inode); |
| 1339 | struct xfs_mount *mp = ip->i_mount; |
| 1340 | uintptr_t flags = (uintptr_t)private; |
| 1341 | int error = 0; |
Christoph Hellwig | 2ba6623 | 2015-02-02 10:02:09 +1100 | [diff] [blame] | 1342 | |
Christoph Hellwig | 273dda7 | 2016-02-08 14:40:51 +1100 | [diff] [blame] | 1343 | trace_xfs_end_io_direct_write(ip, offset, size); |
| 1344 | |
| 1345 | if (XFS_FORCED_SHUTDOWN(mp)) |
| 1346 | return -EIO; |
| 1347 | |
| 1348 | if (size <= 0) |
| 1349 | return size; |
Christoph Hellwig | f097386 | 2005-09-05 08:22:52 +1000 | [diff] [blame] | 1350 | |
| 1351 | /* |
Christoph Hellwig | 273dda7 | 2016-02-08 14:40:51 +1100 | [diff] [blame] | 1352 | * The flags tell us whether we are doing unwritten extent conversions |
Dave Chinner | 6dfa1b6 | 2015-04-16 21:59:34 +1000 | [diff] [blame] | 1353 | * or an append transaction that updates the on-disk file size. These |
| 1354 | * cases are the only cases where we should *potentially* be needing |
Dave Chinner | a06c277 | 2015-04-16 22:00:00 +1000 | [diff] [blame] | 1355 | * to update the VFS inode size. |
Christoph Hellwig | 273dda7 | 2016-02-08 14:40:51 +1100 | [diff] [blame] | 1356 | */ |
| 1357 | if (flags == 0) { |
| 1358 | ASSERT(offset + size <= i_size_read(inode)); |
| 1359 | return 0; |
| 1360 | } |
| 1361 | |
| 1362 | /* |
Dave Chinner | 6dfa1b6 | 2015-04-16 21:59:34 +1000 | [diff] [blame] | 1363 | * We need to update the in-core inode size here so that we don't end up |
Dave Chinner | a06c277 | 2015-04-16 22:00:00 +1000 | [diff] [blame] | 1364 | * with the on-disk inode size being outside the in-core inode size. We |
| 1365 | * have no other method of updating EOF for AIO, so always do it here |
| 1366 | * if necessary. |
Dave Chinner | b9d5984 | 2015-04-16 22:03:07 +1000 | [diff] [blame] | 1367 | * |
| 1368 | * We need to lock the test/set EOF update as we can be racing with |
| 1369 | * other IO completions here to update the EOF. Failing to serialise |
| 1370 | * here can result in EOF moving backwards and Bad Things Happen when |
| 1371 | * that occurs. |
Christoph Hellwig | 2813d68 | 2011-12-18 20:00:12 +0000 | [diff] [blame] | 1372 | */ |
Christoph Hellwig | 273dda7 | 2016-02-08 14:40:51 +1100 | [diff] [blame] | 1373 | spin_lock(&ip->i_flags_lock); |
Christoph Hellwig | 2ba6623 | 2015-02-02 10:02:09 +1100 | [diff] [blame] | 1374 | if (offset + size > i_size_read(inode)) |
| 1375 | i_size_write(inode, offset + size); |
Christoph Hellwig | 273dda7 | 2016-02-08 14:40:51 +1100 | [diff] [blame] | 1376 | spin_unlock(&ip->i_flags_lock); |
Christoph Hellwig | 2813d68 | 2011-12-18 20:00:12 +0000 | [diff] [blame] | 1377 | |
Christoph Hellwig | 273dda7 | 2016-02-08 14:40:51 +1100 | [diff] [blame] | 1378 | if (flags & XFS_DIO_FLAG_UNWRITTEN) { |
| 1379 | trace_xfs_end_io_direct_write_unwritten(ip, offset, size); |
Christoph Hellwig | 40e2e97 | 2010-07-18 21:17:09 +0000 | [diff] [blame] | 1380 | |
Christoph Hellwig | 273dda7 | 2016-02-08 14:40:51 +1100 | [diff] [blame] | 1381 | error = xfs_iomap_write_unwritten(ip, offset, size); |
| 1382 | } else if (flags & XFS_DIO_FLAG_APPEND) { |
| 1383 | struct xfs_trans *tp; |
Christoph Hellwig | f097386 | 2005-09-05 08:22:52 +1000 | [diff] [blame] | 1384 | |
Christoph Hellwig | 273dda7 | 2016-02-08 14:40:51 +1100 | [diff] [blame] | 1385 | trace_xfs_end_io_direct_write_append(ip, offset, size); |
Dave Chinner | 6b698ed | 2015-06-04 09:18:53 +1000 | [diff] [blame] | 1386 | |
Christoph Hellwig | 253f491 | 2016-04-06 09:19:55 +1000 | [diff] [blame] | 1387 | error = xfs_trans_alloc(mp, &M_RES(mp)->tr_fsyncts, 0, 0, 0, |
| 1388 | &tp); |
| 1389 | if (!error) |
| 1390 | error = xfs_setfilesize(ip, tp, offset, size); |
Dave Chinner | 6b698ed | 2015-06-04 09:18:53 +1000 | [diff] [blame] | 1391 | } |
| 1392 | |
Christoph Hellwig | 273dda7 | 2016-02-08 14:40:51 +1100 | [diff] [blame] | 1393 | return error; |
Dave Chinner | 6e1ba0b | 2015-06-04 09:19:15 +1000 | [diff] [blame] | 1394 | } |
| 1395 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1396 | STATIC ssize_t |
Nathan Scott | e4c573b | 2006-03-14 13:54:26 +1100 | [diff] [blame] | 1397 | xfs_vm_direct_IO( |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1398 | struct kiocb *iocb, |
Christoph Hellwig | c8b8e32 | 2016-04-07 08:51:58 -0700 | [diff] [blame] | 1399 | struct iov_iter *iter) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1400 | { |
Jie Liu | 58e5985 | 2013-07-16 13:11:16 +0800 | [diff] [blame] | 1401 | /* |
Christoph Hellwig | fa8d972 | 2016-07-20 11:38:01 +1000 | [diff] [blame] | 1402 | * We just need the method present so that open/fcntl allow direct I/O. |
Jie Liu | 58e5985 | 2013-07-16 13:11:16 +0800 | [diff] [blame] | 1403 | */ |
Christoph Hellwig | fa8d972 | 2016-07-20 11:38:01 +1000 | [diff] [blame] | 1404 | return -EINVAL; |
Nathan Scott | f51623b | 2006-03-14 13:26:27 +1100 | [diff] [blame] | 1405 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1406 | |
| 1407 | STATIC sector_t |
Nathan Scott | e4c573b | 2006-03-14 13:54:26 +1100 | [diff] [blame] | 1408 | xfs_vm_bmap( |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1409 | struct address_space *mapping, |
| 1410 | sector_t block) |
| 1411 | { |
| 1412 | struct inode *inode = (struct inode *)mapping->host; |
Christoph Hellwig | 739bfb2 | 2007-08-29 10:58:01 +1000 | [diff] [blame] | 1413 | struct xfs_inode *ip = XFS_I(inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1414 | |
Christoph Hellwig | cca28fb | 2010-06-24 11:57:09 +1000 | [diff] [blame] | 1415 | trace_xfs_vm_bmap(XFS_I(inode)); |
Christoph Hellwig | 126468b | 2008-03-06 13:44:57 +1100 | [diff] [blame] | 1416 | xfs_ilock(ip, XFS_IOLOCK_SHARED); |
Dave Chinner | 4bc1ea6 | 2012-11-12 22:53:56 +1100 | [diff] [blame] | 1417 | filemap_write_and_wait(mapping); |
Christoph Hellwig | 126468b | 2008-03-06 13:44:57 +1100 | [diff] [blame] | 1418 | xfs_iunlock(ip, XFS_IOLOCK_SHARED); |
Nathan Scott | c253666 | 2006-03-29 10:44:40 +1000 | [diff] [blame] | 1419 | return generic_block_bmap(mapping, block, xfs_get_blocks); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1420 | } |
| 1421 | |
| 1422 | STATIC int |
Nathan Scott | e4c573b | 2006-03-14 13:54:26 +1100 | [diff] [blame] | 1423 | xfs_vm_readpage( |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1424 | struct file *unused, |
| 1425 | struct page *page) |
| 1426 | { |
Dave Chinner | 121e213 | 2016-01-08 11:28:35 +1100 | [diff] [blame] | 1427 | trace_xfs_vm_readpage(page->mapping->host, 1); |
Nathan Scott | c253666 | 2006-03-29 10:44:40 +1000 | [diff] [blame] | 1428 | return mpage_readpage(page, xfs_get_blocks); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1429 | } |
| 1430 | |
| 1431 | STATIC int |
Nathan Scott | e4c573b | 2006-03-14 13:54:26 +1100 | [diff] [blame] | 1432 | xfs_vm_readpages( |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1433 | struct file *unused, |
| 1434 | struct address_space *mapping, |
| 1435 | struct list_head *pages, |
| 1436 | unsigned nr_pages) |
| 1437 | { |
Dave Chinner | 121e213 | 2016-01-08 11:28:35 +1100 | [diff] [blame] | 1438 | trace_xfs_vm_readpages(mapping->host, nr_pages); |
Nathan Scott | c253666 | 2006-03-29 10:44:40 +1000 | [diff] [blame] | 1439 | return mpage_readpages(mapping, pages, nr_pages, xfs_get_blocks); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1440 | } |
| 1441 | |
Dave Chinner | 22e757a | 2014-09-02 12:12:51 +1000 | [diff] [blame] | 1442 | /* |
| 1443 | * This is basically a copy of __set_page_dirty_buffers() with one |
| 1444 | * small tweak: buffers beyond EOF do not get marked dirty. If we mark them |
| 1445 | * dirty, we'll never be able to clean them because we don't write buffers |
| 1446 | * beyond EOF, and that means we can't invalidate pages that span EOF |
| 1447 | * that have been marked dirty. Further, the dirty state can leak into |
| 1448 | * the file interior if the file is extended, resulting in all sorts of |
| 1449 | * bad things happening as the state does not match the underlying data. |
| 1450 | * |
| 1451 | * XXX: this really indicates that bufferheads in XFS need to die. Warts like |
| 1452 | * this only exist because of bufferheads and how the generic code manages them. |
| 1453 | */ |
| 1454 | STATIC int |
| 1455 | xfs_vm_set_page_dirty( |
| 1456 | struct page *page) |
| 1457 | { |
| 1458 | struct address_space *mapping = page->mapping; |
| 1459 | struct inode *inode = mapping->host; |
| 1460 | loff_t end_offset; |
| 1461 | loff_t offset; |
| 1462 | int newly_dirty; |
| 1463 | |
| 1464 | if (unlikely(!mapping)) |
| 1465 | return !TestSetPageDirty(page); |
| 1466 | |
| 1467 | end_offset = i_size_read(inode); |
| 1468 | offset = page_offset(page); |
| 1469 | |
| 1470 | spin_lock(&mapping->private_lock); |
| 1471 | if (page_has_buffers(page)) { |
| 1472 | struct buffer_head *head = page_buffers(page); |
| 1473 | struct buffer_head *bh = head; |
| 1474 | |
| 1475 | do { |
| 1476 | if (offset < end_offset) |
| 1477 | set_buffer_dirty(bh); |
| 1478 | bh = bh->b_this_page; |
| 1479 | offset += 1 << inode->i_blkbits; |
| 1480 | } while (bh != head); |
| 1481 | } |
Greg Thelen | c4843a7 | 2015-05-22 17:13:16 -0400 | [diff] [blame] | 1482 | /* |
Johannes Weiner | 81f8c3a | 2016-03-15 14:57:04 -0700 | [diff] [blame] | 1483 | * Lock out page->mem_cgroup migration to keep PageDirty |
| 1484 | * synchronized with per-memcg dirty page counters. |
Greg Thelen | c4843a7 | 2015-05-22 17:13:16 -0400 | [diff] [blame] | 1485 | */ |
Johannes Weiner | 62cccb8 | 2016-03-15 14:57:22 -0700 | [diff] [blame] | 1486 | lock_page_memcg(page); |
Dave Chinner | 22e757a | 2014-09-02 12:12:51 +1000 | [diff] [blame] | 1487 | newly_dirty = !TestSetPageDirty(page); |
| 1488 | spin_unlock(&mapping->private_lock); |
| 1489 | |
| 1490 | if (newly_dirty) { |
| 1491 | /* sigh - __set_page_dirty() is static, so copy it here, too */ |
| 1492 | unsigned long flags; |
| 1493 | |
| 1494 | spin_lock_irqsave(&mapping->tree_lock, flags); |
| 1495 | if (page->mapping) { /* Race with truncate? */ |
| 1496 | WARN_ON_ONCE(!PageUptodate(page)); |
Johannes Weiner | 62cccb8 | 2016-03-15 14:57:22 -0700 | [diff] [blame] | 1497 | account_page_dirtied(page, mapping); |
Dave Chinner | 22e757a | 2014-09-02 12:12:51 +1000 | [diff] [blame] | 1498 | radix_tree_tag_set(&mapping->page_tree, |
| 1499 | page_index(page), PAGECACHE_TAG_DIRTY); |
| 1500 | } |
| 1501 | spin_unlock_irqrestore(&mapping->tree_lock, flags); |
Dave Chinner | 22e757a | 2014-09-02 12:12:51 +1000 | [diff] [blame] | 1502 | } |
Johannes Weiner | 62cccb8 | 2016-03-15 14:57:22 -0700 | [diff] [blame] | 1503 | unlock_page_memcg(page); |
Greg Thelen | c4843a7 | 2015-05-22 17:13:16 -0400 | [diff] [blame] | 1504 | if (newly_dirty) |
| 1505 | __mark_inode_dirty(mapping->host, I_DIRTY_PAGES); |
Dave Chinner | 22e757a | 2014-09-02 12:12:51 +1000 | [diff] [blame] | 1506 | return newly_dirty; |
| 1507 | } |
| 1508 | |
Christoph Hellwig | f5e54d6 | 2006-06-28 04:26:44 -0700 | [diff] [blame] | 1509 | const struct address_space_operations xfs_address_space_operations = { |
Nathan Scott | e4c573b | 2006-03-14 13:54:26 +1100 | [diff] [blame] | 1510 | .readpage = xfs_vm_readpage, |
| 1511 | .readpages = xfs_vm_readpages, |
| 1512 | .writepage = xfs_vm_writepage, |
Nathan Scott | 7d4fb40 | 2006-06-09 15:27:16 +1000 | [diff] [blame] | 1513 | .writepages = xfs_vm_writepages, |
Dave Chinner | 22e757a | 2014-09-02 12:12:51 +1000 | [diff] [blame] | 1514 | .set_page_dirty = xfs_vm_set_page_dirty, |
Nathan Scott | 238f4c5 | 2006-03-17 17:26:25 +1100 | [diff] [blame] | 1515 | .releasepage = xfs_vm_releasepage, |
| 1516 | .invalidatepage = xfs_vm_invalidatepage, |
Nathan Scott | e4c573b | 2006-03-14 13:54:26 +1100 | [diff] [blame] | 1517 | .bmap = xfs_vm_bmap, |
| 1518 | .direct_IO = xfs_vm_direct_IO, |
Christoph Lameter | e965f96 | 2006-02-01 03:05:41 -0800 | [diff] [blame] | 1519 | .migratepage = buffer_migrate_page, |
Hisashi Hifumi | bddaafa | 2009-03-29 09:53:38 +0200 | [diff] [blame] | 1520 | .is_partially_uptodate = block_is_partially_uptodate, |
Andi Kleen | aa261f5 | 2009-09-16 11:50:16 +0200 | [diff] [blame] | 1521 | .error_remove_page = generic_error_remove_page, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1522 | }; |