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" |
Nathan Scott | a844f45 | 2005-11-02 14:38:42 +1100 | [diff] [blame] | 19 | #include "xfs_bit.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 20 | #include "xfs_log.h" |
Nathan Scott | a844f45 | 2005-11-02 14:38:42 +1100 | [diff] [blame] | 21 | #include "xfs_inum.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 22 | #include "xfs_sb.h" |
Nathan Scott | a844f45 | 2005-11-02 14:38:42 +1100 | [diff] [blame] | 23 | #include "xfs_ag.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | #include "xfs_dir2.h" |
| 25 | #include "xfs_trans.h" |
| 26 | #include "xfs_dmapi.h" |
| 27 | #include "xfs_mount.h" |
| 28 | #include "xfs_bmap_btree.h" |
| 29 | #include "xfs_alloc_btree.h" |
| 30 | #include "xfs_ialloc_btree.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 | #include "xfs_dir2_sf.h" |
Nathan Scott | a844f45 | 2005-11-02 14:38:42 +1100 | [diff] [blame] | 32 | #include "xfs_attr_sf.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 33 | #include "xfs_dinode.h" |
| 34 | #include "xfs_inode.h" |
Nathan Scott | a844f45 | 2005-11-02 14:38:42 +1100 | [diff] [blame] | 35 | #include "xfs_alloc.h" |
| 36 | #include "xfs_btree.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 | #include "xfs_error.h" |
| 38 | #include "xfs_rw.h" |
| 39 | #include "xfs_iomap.h" |
Christoph Hellwig | 739bfb2 | 2007-08-29 10:58:01 +1000 | [diff] [blame] | 40 | #include "xfs_vnodeops.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 41 | #include <linux/mpage.h> |
Christoph Hellwig | 10ce444 | 2006-01-11 20:48:14 +1100 | [diff] [blame] | 42 | #include <linux/pagevec.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 | #include <linux/writeback.h> |
| 44 | |
Christoph Hellwig | 25e41b3 | 2008-12-03 12:20:39 +0100 | [diff] [blame] | 45 | |
| 46 | /* |
| 47 | * Prime number of hash buckets since address is used as the key. |
| 48 | */ |
| 49 | #define NVSYNC 37 |
| 50 | #define to_ioend_wq(v) (&xfs_ioend_wq[((unsigned long)v) % NVSYNC]) |
| 51 | static wait_queue_head_t xfs_ioend_wq[NVSYNC]; |
| 52 | |
| 53 | void __init |
| 54 | xfs_ioend_init(void) |
| 55 | { |
| 56 | int i; |
| 57 | |
| 58 | for (i = 0; i < NVSYNC; i++) |
| 59 | init_waitqueue_head(&xfs_ioend_wq[i]); |
| 60 | } |
| 61 | |
| 62 | void |
| 63 | xfs_ioend_wait( |
| 64 | xfs_inode_t *ip) |
| 65 | { |
| 66 | wait_queue_head_t *wq = to_ioend_wq(ip); |
| 67 | |
| 68 | wait_event(*wq, (atomic_read(&ip->i_iocount) == 0)); |
| 69 | } |
| 70 | |
| 71 | STATIC void |
| 72 | xfs_ioend_wake( |
| 73 | xfs_inode_t *ip) |
| 74 | { |
| 75 | if (atomic_dec_and_test(&ip->i_iocount)) |
| 76 | wake_up(to_ioend_wq(ip)); |
| 77 | } |
| 78 | |
Nathan Scott | f51623b | 2006-03-14 13:26:27 +1100 | [diff] [blame] | 79 | STATIC void |
| 80 | xfs_count_page_state( |
| 81 | struct page *page, |
| 82 | int *delalloc, |
| 83 | int *unmapped, |
| 84 | int *unwritten) |
| 85 | { |
| 86 | struct buffer_head *bh, *head; |
| 87 | |
| 88 | *delalloc = *unmapped = *unwritten = 0; |
| 89 | |
| 90 | bh = head = page_buffers(page); |
| 91 | do { |
| 92 | if (buffer_uptodate(bh) && !buffer_mapped(bh)) |
| 93 | (*unmapped) = 1; |
Nathan Scott | f51623b | 2006-03-14 13:26:27 +1100 | [diff] [blame] | 94 | else if (buffer_unwritten(bh)) |
| 95 | (*unwritten) = 1; |
| 96 | else if (buffer_delay(bh)) |
| 97 | (*delalloc) = 1; |
| 98 | } while ((bh = bh->b_this_page) != head); |
| 99 | } |
| 100 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 101 | #if defined(XFS_RW_TRACE) |
| 102 | void |
| 103 | xfs_page_trace( |
| 104 | int tag, |
| 105 | struct inode *inode, |
| 106 | struct page *page, |
Nathan Scott | ed9d88f | 2006-09-28 10:56:43 +1000 | [diff] [blame] | 107 | unsigned long pgoff) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 108 | { |
| 109 | xfs_inode_t *ip; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 110 | loff_t isize = i_size_read(inode); |
Christoph Hellwig | f6d6d4f | 2006-01-11 15:40:13 +1100 | [diff] [blame] | 111 | loff_t offset = page_offset(page); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 112 | int delalloc = -1, unmapped = -1, unwritten = -1; |
| 113 | |
| 114 | if (page_has_buffers(page)) |
| 115 | xfs_count_page_state(page, &delalloc, &unmapped, &unwritten); |
| 116 | |
David Chinner | e6064d3 | 2008-08-13 16:01:45 +1000 | [diff] [blame] | 117 | ip = XFS_I(inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 118 | if (!ip->i_rwtrace) |
| 119 | return; |
| 120 | |
| 121 | ktrace_enter(ip->i_rwtrace, |
| 122 | (void *)((unsigned long)tag), |
| 123 | (void *)ip, |
| 124 | (void *)inode, |
| 125 | (void *)page, |
Nathan Scott | ed9d88f | 2006-09-28 10:56:43 +1000 | [diff] [blame] | 126 | (void *)pgoff, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 127 | (void *)((unsigned long)((ip->i_d.di_size >> 32) & 0xffffffff)), |
| 128 | (void *)((unsigned long)(ip->i_d.di_size & 0xffffffff)), |
| 129 | (void *)((unsigned long)((isize >> 32) & 0xffffffff)), |
| 130 | (void *)((unsigned long)(isize & 0xffffffff)), |
| 131 | (void *)((unsigned long)((offset >> 32) & 0xffffffff)), |
| 132 | (void *)((unsigned long)(offset & 0xffffffff)), |
| 133 | (void *)((unsigned long)delalloc), |
| 134 | (void *)((unsigned long)unmapped), |
| 135 | (void *)((unsigned long)unwritten), |
Yingping Lu | f1fdc84 | 2006-03-22 12:44:15 +1100 | [diff] [blame] | 136 | (void *)((unsigned long)current_pid()), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 137 | (void *)NULL); |
| 138 | } |
| 139 | #else |
Nathan Scott | ed9d88f | 2006-09-28 10:56:43 +1000 | [diff] [blame] | 140 | #define xfs_page_trace(tag, inode, page, pgoff) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 141 | #endif |
| 142 | |
Christoph Hellwig | 6214ed4 | 2007-09-14 15:23:17 +1000 | [diff] [blame] | 143 | STATIC struct block_device * |
| 144 | xfs_find_bdev_for_inode( |
| 145 | struct xfs_inode *ip) |
| 146 | { |
| 147 | struct xfs_mount *mp = ip->i_mount; |
| 148 | |
Eric Sandeen | 71ddabb | 2007-11-23 16:29:42 +1100 | [diff] [blame] | 149 | if (XFS_IS_REALTIME_INODE(ip)) |
Christoph Hellwig | 6214ed4 | 2007-09-14 15:23:17 +1000 | [diff] [blame] | 150 | return mp->m_rtdev_targp->bt_bdev; |
| 151 | else |
| 152 | return mp->m_ddev_targp->bt_bdev; |
| 153 | } |
| 154 | |
Christoph Hellwig | 0829c36 | 2005-09-02 16:58:49 +1000 | [diff] [blame] | 155 | /* |
Christoph Hellwig | f6d6d4f | 2006-01-11 15:40:13 +1100 | [diff] [blame] | 156 | * We're now finished for good with this ioend structure. |
| 157 | * Update the page state via the associated buffer_heads, |
| 158 | * release holds on the inode and bio, and finally free |
| 159 | * up memory. Do not use the ioend after this. |
| 160 | */ |
Christoph Hellwig | 0829c36 | 2005-09-02 16:58:49 +1000 | [diff] [blame] | 161 | STATIC void |
| 162 | xfs_destroy_ioend( |
| 163 | xfs_ioend_t *ioend) |
| 164 | { |
Christoph Hellwig | f6d6d4f | 2006-01-11 15:40:13 +1100 | [diff] [blame] | 165 | struct buffer_head *bh, *next; |
Christoph Hellwig | 583fa58 | 2008-12-03 12:20:38 +0100 | [diff] [blame] | 166 | struct xfs_inode *ip = XFS_I(ioend->io_inode); |
Christoph Hellwig | f6d6d4f | 2006-01-11 15:40:13 +1100 | [diff] [blame] | 167 | |
| 168 | for (bh = ioend->io_buffer_head; bh; bh = next) { |
| 169 | next = bh->b_private; |
Nathan Scott | 7d04a33 | 2006-06-09 14:58:38 +1000 | [diff] [blame] | 170 | bh->b_end_io(bh, !ioend->io_error); |
Christoph Hellwig | f6d6d4f | 2006-01-11 15:40:13 +1100 | [diff] [blame] | 171 | } |
Christoph Hellwig | 583fa58 | 2008-12-03 12:20:38 +0100 | [diff] [blame] | 172 | |
| 173 | /* |
| 174 | * Volume managers supporting multiple paths can send back ENODEV |
| 175 | * when the final path disappears. In this case continuing to fill |
| 176 | * the page cache with dirty data which cannot be written out is |
| 177 | * evil, so prevent that. |
| 178 | */ |
| 179 | if (unlikely(ioend->io_error == -ENODEV)) { |
| 180 | xfs_do_force_shutdown(ip->i_mount, SHUTDOWN_DEVICE_REQ, |
| 181 | __FILE__, __LINE__); |
Christoph Hellwig | b677c21 | 2007-08-29 11:46:28 +1000 | [diff] [blame] | 182 | } |
Christoph Hellwig | 583fa58 | 2008-12-03 12:20:38 +0100 | [diff] [blame] | 183 | |
Christoph Hellwig | 25e41b3 | 2008-12-03 12:20:39 +0100 | [diff] [blame] | 184 | xfs_ioend_wake(ip); |
Christoph Hellwig | 0829c36 | 2005-09-02 16:58:49 +1000 | [diff] [blame] | 185 | mempool_free(ioend, xfs_ioend_pool); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 186 | } |
| 187 | |
| 188 | /* |
Dave Chinner | 932640e | 2009-10-06 20:29:29 +0000 | [diff] [blame] | 189 | * If the end of the current ioend is beyond the current EOF, |
| 190 | * return the new EOF value, otherwise zero. |
| 191 | */ |
| 192 | STATIC xfs_fsize_t |
| 193 | xfs_ioend_new_eof( |
| 194 | xfs_ioend_t *ioend) |
| 195 | { |
| 196 | xfs_inode_t *ip = XFS_I(ioend->io_inode); |
| 197 | xfs_fsize_t isize; |
| 198 | xfs_fsize_t bsize; |
| 199 | |
| 200 | bsize = ioend->io_offset + ioend->io_size; |
| 201 | isize = MAX(ip->i_size, ip->i_new_size); |
| 202 | isize = MIN(isize, bsize); |
| 203 | return isize > ip->i_d.di_size ? isize : 0; |
| 204 | } |
| 205 | |
| 206 | /* |
Lachlan McIlroy | ba87ea6 | 2007-05-08 13:49:46 +1000 | [diff] [blame] | 207 | * Update on-disk file size now that data has been written to disk. |
| 208 | * The current in-memory file size is i_size. If a write is beyond |
Christoph Hellwig | 613d704 | 2007-10-11 17:44:08 +1000 | [diff] [blame] | 209 | * eof i_new_size will be the intended file size until i_size is |
Lachlan McIlroy | ba87ea6 | 2007-05-08 13:49:46 +1000 | [diff] [blame] | 210 | * updated. If this write does not extend all the way to the valid |
| 211 | * file size then restrict this update to the end of the write. |
| 212 | */ |
Dave Chinner | 932640e | 2009-10-06 20:29:29 +0000 | [diff] [blame] | 213 | |
Lachlan McIlroy | ba87ea6 | 2007-05-08 13:49:46 +1000 | [diff] [blame] | 214 | STATIC void |
| 215 | xfs_setfilesize( |
| 216 | xfs_ioend_t *ioend) |
| 217 | { |
Christoph Hellwig | b677c21 | 2007-08-29 11:46:28 +1000 | [diff] [blame] | 218 | xfs_inode_t *ip = XFS_I(ioend->io_inode); |
Lachlan McIlroy | ba87ea6 | 2007-05-08 13:49:46 +1000 | [diff] [blame] | 219 | xfs_fsize_t isize; |
Lachlan McIlroy | ba87ea6 | 2007-05-08 13:49:46 +1000 | [diff] [blame] | 220 | |
Lachlan McIlroy | ba87ea6 | 2007-05-08 13:49:46 +1000 | [diff] [blame] | 221 | ASSERT((ip->i_d.di_mode & S_IFMT) == S_IFREG); |
| 222 | ASSERT(ioend->io_type != IOMAP_READ); |
| 223 | |
| 224 | if (unlikely(ioend->io_error)) |
| 225 | return; |
| 226 | |
Lachlan McIlroy | ba87ea6 | 2007-05-08 13:49:46 +1000 | [diff] [blame] | 227 | xfs_ilock(ip, XFS_ILOCK_EXCL); |
Dave Chinner | 932640e | 2009-10-06 20:29:29 +0000 | [diff] [blame] | 228 | isize = xfs_ioend_new_eof(ioend); |
| 229 | if (isize) { |
Lachlan McIlroy | ba87ea6 | 2007-05-08 13:49:46 +1000 | [diff] [blame] | 230 | ip->i_d.di_size = isize; |
David Chinner | 94b97e3 | 2008-10-30 17:21:30 +1100 | [diff] [blame] | 231 | xfs_mark_inode_dirty_sync(ip); |
Lachlan McIlroy | ba87ea6 | 2007-05-08 13:49:46 +1000 | [diff] [blame] | 232 | } |
| 233 | |
| 234 | xfs_iunlock(ip, XFS_ILOCK_EXCL); |
| 235 | } |
| 236 | |
| 237 | /* |
Christoph Hellwig | 5ec4fab | 2009-10-30 09:11:47 +0000 | [diff] [blame^] | 238 | * IO write completion. |
Christoph Hellwig | f6d6d4f | 2006-01-11 15:40:13 +1100 | [diff] [blame] | 239 | */ |
| 240 | STATIC void |
Christoph Hellwig | 5ec4fab | 2009-10-30 09:11:47 +0000 | [diff] [blame^] | 241 | xfs_end_io( |
David Howells | c402895 | 2006-11-22 14:57:56 +0000 | [diff] [blame] | 242 | struct work_struct *work) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 243 | { |
David Howells | c402895 | 2006-11-22 14:57:56 +0000 | [diff] [blame] | 244 | xfs_ioend_t *ioend = |
| 245 | container_of(work, xfs_ioend_t, io_work); |
Christoph Hellwig | 7642861 | 2007-09-14 15:23:31 +1000 | [diff] [blame] | 246 | struct xfs_inode *ip = XFS_I(ioend->io_inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 247 | |
Christoph Hellwig | 5ec4fab | 2009-10-30 09:11:47 +0000 | [diff] [blame^] | 248 | /* |
| 249 | * For unwritten extents we need to issue transactions to convert a |
| 250 | * range to normal written extens after the data I/O has finished. |
| 251 | */ |
| 252 | if (ioend->io_type == IOMAP_UNWRITTEN && |
| 253 | likely(!ioend->io_error && !XFS_FORCED_SHUTDOWN(ip->i_mount))) { |
| 254 | int error; |
| 255 | |
| 256 | error = xfs_iomap_write_unwritten(ip, ioend->io_offset, |
| 257 | ioend->io_size); |
| 258 | if (error) |
| 259 | ioend->io_error = error; |
Lachlan McIlroy | ba87ea6 | 2007-05-08 13:49:46 +1000 | [diff] [blame] | 260 | } |
Lachlan McIlroy | ba87ea6 | 2007-05-08 13:49:46 +1000 | [diff] [blame] | 261 | |
Christoph Hellwig | 5ec4fab | 2009-10-30 09:11:47 +0000 | [diff] [blame^] | 262 | /* |
| 263 | * We might have to update the on-disk file size after extending |
| 264 | * writes. |
| 265 | */ |
| 266 | if (ioend->io_type != IOMAP_READ) |
| 267 | xfs_setfilesize(ioend); |
Christoph Hellwig | 0829c36 | 2005-09-02 16:58:49 +1000 | [diff] [blame] | 268 | xfs_destroy_ioend(ioend); |
| 269 | } |
| 270 | |
| 271 | /* |
Dave Chinner | c626d17 | 2009-04-06 18:42:11 +0200 | [diff] [blame] | 272 | * Schedule IO completion handling on a xfsdatad if this was |
| 273 | * the final hold on this ioend. If we are asked to wait, |
| 274 | * flush the workqueue. |
| 275 | */ |
| 276 | STATIC void |
| 277 | xfs_finish_ioend( |
| 278 | xfs_ioend_t *ioend, |
| 279 | int wait) |
| 280 | { |
| 281 | if (atomic_dec_and_test(&ioend->io_remaining)) { |
Christoph Hellwig | 5ec4fab | 2009-10-30 09:11:47 +0000 | [diff] [blame^] | 282 | struct workqueue_struct *wq; |
Dave Chinner | c626d17 | 2009-04-06 18:42:11 +0200 | [diff] [blame] | 283 | |
Christoph Hellwig | 5ec4fab | 2009-10-30 09:11:47 +0000 | [diff] [blame^] | 284 | wq = (ioend->io_type == IOMAP_UNWRITTEN) ? |
| 285 | xfsconvertd_workqueue : xfsdatad_workqueue; |
Dave Chinner | c626d17 | 2009-04-06 18:42:11 +0200 | [diff] [blame] | 286 | queue_work(wq, &ioend->io_work); |
| 287 | if (wait) |
| 288 | flush_workqueue(wq); |
| 289 | } |
| 290 | } |
| 291 | |
| 292 | /* |
Christoph Hellwig | 0829c36 | 2005-09-02 16:58:49 +1000 | [diff] [blame] | 293 | * Allocate and initialise an IO completion structure. |
| 294 | * We need to track unwritten extent write completion here initially. |
| 295 | * We'll need to extend this for updating the ondisk inode size later |
| 296 | * (vs. incore size). |
| 297 | */ |
| 298 | STATIC xfs_ioend_t * |
| 299 | xfs_alloc_ioend( |
Christoph Hellwig | f6d6d4f | 2006-01-11 15:40:13 +1100 | [diff] [blame] | 300 | struct inode *inode, |
| 301 | unsigned int type) |
Christoph Hellwig | 0829c36 | 2005-09-02 16:58:49 +1000 | [diff] [blame] | 302 | { |
| 303 | xfs_ioend_t *ioend; |
| 304 | |
| 305 | ioend = mempool_alloc(xfs_ioend_pool, GFP_NOFS); |
| 306 | |
| 307 | /* |
| 308 | * Set the count to 1 initially, which will prevent an I/O |
| 309 | * completion callback from happening before we have started |
| 310 | * all the I/O from calling the completion routine too early. |
| 311 | */ |
| 312 | atomic_set(&ioend->io_remaining, 1); |
Nathan Scott | 7d04a33 | 2006-06-09 14:58:38 +1000 | [diff] [blame] | 313 | ioend->io_error = 0; |
Christoph Hellwig | f6d6d4f | 2006-01-11 15:40:13 +1100 | [diff] [blame] | 314 | ioend->io_list = NULL; |
| 315 | ioend->io_type = type; |
Christoph Hellwig | b677c21 | 2007-08-29 11:46:28 +1000 | [diff] [blame] | 316 | ioend->io_inode = inode; |
Christoph Hellwig | c1a073b | 2005-09-05 08:23:35 +1000 | [diff] [blame] | 317 | ioend->io_buffer_head = NULL; |
Christoph Hellwig | f6d6d4f | 2006-01-11 15:40:13 +1100 | [diff] [blame] | 318 | ioend->io_buffer_tail = NULL; |
Christoph Hellwig | b677c21 | 2007-08-29 11:46:28 +1000 | [diff] [blame] | 319 | atomic_inc(&XFS_I(ioend->io_inode)->i_iocount); |
Christoph Hellwig | 0829c36 | 2005-09-02 16:58:49 +1000 | [diff] [blame] | 320 | ioend->io_offset = 0; |
| 321 | ioend->io_size = 0; |
| 322 | |
Christoph Hellwig | 5ec4fab | 2009-10-30 09:11:47 +0000 | [diff] [blame^] | 323 | INIT_WORK(&ioend->io_work, xfs_end_io); |
Christoph Hellwig | 0829c36 | 2005-09-02 16:58:49 +1000 | [diff] [blame] | 324 | return ioend; |
| 325 | } |
| 326 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 327 | STATIC int |
| 328 | xfs_map_blocks( |
| 329 | struct inode *inode, |
| 330 | loff_t offset, |
| 331 | ssize_t count, |
| 332 | xfs_iomap_t *mapp, |
| 333 | int flags) |
| 334 | { |
Christoph Hellwig | 6bd16ff | 2008-12-03 12:20:32 +0100 | [diff] [blame] | 335 | int nmaps = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 336 | |
Christoph Hellwig | 6bd16ff | 2008-12-03 12:20:32 +0100 | [diff] [blame] | 337 | return -xfs_iomap(XFS_I(inode), offset, count, flags, mapp, &nmaps); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 338 | } |
| 339 | |
David Chinner | 7989cb8 | 2007-02-10 18:34:56 +1100 | [diff] [blame] | 340 | STATIC_INLINE int |
Christoph Hellwig | 1defeac | 2006-01-11 20:48:33 +1100 | [diff] [blame] | 341 | xfs_iomap_valid( |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 342 | xfs_iomap_t *iomapp, |
Christoph Hellwig | 1defeac | 2006-01-11 20:48:33 +1100 | [diff] [blame] | 343 | loff_t offset) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 344 | { |
Christoph Hellwig | 1defeac | 2006-01-11 20:48:33 +1100 | [diff] [blame] | 345 | return offset >= iomapp->iomap_offset && |
| 346 | offset < iomapp->iomap_offset + iomapp->iomap_bsize; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 347 | } |
| 348 | |
Christoph Hellwig | f6d6d4f | 2006-01-11 15:40:13 +1100 | [diff] [blame] | 349 | /* |
| 350 | * BIO completion handler for buffered IO. |
| 351 | */ |
Al Viro | 782e3b3 | 2007-10-12 07:17:47 +0100 | [diff] [blame] | 352 | STATIC void |
Christoph Hellwig | f6d6d4f | 2006-01-11 15:40:13 +1100 | [diff] [blame] | 353 | xfs_end_bio( |
| 354 | struct bio *bio, |
Christoph Hellwig | f6d6d4f | 2006-01-11 15:40:13 +1100 | [diff] [blame] | 355 | int error) |
| 356 | { |
| 357 | xfs_ioend_t *ioend = bio->bi_private; |
| 358 | |
Christoph Hellwig | f6d6d4f | 2006-01-11 15:40:13 +1100 | [diff] [blame] | 359 | ASSERT(atomic_read(&bio->bi_cnt) >= 1); |
Nathan Scott | 7d04a33 | 2006-06-09 14:58:38 +1000 | [diff] [blame] | 360 | ioend->io_error = test_bit(BIO_UPTODATE, &bio->bi_flags) ? 0 : error; |
Christoph Hellwig | f6d6d4f | 2006-01-11 15:40:13 +1100 | [diff] [blame] | 361 | |
| 362 | /* Toss bio and pass work off to an xfsdatad thread */ |
Christoph Hellwig | f6d6d4f | 2006-01-11 15:40:13 +1100 | [diff] [blame] | 363 | bio->bi_private = NULL; |
| 364 | bio->bi_end_io = NULL; |
Christoph Hellwig | f6d6d4f | 2006-01-11 15:40:13 +1100 | [diff] [blame] | 365 | bio_put(bio); |
Nathan Scott | 7d04a33 | 2006-06-09 14:58:38 +1000 | [diff] [blame] | 366 | |
David Chinner | e927af9 | 2007-06-05 16:24:36 +1000 | [diff] [blame] | 367 | xfs_finish_ioend(ioend, 0); |
Christoph Hellwig | f6d6d4f | 2006-01-11 15:40:13 +1100 | [diff] [blame] | 368 | } |
| 369 | |
| 370 | STATIC void |
| 371 | xfs_submit_ioend_bio( |
Christoph Hellwig | 06342cf | 2009-10-30 09:09:15 +0000 | [diff] [blame] | 372 | struct writeback_control *wbc, |
| 373 | xfs_ioend_t *ioend, |
| 374 | struct bio *bio) |
Christoph Hellwig | f6d6d4f | 2006-01-11 15:40:13 +1100 | [diff] [blame] | 375 | { |
| 376 | atomic_inc(&ioend->io_remaining); |
Christoph Hellwig | f6d6d4f | 2006-01-11 15:40:13 +1100 | [diff] [blame] | 377 | bio->bi_private = ioend; |
| 378 | bio->bi_end_io = xfs_end_bio; |
| 379 | |
Dave Chinner | 932640e | 2009-10-06 20:29:29 +0000 | [diff] [blame] | 380 | /* |
| 381 | * If the I/O is beyond EOF we mark the inode dirty immediately |
| 382 | * but don't update the inode size until I/O completion. |
| 383 | */ |
| 384 | if (xfs_ioend_new_eof(ioend)) |
| 385 | xfs_mark_inode_dirty_sync(XFS_I(ioend->io_inode)); |
| 386 | |
Christoph Hellwig | 06342cf | 2009-10-30 09:09:15 +0000 | [diff] [blame] | 387 | submit_bio(wbc->sync_mode == WB_SYNC_ALL ? |
| 388 | WRITE_SYNC_PLUG : WRITE, bio); |
Christoph Hellwig | f6d6d4f | 2006-01-11 15:40:13 +1100 | [diff] [blame] | 389 | ASSERT(!bio_flagged(bio, BIO_EOPNOTSUPP)); |
| 390 | bio_put(bio); |
| 391 | } |
| 392 | |
| 393 | STATIC struct bio * |
| 394 | xfs_alloc_ioend_bio( |
| 395 | struct buffer_head *bh) |
| 396 | { |
| 397 | struct bio *bio; |
| 398 | int nvecs = bio_get_nr_vecs(bh->b_bdev); |
| 399 | |
| 400 | do { |
| 401 | bio = bio_alloc(GFP_NOIO, nvecs); |
| 402 | nvecs >>= 1; |
| 403 | } while (!bio); |
| 404 | |
| 405 | ASSERT(bio->bi_private == NULL); |
| 406 | bio->bi_sector = bh->b_blocknr * (bh->b_size >> 9); |
| 407 | bio->bi_bdev = bh->b_bdev; |
| 408 | bio_get(bio); |
| 409 | return bio; |
| 410 | } |
| 411 | |
| 412 | STATIC void |
| 413 | xfs_start_buffer_writeback( |
| 414 | struct buffer_head *bh) |
| 415 | { |
| 416 | ASSERT(buffer_mapped(bh)); |
| 417 | ASSERT(buffer_locked(bh)); |
| 418 | ASSERT(!buffer_delay(bh)); |
| 419 | ASSERT(!buffer_unwritten(bh)); |
| 420 | |
| 421 | mark_buffer_async_write(bh); |
| 422 | set_buffer_uptodate(bh); |
| 423 | clear_buffer_dirty(bh); |
| 424 | } |
| 425 | |
| 426 | STATIC void |
| 427 | xfs_start_page_writeback( |
| 428 | struct page *page, |
Christoph Hellwig | f6d6d4f | 2006-01-11 15:40:13 +1100 | [diff] [blame] | 429 | int clear_dirty, |
| 430 | int buffers) |
| 431 | { |
| 432 | ASSERT(PageLocked(page)); |
| 433 | ASSERT(!PageWriteback(page)); |
Christoph Hellwig | f6d6d4f | 2006-01-11 15:40:13 +1100 | [diff] [blame] | 434 | if (clear_dirty) |
David Chinner | 9213202 | 2006-12-21 10:24:01 +1100 | [diff] [blame] | 435 | clear_page_dirty_for_io(page); |
| 436 | set_page_writeback(page); |
Christoph Hellwig | f6d6d4f | 2006-01-11 15:40:13 +1100 | [diff] [blame] | 437 | unlock_page(page); |
Fengguang Wu | 1f7decf | 2007-10-16 23:30:42 -0700 | [diff] [blame] | 438 | /* If no buffers on the page are to be written, finish it here */ |
| 439 | if (!buffers) |
Christoph Hellwig | f6d6d4f | 2006-01-11 15:40:13 +1100 | [diff] [blame] | 440 | end_page_writeback(page); |
Christoph Hellwig | f6d6d4f | 2006-01-11 15:40:13 +1100 | [diff] [blame] | 441 | } |
| 442 | |
| 443 | static inline int bio_add_buffer(struct bio *bio, struct buffer_head *bh) |
| 444 | { |
| 445 | return bio_add_page(bio, bh->b_page, bh->b_size, bh_offset(bh)); |
| 446 | } |
| 447 | |
| 448 | /* |
David Chinner | d88992f | 2006-01-18 13:38:12 +1100 | [diff] [blame] | 449 | * Submit all of the bios for all of the ioends we have saved up, covering the |
| 450 | * initial writepage page and also any probed pages. |
| 451 | * |
| 452 | * Because we may have multiple ioends spanning a page, we need to start |
| 453 | * writeback on all the buffers before we submit them for I/O. If we mark the |
| 454 | * buffers as we got, then we can end up with a page that only has buffers |
| 455 | * marked async write and I/O complete on can occur before we mark the other |
| 456 | * buffers async write. |
| 457 | * |
| 458 | * The end result of this is that we trip a bug in end_page_writeback() because |
| 459 | * we call it twice for the one page as the code in end_buffer_async_write() |
| 460 | * assumes that all buffers on the page are started at the same time. |
| 461 | * |
| 462 | * The fix is two passes across the ioend list - one to start writeback on the |
Nathan Scott | c41564b | 2006-03-29 08:55:14 +1000 | [diff] [blame] | 463 | * buffer_heads, and then submit them for I/O on the second pass. |
Christoph Hellwig | f6d6d4f | 2006-01-11 15:40:13 +1100 | [diff] [blame] | 464 | */ |
| 465 | STATIC void |
| 466 | xfs_submit_ioend( |
Christoph Hellwig | 06342cf | 2009-10-30 09:09:15 +0000 | [diff] [blame] | 467 | struct writeback_control *wbc, |
Christoph Hellwig | f6d6d4f | 2006-01-11 15:40:13 +1100 | [diff] [blame] | 468 | xfs_ioend_t *ioend) |
| 469 | { |
David Chinner | d88992f | 2006-01-18 13:38:12 +1100 | [diff] [blame] | 470 | xfs_ioend_t *head = ioend; |
Christoph Hellwig | f6d6d4f | 2006-01-11 15:40:13 +1100 | [diff] [blame] | 471 | xfs_ioend_t *next; |
| 472 | struct buffer_head *bh; |
| 473 | struct bio *bio; |
| 474 | sector_t lastblock = 0; |
| 475 | |
David Chinner | d88992f | 2006-01-18 13:38:12 +1100 | [diff] [blame] | 476 | /* Pass 1 - start writeback */ |
| 477 | do { |
| 478 | next = ioend->io_list; |
| 479 | for (bh = ioend->io_buffer_head; bh; bh = bh->b_private) { |
| 480 | xfs_start_buffer_writeback(bh); |
| 481 | } |
| 482 | } while ((ioend = next) != NULL); |
| 483 | |
| 484 | /* Pass 2 - submit I/O */ |
| 485 | ioend = head; |
Christoph Hellwig | f6d6d4f | 2006-01-11 15:40:13 +1100 | [diff] [blame] | 486 | do { |
| 487 | next = ioend->io_list; |
| 488 | bio = NULL; |
| 489 | |
| 490 | for (bh = ioend->io_buffer_head; bh; bh = bh->b_private) { |
Christoph Hellwig | f6d6d4f | 2006-01-11 15:40:13 +1100 | [diff] [blame] | 491 | |
| 492 | if (!bio) { |
| 493 | retry: |
| 494 | bio = xfs_alloc_ioend_bio(bh); |
| 495 | } else if (bh->b_blocknr != lastblock + 1) { |
Christoph Hellwig | 06342cf | 2009-10-30 09:09:15 +0000 | [diff] [blame] | 496 | xfs_submit_ioend_bio(wbc, ioend, bio); |
Christoph Hellwig | f6d6d4f | 2006-01-11 15:40:13 +1100 | [diff] [blame] | 497 | goto retry; |
| 498 | } |
| 499 | |
| 500 | if (bio_add_buffer(bio, bh) != bh->b_size) { |
Christoph Hellwig | 06342cf | 2009-10-30 09:09:15 +0000 | [diff] [blame] | 501 | xfs_submit_ioend_bio(wbc, ioend, bio); |
Christoph Hellwig | f6d6d4f | 2006-01-11 15:40:13 +1100 | [diff] [blame] | 502 | goto retry; |
| 503 | } |
| 504 | |
| 505 | lastblock = bh->b_blocknr; |
| 506 | } |
| 507 | if (bio) |
Christoph Hellwig | 06342cf | 2009-10-30 09:09:15 +0000 | [diff] [blame] | 508 | xfs_submit_ioend_bio(wbc, ioend, bio); |
David Chinner | e927af9 | 2007-06-05 16:24:36 +1000 | [diff] [blame] | 509 | xfs_finish_ioend(ioend, 0); |
Christoph Hellwig | f6d6d4f | 2006-01-11 15:40:13 +1100 | [diff] [blame] | 510 | } while ((ioend = next) != NULL); |
| 511 | } |
| 512 | |
| 513 | /* |
| 514 | * Cancel submission of all buffer_heads so far in this endio. |
| 515 | * Toss the endio too. Only ever called for the initial page |
| 516 | * in a writepage request, so only ever one page. |
| 517 | */ |
| 518 | STATIC void |
| 519 | xfs_cancel_ioend( |
| 520 | xfs_ioend_t *ioend) |
| 521 | { |
| 522 | xfs_ioend_t *next; |
| 523 | struct buffer_head *bh, *next_bh; |
| 524 | |
| 525 | do { |
| 526 | next = ioend->io_list; |
| 527 | bh = ioend->io_buffer_head; |
| 528 | do { |
| 529 | next_bh = bh->b_private; |
| 530 | clear_buffer_async_write(bh); |
| 531 | unlock_buffer(bh); |
| 532 | } while ((bh = next_bh) != NULL); |
| 533 | |
Christoph Hellwig | 25e41b3 | 2008-12-03 12:20:39 +0100 | [diff] [blame] | 534 | xfs_ioend_wake(XFS_I(ioend->io_inode)); |
Christoph Hellwig | f6d6d4f | 2006-01-11 15:40:13 +1100 | [diff] [blame] | 535 | mempool_free(ioend, xfs_ioend_pool); |
| 536 | } while ((ioend = next) != NULL); |
| 537 | } |
| 538 | |
| 539 | /* |
| 540 | * Test to see if we've been building up a completion structure for |
| 541 | * earlier buffers -- if so, we try to append to this ioend if we |
| 542 | * can, otherwise we finish off any current ioend and start another. |
| 543 | * Return true if we've finished the given ioend. |
| 544 | */ |
| 545 | STATIC void |
| 546 | xfs_add_to_ioend( |
| 547 | struct inode *inode, |
| 548 | struct buffer_head *bh, |
Christoph Hellwig | 7336cea | 2006-01-11 20:49:16 +1100 | [diff] [blame] | 549 | xfs_off_t offset, |
Christoph Hellwig | f6d6d4f | 2006-01-11 15:40:13 +1100 | [diff] [blame] | 550 | unsigned int type, |
| 551 | xfs_ioend_t **result, |
| 552 | int need_ioend) |
| 553 | { |
| 554 | xfs_ioend_t *ioend = *result; |
| 555 | |
| 556 | if (!ioend || need_ioend || type != ioend->io_type) { |
| 557 | xfs_ioend_t *previous = *result; |
Christoph Hellwig | f6d6d4f | 2006-01-11 15:40:13 +1100 | [diff] [blame] | 558 | |
Christoph Hellwig | f6d6d4f | 2006-01-11 15:40:13 +1100 | [diff] [blame] | 559 | ioend = xfs_alloc_ioend(inode, type); |
| 560 | ioend->io_offset = offset; |
| 561 | ioend->io_buffer_head = bh; |
| 562 | ioend->io_buffer_tail = bh; |
| 563 | if (previous) |
| 564 | previous->io_list = ioend; |
| 565 | *result = ioend; |
| 566 | } else { |
| 567 | ioend->io_buffer_tail->b_private = bh; |
| 568 | ioend->io_buffer_tail = bh; |
| 569 | } |
| 570 | |
| 571 | bh->b_private = NULL; |
| 572 | ioend->io_size += bh->b_size; |
| 573 | } |
| 574 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 575 | STATIC void |
Nathan Scott | 87cbc49 | 2006-03-14 13:26:43 +1100 | [diff] [blame] | 576 | xfs_map_buffer( |
| 577 | struct buffer_head *bh, |
| 578 | xfs_iomap_t *mp, |
| 579 | xfs_off_t offset, |
| 580 | uint block_bits) |
| 581 | { |
| 582 | sector_t bn; |
| 583 | |
| 584 | ASSERT(mp->iomap_bn != IOMAP_DADDR_NULL); |
| 585 | |
| 586 | bn = (mp->iomap_bn >> (block_bits - BBSHIFT)) + |
| 587 | ((offset - mp->iomap_offset) >> block_bits); |
| 588 | |
| 589 | ASSERT(bn || (mp->iomap_flags & IOMAP_REALTIME)); |
| 590 | |
| 591 | bh->b_blocknr = bn; |
| 592 | set_buffer_mapped(bh); |
| 593 | } |
| 594 | |
| 595 | STATIC void |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 596 | xfs_map_at_offset( |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 597 | struct buffer_head *bh, |
Christoph Hellwig | 1defeac | 2006-01-11 20:48:33 +1100 | [diff] [blame] | 598 | loff_t offset, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 599 | int block_bits, |
Christoph Hellwig | 1defeac | 2006-01-11 20:48:33 +1100 | [diff] [blame] | 600 | xfs_iomap_t *iomapp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 601 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 602 | ASSERT(!(iomapp->iomap_flags & IOMAP_HOLE)); |
| 603 | ASSERT(!(iomapp->iomap_flags & IOMAP_DELAY)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 604 | |
| 605 | lock_buffer(bh); |
Nathan Scott | 87cbc49 | 2006-03-14 13:26:43 +1100 | [diff] [blame] | 606 | xfs_map_buffer(bh, iomapp, offset, block_bits); |
Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 607 | bh->b_bdev = iomapp->iomap_target->bt_bdev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 608 | set_buffer_mapped(bh); |
| 609 | clear_buffer_delay(bh); |
Christoph Hellwig | f6d6d4f | 2006-01-11 15:40:13 +1100 | [diff] [blame] | 610 | clear_buffer_unwritten(bh); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 611 | } |
| 612 | |
| 613 | /* |
Christoph Hellwig | 6c4fe19 | 2006-01-11 20:49:28 +1100 | [diff] [blame] | 614 | * Look for a page at index that is suitable for clustering. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 615 | */ |
| 616 | STATIC unsigned int |
Christoph Hellwig | 6c4fe19 | 2006-01-11 20:49:28 +1100 | [diff] [blame] | 617 | xfs_probe_page( |
Christoph Hellwig | 10ce444 | 2006-01-11 20:48:14 +1100 | [diff] [blame] | 618 | struct page *page, |
Christoph Hellwig | 6c4fe19 | 2006-01-11 20:49:28 +1100 | [diff] [blame] | 619 | unsigned int pg_offset, |
| 620 | int mapped) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 621 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 622 | int ret = 0; |
| 623 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 624 | if (PageWriteback(page)) |
Christoph Hellwig | 10ce444 | 2006-01-11 20:48:14 +1100 | [diff] [blame] | 625 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 626 | |
| 627 | if (page->mapping && PageDirty(page)) { |
| 628 | if (page_has_buffers(page)) { |
| 629 | struct buffer_head *bh, *head; |
| 630 | |
| 631 | bh = head = page_buffers(page); |
| 632 | do { |
Christoph Hellwig | 6c4fe19 | 2006-01-11 20:49:28 +1100 | [diff] [blame] | 633 | if (!buffer_uptodate(bh)) |
| 634 | break; |
| 635 | if (mapped != buffer_mapped(bh)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 636 | break; |
| 637 | ret += bh->b_size; |
| 638 | if (ret >= pg_offset) |
| 639 | break; |
| 640 | } while ((bh = bh->b_this_page) != head); |
| 641 | } else |
Christoph Hellwig | 6c4fe19 | 2006-01-11 20:49:28 +1100 | [diff] [blame] | 642 | ret = mapped ? 0 : PAGE_CACHE_SIZE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 643 | } |
| 644 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 645 | return ret; |
| 646 | } |
| 647 | |
Christoph Hellwig | f6d6d4f | 2006-01-11 15:40:13 +1100 | [diff] [blame] | 648 | STATIC size_t |
Christoph Hellwig | 6c4fe19 | 2006-01-11 20:49:28 +1100 | [diff] [blame] | 649 | xfs_probe_cluster( |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 650 | struct inode *inode, |
| 651 | struct page *startpage, |
| 652 | struct buffer_head *bh, |
Christoph Hellwig | 6c4fe19 | 2006-01-11 20:49:28 +1100 | [diff] [blame] | 653 | struct buffer_head *head, |
| 654 | int mapped) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 655 | { |
Christoph Hellwig | 10ce444 | 2006-01-11 20:48:14 +1100 | [diff] [blame] | 656 | struct pagevec pvec; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 657 | pgoff_t tindex, tlast, tloff; |
Christoph Hellwig | 10ce444 | 2006-01-11 20:48:14 +1100 | [diff] [blame] | 658 | size_t total = 0; |
| 659 | int done = 0, i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 660 | |
| 661 | /* First sum forwards in this page */ |
| 662 | do { |
Eric Sandeen | 2353e8e | 2006-02-28 12:30:30 +1100 | [diff] [blame] | 663 | if (!buffer_uptodate(bh) || (mapped != buffer_mapped(bh))) |
Christoph Hellwig | 10ce444 | 2006-01-11 20:48:14 +1100 | [diff] [blame] | 664 | return total; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 665 | total += bh->b_size; |
| 666 | } while ((bh = bh->b_this_page) != head); |
| 667 | |
Christoph Hellwig | 10ce444 | 2006-01-11 20:48:14 +1100 | [diff] [blame] | 668 | /* if we reached the end of the page, sum forwards in following pages */ |
| 669 | tlast = i_size_read(inode) >> PAGE_CACHE_SHIFT; |
| 670 | tindex = startpage->index + 1; |
| 671 | |
| 672 | /* Prune this back to avoid pathological behavior */ |
| 673 | tloff = min(tlast, startpage->index + 64); |
| 674 | |
| 675 | pagevec_init(&pvec, 0); |
| 676 | while (!done && tindex <= tloff) { |
| 677 | unsigned len = min_t(pgoff_t, PAGEVEC_SIZE, tlast - tindex + 1); |
| 678 | |
| 679 | if (!pagevec_lookup(&pvec, inode->i_mapping, tindex, len)) |
| 680 | break; |
| 681 | |
| 682 | for (i = 0; i < pagevec_count(&pvec); i++) { |
| 683 | struct page *page = pvec.pages[i]; |
Christoph Hellwig | 265c1fa | 2007-08-16 15:38:19 +1000 | [diff] [blame] | 684 | size_t pg_offset, pg_len = 0; |
Christoph Hellwig | 10ce444 | 2006-01-11 20:48:14 +1100 | [diff] [blame] | 685 | |
| 686 | if (tindex == tlast) { |
| 687 | pg_offset = |
| 688 | i_size_read(inode) & (PAGE_CACHE_SIZE - 1); |
Christoph Hellwig | 1defeac | 2006-01-11 20:48:33 +1100 | [diff] [blame] | 689 | if (!pg_offset) { |
| 690 | done = 1; |
Christoph Hellwig | 10ce444 | 2006-01-11 20:48:14 +1100 | [diff] [blame] | 691 | break; |
Christoph Hellwig | 1defeac | 2006-01-11 20:48:33 +1100 | [diff] [blame] | 692 | } |
Christoph Hellwig | 10ce444 | 2006-01-11 20:48:14 +1100 | [diff] [blame] | 693 | } else |
| 694 | pg_offset = PAGE_CACHE_SIZE; |
| 695 | |
Nick Piggin | 529ae9a | 2008-08-02 12:01:03 +0200 | [diff] [blame] | 696 | if (page->index == tindex && trylock_page(page)) { |
Christoph Hellwig | 265c1fa | 2007-08-16 15:38:19 +1000 | [diff] [blame] | 697 | pg_len = xfs_probe_page(page, pg_offset, mapped); |
Christoph Hellwig | 10ce444 | 2006-01-11 20:48:14 +1100 | [diff] [blame] | 698 | unlock_page(page); |
| 699 | } |
| 700 | |
Christoph Hellwig | 265c1fa | 2007-08-16 15:38:19 +1000 | [diff] [blame] | 701 | if (!pg_len) { |
Christoph Hellwig | 10ce444 | 2006-01-11 20:48:14 +1100 | [diff] [blame] | 702 | done = 1; |
| 703 | break; |
| 704 | } |
| 705 | |
Christoph Hellwig | 265c1fa | 2007-08-16 15:38:19 +1000 | [diff] [blame] | 706 | total += pg_len; |
Christoph Hellwig | 1defeac | 2006-01-11 20:48:33 +1100 | [diff] [blame] | 707 | tindex++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 708 | } |
Christoph Hellwig | 10ce444 | 2006-01-11 20:48:14 +1100 | [diff] [blame] | 709 | |
| 710 | pagevec_release(&pvec); |
| 711 | cond_resched(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 712 | } |
Christoph Hellwig | 10ce444 | 2006-01-11 20:48:14 +1100 | [diff] [blame] | 713 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 714 | return total; |
| 715 | } |
| 716 | |
| 717 | /* |
Christoph Hellwig | 10ce444 | 2006-01-11 20:48:14 +1100 | [diff] [blame] | 718 | * Test if a given page is suitable for writing as part of an unwritten |
| 719 | * or delayed allocate extent. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 720 | */ |
Christoph Hellwig | 10ce444 | 2006-01-11 20:48:14 +1100 | [diff] [blame] | 721 | STATIC int |
| 722 | xfs_is_delayed_page( |
| 723 | struct page *page, |
Christoph Hellwig | f6d6d4f | 2006-01-11 15:40:13 +1100 | [diff] [blame] | 724 | unsigned int type) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 725 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 726 | if (PageWriteback(page)) |
Christoph Hellwig | 10ce444 | 2006-01-11 20:48:14 +1100 | [diff] [blame] | 727 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 728 | |
| 729 | if (page->mapping && page_has_buffers(page)) { |
| 730 | struct buffer_head *bh, *head; |
| 731 | int acceptable = 0; |
| 732 | |
| 733 | bh = head = page_buffers(page); |
| 734 | do { |
Christoph Hellwig | f6d6d4f | 2006-01-11 15:40:13 +1100 | [diff] [blame] | 735 | if (buffer_unwritten(bh)) |
| 736 | acceptable = (type == IOMAP_UNWRITTEN); |
| 737 | else if (buffer_delay(bh)) |
| 738 | acceptable = (type == IOMAP_DELAY); |
David Chinner | 2ddee84 | 2006-03-22 12:47:40 +1100 | [diff] [blame] | 739 | else if (buffer_dirty(bh) && buffer_mapped(bh)) |
David Chinner | df3c724 | 2007-05-24 15:27:03 +1000 | [diff] [blame] | 740 | acceptable = (type == IOMAP_NEW); |
Christoph Hellwig | f6d6d4f | 2006-01-11 15:40:13 +1100 | [diff] [blame] | 741 | else |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 742 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 743 | } while ((bh = bh->b_this_page) != head); |
| 744 | |
| 745 | if (acceptable) |
Christoph Hellwig | 10ce444 | 2006-01-11 20:48:14 +1100 | [diff] [blame] | 746 | return 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 747 | } |
| 748 | |
Christoph Hellwig | 10ce444 | 2006-01-11 20:48:14 +1100 | [diff] [blame] | 749 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 750 | } |
| 751 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 752 | /* |
| 753 | * Allocate & map buffers for page given the extent map. Write it out. |
| 754 | * except for the original page of a writepage, this is called on |
| 755 | * delalloc/unwritten pages only, for the original page it is possible |
| 756 | * that the page has no mapping at all. |
| 757 | */ |
Christoph Hellwig | f6d6d4f | 2006-01-11 15:40:13 +1100 | [diff] [blame] | 758 | STATIC int |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 759 | xfs_convert_page( |
| 760 | struct inode *inode, |
| 761 | struct page *page, |
Christoph Hellwig | 10ce444 | 2006-01-11 20:48:14 +1100 | [diff] [blame] | 762 | loff_t tindex, |
Christoph Hellwig | 1defeac | 2006-01-11 20:48:33 +1100 | [diff] [blame] | 763 | xfs_iomap_t *mp, |
Christoph Hellwig | f6d6d4f | 2006-01-11 15:40:13 +1100 | [diff] [blame] | 764 | xfs_ioend_t **ioendp, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 765 | struct writeback_control *wbc, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 766 | int startio, |
| 767 | int all_bh) |
| 768 | { |
Christoph Hellwig | f6d6d4f | 2006-01-11 15:40:13 +1100 | [diff] [blame] | 769 | struct buffer_head *bh, *head; |
Christoph Hellwig | 9260dc6 | 2006-01-11 20:48:47 +1100 | [diff] [blame] | 770 | xfs_off_t end_offset; |
| 771 | unsigned long p_offset; |
Christoph Hellwig | f6d6d4f | 2006-01-11 15:40:13 +1100 | [diff] [blame] | 772 | unsigned int type; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 773 | int bbits = inode->i_blkbits; |
Nathan Scott | 24e17b5 | 2005-05-05 13:33:20 -0700 | [diff] [blame] | 774 | int len, page_dirty; |
Christoph Hellwig | f6d6d4f | 2006-01-11 15:40:13 +1100 | [diff] [blame] | 775 | int count = 0, done = 0, uptodate = 1; |
Christoph Hellwig | 9260dc6 | 2006-01-11 20:48:47 +1100 | [diff] [blame] | 776 | xfs_off_t offset = page_offset(page); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 777 | |
Christoph Hellwig | 10ce444 | 2006-01-11 20:48:14 +1100 | [diff] [blame] | 778 | if (page->index != tindex) |
| 779 | goto fail; |
Nick Piggin | 529ae9a | 2008-08-02 12:01:03 +0200 | [diff] [blame] | 780 | if (!trylock_page(page)) |
Christoph Hellwig | 10ce444 | 2006-01-11 20:48:14 +1100 | [diff] [blame] | 781 | goto fail; |
| 782 | if (PageWriteback(page)) |
| 783 | goto fail_unlock_page; |
| 784 | if (page->mapping != inode->i_mapping) |
| 785 | goto fail_unlock_page; |
| 786 | if (!xfs_is_delayed_page(page, (*ioendp)->io_type)) |
| 787 | goto fail_unlock_page; |
| 788 | |
Nathan Scott | 24e17b5 | 2005-05-05 13:33:20 -0700 | [diff] [blame] | 789 | /* |
| 790 | * page_dirty is initially a count of buffers on the page before |
Nathan Scott | c41564b | 2006-03-29 08:55:14 +1000 | [diff] [blame] | 791 | * EOF and is decremented as we move each into a cleanable state. |
Christoph Hellwig | 9260dc6 | 2006-01-11 20:48:47 +1100 | [diff] [blame] | 792 | * |
| 793 | * Derivation: |
| 794 | * |
| 795 | * End offset is the highest offset that this page should represent. |
| 796 | * If we are on the last page, (end_offset & (PAGE_CACHE_SIZE - 1)) |
| 797 | * will evaluate non-zero and be less than PAGE_CACHE_SIZE and |
| 798 | * hence give us the correct page_dirty count. On any other page, |
| 799 | * it will be zero and in that case we need page_dirty to be the |
| 800 | * count of buffers on the page. |
Nathan Scott | 24e17b5 | 2005-05-05 13:33:20 -0700 | [diff] [blame] | 801 | */ |
Christoph Hellwig | 9260dc6 | 2006-01-11 20:48:47 +1100 | [diff] [blame] | 802 | end_offset = min_t(unsigned long long, |
| 803 | (xfs_off_t)(page->index + 1) << PAGE_CACHE_SHIFT, |
| 804 | i_size_read(inode)); |
| 805 | |
Nathan Scott | 24e17b5 | 2005-05-05 13:33:20 -0700 | [diff] [blame] | 806 | len = 1 << inode->i_blkbits; |
Christoph Hellwig | 9260dc6 | 2006-01-11 20:48:47 +1100 | [diff] [blame] | 807 | p_offset = min_t(unsigned long, end_offset & (PAGE_CACHE_SIZE - 1), |
| 808 | PAGE_CACHE_SIZE); |
| 809 | p_offset = p_offset ? roundup(p_offset, len) : PAGE_CACHE_SIZE; |
| 810 | page_dirty = p_offset / len; |
Nathan Scott | 24e17b5 | 2005-05-05 13:33:20 -0700 | [diff] [blame] | 811 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 812 | bh = head = page_buffers(page); |
| 813 | do { |
Christoph Hellwig | 9260dc6 | 2006-01-11 20:48:47 +1100 | [diff] [blame] | 814 | if (offset >= end_offset) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 815 | break; |
Christoph Hellwig | f6d6d4f | 2006-01-11 15:40:13 +1100 | [diff] [blame] | 816 | if (!buffer_uptodate(bh)) |
| 817 | uptodate = 0; |
| 818 | if (!(PageUptodate(page) || buffer_uptodate(bh))) { |
| 819 | done = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 820 | continue; |
Christoph Hellwig | f6d6d4f | 2006-01-11 15:40:13 +1100 | [diff] [blame] | 821 | } |
| 822 | |
Christoph Hellwig | 9260dc6 | 2006-01-11 20:48:47 +1100 | [diff] [blame] | 823 | if (buffer_unwritten(bh) || buffer_delay(bh)) { |
| 824 | if (buffer_unwritten(bh)) |
| 825 | type = IOMAP_UNWRITTEN; |
| 826 | else |
| 827 | type = IOMAP_DELAY; |
| 828 | |
| 829 | if (!xfs_iomap_valid(mp, offset)) { |
Christoph Hellwig | f6d6d4f | 2006-01-11 15:40:13 +1100 | [diff] [blame] | 830 | done = 1; |
Christoph Hellwig | 9260dc6 | 2006-01-11 20:48:47 +1100 | [diff] [blame] | 831 | continue; |
| 832 | } |
| 833 | |
| 834 | ASSERT(!(mp->iomap_flags & IOMAP_HOLE)); |
| 835 | ASSERT(!(mp->iomap_flags & IOMAP_DELAY)); |
| 836 | |
| 837 | xfs_map_at_offset(bh, offset, bbits, mp); |
| 838 | if (startio) { |
Christoph Hellwig | 7336cea | 2006-01-11 20:49:16 +1100 | [diff] [blame] | 839 | xfs_add_to_ioend(inode, bh, offset, |
Christoph Hellwig | 9260dc6 | 2006-01-11 20:48:47 +1100 | [diff] [blame] | 840 | type, ioendp, done); |
| 841 | } else { |
| 842 | set_buffer_dirty(bh); |
| 843 | unlock_buffer(bh); |
| 844 | mark_buffer_dirty(bh); |
| 845 | } |
| 846 | page_dirty--; |
| 847 | count++; |
| 848 | } else { |
David Chinner | df3c724 | 2007-05-24 15:27:03 +1000 | [diff] [blame] | 849 | type = IOMAP_NEW; |
Christoph Hellwig | 9260dc6 | 2006-01-11 20:48:47 +1100 | [diff] [blame] | 850 | if (buffer_mapped(bh) && all_bh && startio) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 851 | lock_buffer(bh); |
Christoph Hellwig | 7336cea | 2006-01-11 20:49:16 +1100 | [diff] [blame] | 852 | xfs_add_to_ioend(inode, bh, offset, |
Christoph Hellwig | f6d6d4f | 2006-01-11 15:40:13 +1100 | [diff] [blame] | 853 | type, ioendp, done); |
| 854 | count++; |
Nathan Scott | 24e17b5 | 2005-05-05 13:33:20 -0700 | [diff] [blame] | 855 | page_dirty--; |
Christoph Hellwig | 9260dc6 | 2006-01-11 20:48:47 +1100 | [diff] [blame] | 856 | } else { |
| 857 | done = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 858 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 859 | } |
Christoph Hellwig | 7336cea | 2006-01-11 20:49:16 +1100 | [diff] [blame] | 860 | } while (offset += len, (bh = bh->b_this_page) != head); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 861 | |
Christoph Hellwig | f6d6d4f | 2006-01-11 15:40:13 +1100 | [diff] [blame] | 862 | if (uptodate && bh == head) |
| 863 | SetPageUptodate(page); |
| 864 | |
| 865 | if (startio) { |
Christoph Hellwig | f5e596b | 2006-01-11 20:49:42 +1100 | [diff] [blame] | 866 | if (count) { |
| 867 | struct backing_dev_info *bdi; |
| 868 | |
| 869 | bdi = inode->i_mapping->backing_dev_info; |
David Chinner | 9fddaca | 2006-02-07 20:27:24 +1100 | [diff] [blame] | 870 | wbc->nr_to_write--; |
Christoph Hellwig | f5e596b | 2006-01-11 20:49:42 +1100 | [diff] [blame] | 871 | if (bdi_write_congested(bdi)) { |
| 872 | wbc->encountered_congestion = 1; |
| 873 | done = 1; |
David Chinner | 9fddaca | 2006-02-07 20:27:24 +1100 | [diff] [blame] | 874 | } else if (wbc->nr_to_write <= 0) { |
Christoph Hellwig | f5e596b | 2006-01-11 20:49:42 +1100 | [diff] [blame] | 875 | done = 1; |
| 876 | } |
| 877 | } |
Denys Vlasenko | b41759c | 2008-05-19 16:34:11 +1000 | [diff] [blame] | 878 | xfs_start_page_writeback(page, !page_dirty, count); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 879 | } |
Christoph Hellwig | f6d6d4f | 2006-01-11 15:40:13 +1100 | [diff] [blame] | 880 | |
| 881 | return done; |
Christoph Hellwig | 10ce444 | 2006-01-11 20:48:14 +1100 | [diff] [blame] | 882 | fail_unlock_page: |
| 883 | unlock_page(page); |
| 884 | fail: |
| 885 | return 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 886 | } |
| 887 | |
| 888 | /* |
| 889 | * Convert & write out a cluster of pages in the same extent as defined |
| 890 | * by mp and following the start page. |
| 891 | */ |
| 892 | STATIC void |
| 893 | xfs_cluster_write( |
| 894 | struct inode *inode, |
| 895 | pgoff_t tindex, |
| 896 | xfs_iomap_t *iomapp, |
Christoph Hellwig | f6d6d4f | 2006-01-11 15:40:13 +1100 | [diff] [blame] | 897 | xfs_ioend_t **ioendp, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 898 | struct writeback_control *wbc, |
| 899 | int startio, |
| 900 | int all_bh, |
| 901 | pgoff_t tlast) |
| 902 | { |
Christoph Hellwig | 10ce444 | 2006-01-11 20:48:14 +1100 | [diff] [blame] | 903 | struct pagevec pvec; |
| 904 | int done = 0, i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 905 | |
Christoph Hellwig | 10ce444 | 2006-01-11 20:48:14 +1100 | [diff] [blame] | 906 | pagevec_init(&pvec, 0); |
| 907 | while (!done && tindex <= tlast) { |
| 908 | unsigned len = min_t(pgoff_t, PAGEVEC_SIZE, tlast - tindex + 1); |
| 909 | |
| 910 | if (!pagevec_lookup(&pvec, inode->i_mapping, tindex, len)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 911 | break; |
Christoph Hellwig | 10ce444 | 2006-01-11 20:48:14 +1100 | [diff] [blame] | 912 | |
| 913 | for (i = 0; i < pagevec_count(&pvec); i++) { |
| 914 | done = xfs_convert_page(inode, pvec.pages[i], tindex++, |
| 915 | iomapp, ioendp, wbc, startio, all_bh); |
| 916 | if (done) |
| 917 | break; |
| 918 | } |
| 919 | |
| 920 | pagevec_release(&pvec); |
| 921 | cond_resched(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 922 | } |
| 923 | } |
| 924 | |
| 925 | /* |
| 926 | * Calling this without startio set means we are being asked to make a dirty |
| 927 | * page ready for freeing it's buffers. When called with startio set then |
| 928 | * we are coming from writepage. |
| 929 | * |
| 930 | * When called with startio set it is important that we write the WHOLE |
| 931 | * page if possible. |
| 932 | * The bh->b_state's cannot know if any of the blocks or which block for |
| 933 | * that matter are dirty due to mmap writes, and therefore bh uptodate is |
Nathan Scott | c41564b | 2006-03-29 08:55:14 +1000 | [diff] [blame] | 934 | * only valid if the page itself isn't completely uptodate. Some layers |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 935 | * may clear the page dirty flag prior to calling write page, under the |
| 936 | * assumption the entire page will be written out; by not writing out the |
| 937 | * whole page the page can be reused before all valid dirty data is |
| 938 | * written out. Note: in the case of a page that has been dirty'd by |
| 939 | * mapwrite and but partially setup by block_prepare_write the |
| 940 | * bh->b_states's will not agree and only ones setup by BPW/BCW will have |
| 941 | * valid state, thus the whole page must be written out thing. |
| 942 | */ |
| 943 | |
| 944 | STATIC int |
| 945 | xfs_page_state_convert( |
| 946 | struct inode *inode, |
| 947 | struct page *page, |
| 948 | struct writeback_control *wbc, |
| 949 | int startio, |
| 950 | int unmapped) /* also implies page uptodate */ |
| 951 | { |
Christoph Hellwig | f6d6d4f | 2006-01-11 15:40:13 +1100 | [diff] [blame] | 952 | struct buffer_head *bh, *head; |
Christoph Hellwig | 1defeac | 2006-01-11 20:48:33 +1100 | [diff] [blame] | 953 | xfs_iomap_t iomap; |
Christoph Hellwig | f6d6d4f | 2006-01-11 15:40:13 +1100 | [diff] [blame] | 954 | xfs_ioend_t *ioend = NULL, *iohead = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 955 | loff_t offset; |
| 956 | unsigned long p_offset = 0; |
Christoph Hellwig | f6d6d4f | 2006-01-11 15:40:13 +1100 | [diff] [blame] | 957 | unsigned int type; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 958 | __uint64_t end_offset; |
| 959 | pgoff_t end_index, last_index, tlast; |
Christoph Hellwig | d5cb48a | 2006-01-11 20:49:02 +1100 | [diff] [blame] | 960 | ssize_t size, len; |
| 961 | int flags, err, iomap_valid = 0, uptodate = 1; |
Nathan Scott | 8272145 | 2006-04-11 15:10:55 +1000 | [diff] [blame] | 962 | int page_dirty, count = 0; |
| 963 | int trylock = 0; |
Christoph Hellwig | 6c4fe19 | 2006-01-11 20:49:28 +1100 | [diff] [blame] | 964 | int all_bh = unmapped; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 965 | |
Nathan Scott | 8272145 | 2006-04-11 15:10:55 +1000 | [diff] [blame] | 966 | if (startio) { |
| 967 | if (wbc->sync_mode == WB_SYNC_NONE && wbc->nonblocking) |
| 968 | trylock |= BMAPI_TRYLOCK; |
| 969 | } |
Daniel Moore | 3ba0815 | 2005-05-05 13:31:34 -0700 | [diff] [blame] | 970 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 971 | /* Is this page beyond the end of the file? */ |
| 972 | offset = i_size_read(inode); |
| 973 | end_index = offset >> PAGE_CACHE_SHIFT; |
| 974 | last_index = (offset - 1) >> PAGE_CACHE_SHIFT; |
| 975 | if (page->index >= end_index) { |
| 976 | if ((page->index >= end_index + 1) || |
| 977 | !(i_size_read(inode) & (PAGE_CACHE_SIZE - 1))) { |
Nathan Scott | 19d5bcf | 2005-11-02 15:14:09 +1100 | [diff] [blame] | 978 | if (startio) |
| 979 | unlock_page(page); |
| 980 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 981 | } |
| 982 | } |
| 983 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 984 | /* |
Nathan Scott | 24e17b5 | 2005-05-05 13:33:20 -0700 | [diff] [blame] | 985 | * page_dirty is initially a count of buffers on the page before |
Nathan Scott | c41564b | 2006-03-29 08:55:14 +1000 | [diff] [blame] | 986 | * EOF and is decremented as we move each into a cleanable state. |
Christoph Hellwig | f6d6d4f | 2006-01-11 15:40:13 +1100 | [diff] [blame] | 987 | * |
| 988 | * Derivation: |
| 989 | * |
| 990 | * End offset is the highest offset that this page should represent. |
| 991 | * If we are on the last page, (end_offset & (PAGE_CACHE_SIZE - 1)) |
| 992 | * will evaluate non-zero and be less than PAGE_CACHE_SIZE and |
| 993 | * hence give us the correct page_dirty count. On any other page, |
| 994 | * it will be zero and in that case we need page_dirty to be the |
| 995 | * count of buffers on the page. |
| 996 | */ |
| 997 | end_offset = min_t(unsigned long long, |
| 998 | (xfs_off_t)(page->index + 1) << PAGE_CACHE_SHIFT, offset); |
Nathan Scott | 24e17b5 | 2005-05-05 13:33:20 -0700 | [diff] [blame] | 999 | len = 1 << inode->i_blkbits; |
Christoph Hellwig | f6d6d4f | 2006-01-11 15:40:13 +1100 | [diff] [blame] | 1000 | p_offset = min_t(unsigned long, end_offset & (PAGE_CACHE_SIZE - 1), |
| 1001 | PAGE_CACHE_SIZE); |
| 1002 | p_offset = p_offset ? roundup(p_offset, len) : PAGE_CACHE_SIZE; |
Nathan Scott | 24e17b5 | 2005-05-05 13:33:20 -0700 | [diff] [blame] | 1003 | page_dirty = p_offset / len; |
| 1004 | |
Nathan Scott | 24e17b5 | 2005-05-05 13:33:20 -0700 | [diff] [blame] | 1005 | bh = head = page_buffers(page); |
Christoph Hellwig | f6d6d4f | 2006-01-11 15:40:13 +1100 | [diff] [blame] | 1006 | offset = page_offset(page); |
David Chinner | df3c724 | 2007-05-24 15:27:03 +1000 | [diff] [blame] | 1007 | flags = BMAPI_READ; |
| 1008 | type = IOMAP_NEW; |
Christoph Hellwig | f6d6d4f | 2006-01-11 15:40:13 +1100 | [diff] [blame] | 1009 | |
Christoph Hellwig | f6d6d4f | 2006-01-11 15:40:13 +1100 | [diff] [blame] | 1010 | /* TODO: cleanup count and page_dirty */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1011 | |
| 1012 | do { |
| 1013 | if (offset >= end_offset) |
| 1014 | break; |
| 1015 | if (!buffer_uptodate(bh)) |
| 1016 | uptodate = 0; |
Christoph Hellwig | f6d6d4f | 2006-01-11 15:40:13 +1100 | [diff] [blame] | 1017 | if (!(PageUptodate(page) || buffer_uptodate(bh)) && !startio) { |
Christoph Hellwig | 1defeac | 2006-01-11 20:48:33 +1100 | [diff] [blame] | 1018 | /* |
| 1019 | * the iomap is actually still valid, but the ioend |
| 1020 | * isn't. shouldn't happen too often. |
| 1021 | */ |
| 1022 | iomap_valid = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1023 | continue; |
Christoph Hellwig | f6d6d4f | 2006-01-11 15:40:13 +1100 | [diff] [blame] | 1024 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1025 | |
Christoph Hellwig | 1defeac | 2006-01-11 20:48:33 +1100 | [diff] [blame] | 1026 | if (iomap_valid) |
| 1027 | iomap_valid = xfs_iomap_valid(&iomap, offset); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1028 | |
| 1029 | /* |
| 1030 | * First case, map an unwritten extent and prepare for |
| 1031 | * extent state conversion transaction on completion. |
Christoph Hellwig | f6d6d4f | 2006-01-11 15:40:13 +1100 | [diff] [blame] | 1032 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1033 | * Second case, allocate space for a delalloc buffer. |
| 1034 | * We can return EAGAIN here in the release page case. |
Christoph Hellwig | d5cb48a | 2006-01-11 20:49:02 +1100 | [diff] [blame] | 1035 | * |
| 1036 | * Third case, an unmapped buffer was found, and we are |
| 1037 | * in a path where we need to write the whole page out. |
David Chinner | df3c724 | 2007-05-24 15:27:03 +1000 | [diff] [blame] | 1038 | */ |
Christoph Hellwig | d5cb48a | 2006-01-11 20:49:02 +1100 | [diff] [blame] | 1039 | if (buffer_unwritten(bh) || buffer_delay(bh) || |
| 1040 | ((buffer_uptodate(bh) || PageUptodate(page)) && |
| 1041 | !buffer_mapped(bh) && (unmapped || startio))) { |
David Chinner | effd120 | 2007-06-18 16:49:58 +1000 | [diff] [blame] | 1042 | int new_ioend = 0; |
| 1043 | |
David Chinner | df3c724 | 2007-05-24 15:27:03 +1000 | [diff] [blame] | 1044 | /* |
Christoph Hellwig | 6c4fe19 | 2006-01-11 20:49:28 +1100 | [diff] [blame] | 1045 | * Make sure we don't use a read-only iomap |
| 1046 | */ |
David Chinner | df3c724 | 2007-05-24 15:27:03 +1000 | [diff] [blame] | 1047 | if (flags == BMAPI_READ) |
Christoph Hellwig | 6c4fe19 | 2006-01-11 20:49:28 +1100 | [diff] [blame] | 1048 | iomap_valid = 0; |
| 1049 | |
Christoph Hellwig | f6d6d4f | 2006-01-11 15:40:13 +1100 | [diff] [blame] | 1050 | if (buffer_unwritten(bh)) { |
| 1051 | type = IOMAP_UNWRITTEN; |
Nathan Scott | 8272145 | 2006-04-11 15:10:55 +1000 | [diff] [blame] | 1052 | flags = BMAPI_WRITE | BMAPI_IGNSTATE; |
Christoph Hellwig | d5cb48a | 2006-01-11 20:49:02 +1100 | [diff] [blame] | 1053 | } else if (buffer_delay(bh)) { |
Christoph Hellwig | f6d6d4f | 2006-01-11 15:40:13 +1100 | [diff] [blame] | 1054 | type = IOMAP_DELAY; |
Nathan Scott | 8272145 | 2006-04-11 15:10:55 +1000 | [diff] [blame] | 1055 | flags = BMAPI_ALLOCATE | trylock; |
Christoph Hellwig | d5cb48a | 2006-01-11 20:49:02 +1100 | [diff] [blame] | 1056 | } else { |
Christoph Hellwig | 6c4fe19 | 2006-01-11 20:49:28 +1100 | [diff] [blame] | 1057 | type = IOMAP_NEW; |
Nathan Scott | 8272145 | 2006-04-11 15:10:55 +1000 | [diff] [blame] | 1058 | flags = BMAPI_WRITE | BMAPI_MMAP; |
Christoph Hellwig | f6d6d4f | 2006-01-11 15:40:13 +1100 | [diff] [blame] | 1059 | } |
| 1060 | |
Christoph Hellwig | 1defeac | 2006-01-11 20:48:33 +1100 | [diff] [blame] | 1061 | if (!iomap_valid) { |
David Chinner | effd120 | 2007-06-18 16:49:58 +1000 | [diff] [blame] | 1062 | /* |
| 1063 | * if we didn't have a valid mapping then we |
| 1064 | * need to ensure that we put the new mapping |
| 1065 | * in a new ioend structure. This needs to be |
| 1066 | * done to ensure that the ioends correctly |
| 1067 | * reflect the block mappings at io completion |
| 1068 | * for unwritten extent conversion. |
| 1069 | */ |
| 1070 | new_ioend = 1; |
Christoph Hellwig | 6c4fe19 | 2006-01-11 20:49:28 +1100 | [diff] [blame] | 1071 | if (type == IOMAP_NEW) { |
| 1072 | size = xfs_probe_cluster(inode, |
| 1073 | page, bh, head, 0); |
Christoph Hellwig | d5cb48a | 2006-01-11 20:49:02 +1100 | [diff] [blame] | 1074 | } else { |
| 1075 | size = len; |
| 1076 | } |
| 1077 | |
| 1078 | err = xfs_map_blocks(inode, offset, size, |
| 1079 | &iomap, flags); |
Christoph Hellwig | f6d6d4f | 2006-01-11 15:40:13 +1100 | [diff] [blame] | 1080 | if (err) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1081 | goto error; |
Christoph Hellwig | 1defeac | 2006-01-11 20:48:33 +1100 | [diff] [blame] | 1082 | iomap_valid = xfs_iomap_valid(&iomap, offset); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1083 | } |
Christoph Hellwig | 1defeac | 2006-01-11 20:48:33 +1100 | [diff] [blame] | 1084 | if (iomap_valid) { |
| 1085 | xfs_map_at_offset(bh, offset, |
| 1086 | inode->i_blkbits, &iomap); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1087 | if (startio) { |
Christoph Hellwig | 7336cea | 2006-01-11 20:49:16 +1100 | [diff] [blame] | 1088 | xfs_add_to_ioend(inode, bh, offset, |
Christoph Hellwig | 1defeac | 2006-01-11 20:48:33 +1100 | [diff] [blame] | 1089 | type, &ioend, |
David Chinner | effd120 | 2007-06-18 16:49:58 +1000 | [diff] [blame] | 1090 | new_ioend); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1091 | } else { |
| 1092 | set_buffer_dirty(bh); |
| 1093 | unlock_buffer(bh); |
| 1094 | mark_buffer_dirty(bh); |
| 1095 | } |
| 1096 | page_dirty--; |
Christoph Hellwig | f6d6d4f | 2006-01-11 15:40:13 +1100 | [diff] [blame] | 1097 | count++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1098 | } |
Christoph Hellwig | d5cb48a | 2006-01-11 20:49:02 +1100 | [diff] [blame] | 1099 | } else if (buffer_uptodate(bh) && startio) { |
Christoph Hellwig | 6c4fe19 | 2006-01-11 20:49:28 +1100 | [diff] [blame] | 1100 | /* |
| 1101 | * we got here because the buffer is already mapped. |
| 1102 | * That means it must already have extents allocated |
| 1103 | * underneath it. Map the extent by reading it. |
| 1104 | */ |
David Chinner | df3c724 | 2007-05-24 15:27:03 +1000 | [diff] [blame] | 1105 | if (!iomap_valid || flags != BMAPI_READ) { |
Christoph Hellwig | 6c4fe19 | 2006-01-11 20:49:28 +1100 | [diff] [blame] | 1106 | flags = BMAPI_READ; |
| 1107 | size = xfs_probe_cluster(inode, page, bh, |
| 1108 | head, 1); |
| 1109 | err = xfs_map_blocks(inode, offset, size, |
| 1110 | &iomap, flags); |
| 1111 | if (err) |
| 1112 | goto error; |
| 1113 | iomap_valid = xfs_iomap_valid(&iomap, offset); |
| 1114 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1115 | |
David Chinner | df3c724 | 2007-05-24 15:27:03 +1000 | [diff] [blame] | 1116 | /* |
| 1117 | * We set the type to IOMAP_NEW in case we are doing a |
| 1118 | * small write at EOF that is extending the file but |
| 1119 | * without needing an allocation. We need to update the |
| 1120 | * file size on I/O completion in this case so it is |
| 1121 | * the same case as having just allocated a new extent |
| 1122 | * that we are writing into for the first time. |
| 1123 | */ |
| 1124 | type = IOMAP_NEW; |
Nick Piggin | ca5de40 | 2008-08-02 12:02:13 +0200 | [diff] [blame] | 1125 | if (trylock_buffer(bh)) { |
Christoph Hellwig | d5cb48a | 2006-01-11 20:49:02 +1100 | [diff] [blame] | 1126 | ASSERT(buffer_mapped(bh)); |
Christoph Hellwig | 6c4fe19 | 2006-01-11 20:49:28 +1100 | [diff] [blame] | 1127 | if (iomap_valid) |
| 1128 | all_bh = 1; |
Christoph Hellwig | 7336cea | 2006-01-11 20:49:16 +1100 | [diff] [blame] | 1129 | xfs_add_to_ioend(inode, bh, offset, type, |
Christoph Hellwig | d5cb48a | 2006-01-11 20:49:02 +1100 | [diff] [blame] | 1130 | &ioend, !iomap_valid); |
| 1131 | page_dirty--; |
| 1132 | count++; |
Christoph Hellwig | f6d6d4f | 2006-01-11 15:40:13 +1100 | [diff] [blame] | 1133 | } else { |
Christoph Hellwig | 1defeac | 2006-01-11 20:48:33 +1100 | [diff] [blame] | 1134 | iomap_valid = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1135 | } |
Christoph Hellwig | d5cb48a | 2006-01-11 20:49:02 +1100 | [diff] [blame] | 1136 | } else if ((buffer_uptodate(bh) || PageUptodate(page)) && |
| 1137 | (unmapped || startio)) { |
| 1138 | iomap_valid = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1139 | } |
Christoph Hellwig | f6d6d4f | 2006-01-11 15:40:13 +1100 | [diff] [blame] | 1140 | |
| 1141 | if (!iohead) |
| 1142 | iohead = ioend; |
| 1143 | |
| 1144 | } while (offset += len, ((bh = bh->b_this_page) != head)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1145 | |
| 1146 | if (uptodate && bh == head) |
| 1147 | SetPageUptodate(page); |
| 1148 | |
Christoph Hellwig | f6d6d4f | 2006-01-11 15:40:13 +1100 | [diff] [blame] | 1149 | if (startio) |
Denys Vlasenko | b41759c | 2008-05-19 16:34:11 +1000 | [diff] [blame] | 1150 | xfs_start_page_writeback(page, 1, count); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1151 | |
Christoph Hellwig | 1defeac | 2006-01-11 20:48:33 +1100 | [diff] [blame] | 1152 | if (ioend && iomap_valid) { |
| 1153 | offset = (iomap.iomap_offset + iomap.iomap_bsize - 1) >> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1154 | PAGE_CACHE_SHIFT; |
Nathan Scott | 775bf6c | 2005-05-05 13:33:01 -0700 | [diff] [blame] | 1155 | tlast = min_t(pgoff_t, offset, last_index); |
Christoph Hellwig | 1defeac | 2006-01-11 20:48:33 +1100 | [diff] [blame] | 1156 | xfs_cluster_write(inode, page->index + 1, &iomap, &ioend, |
Christoph Hellwig | 6c4fe19 | 2006-01-11 20:49:28 +1100 | [diff] [blame] | 1157 | wbc, startio, all_bh, tlast); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1158 | } |
| 1159 | |
Christoph Hellwig | f6d6d4f | 2006-01-11 15:40:13 +1100 | [diff] [blame] | 1160 | if (iohead) |
Christoph Hellwig | 06342cf | 2009-10-30 09:09:15 +0000 | [diff] [blame] | 1161 | xfs_submit_ioend(wbc, iohead); |
Christoph Hellwig | f6d6d4f | 2006-01-11 15:40:13 +1100 | [diff] [blame] | 1162 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1163 | return page_dirty; |
| 1164 | |
| 1165 | error: |
Christoph Hellwig | f6d6d4f | 2006-01-11 15:40:13 +1100 | [diff] [blame] | 1166 | if (iohead) |
| 1167 | xfs_cancel_ioend(iohead); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1168 | |
| 1169 | /* |
| 1170 | * If it's delalloc and we have nowhere to put it, |
| 1171 | * throw it away, unless the lower layers told |
| 1172 | * us to try again. |
| 1173 | */ |
| 1174 | if (err != -EAGAIN) { |
Christoph Hellwig | f6d6d4f | 2006-01-11 15:40:13 +1100 | [diff] [blame] | 1175 | if (!unmapped) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1176 | block_invalidatepage(page, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1177 | ClearPageUptodate(page); |
| 1178 | } |
| 1179 | return err; |
| 1180 | } |
| 1181 | |
Nathan Scott | f51623b | 2006-03-14 13:26:27 +1100 | [diff] [blame] | 1182 | /* |
| 1183 | * writepage: Called from one of two places: |
| 1184 | * |
| 1185 | * 1. we are flushing a delalloc buffer head. |
| 1186 | * |
| 1187 | * 2. we are writing out a dirty page. Typically the page dirty |
| 1188 | * state is cleared before we get here. In this case is it |
| 1189 | * conceivable we have no buffer heads. |
| 1190 | * |
| 1191 | * For delalloc space on the page we need to allocate space and |
| 1192 | * flush it. For unmapped buffer heads on the page we should |
| 1193 | * allocate space if the page is uptodate. For any other dirty |
| 1194 | * buffer heads on the page we should flush them. |
| 1195 | * |
| 1196 | * If we detect that a transaction would be required to flush |
| 1197 | * the page, we have to check the process flags first, if we |
| 1198 | * are already in a transaction or disk I/O during allocations |
| 1199 | * is off, we need to fail the writepage and redirty the page. |
| 1200 | */ |
| 1201 | |
| 1202 | STATIC int |
Nathan Scott | e4c573b | 2006-03-14 13:54:26 +1100 | [diff] [blame] | 1203 | xfs_vm_writepage( |
Nathan Scott | f51623b | 2006-03-14 13:26:27 +1100 | [diff] [blame] | 1204 | struct page *page, |
| 1205 | struct writeback_control *wbc) |
| 1206 | { |
| 1207 | int error; |
| 1208 | int need_trans; |
| 1209 | int delalloc, unmapped, unwritten; |
| 1210 | struct inode *inode = page->mapping->host; |
| 1211 | |
| 1212 | xfs_page_trace(XFS_WRITEPAGE_ENTER, inode, page, 0); |
| 1213 | |
| 1214 | /* |
| 1215 | * We need a transaction if: |
| 1216 | * 1. There are delalloc buffers on the page |
| 1217 | * 2. The page is uptodate and we have unmapped buffers |
| 1218 | * 3. The page is uptodate and we have no buffers |
| 1219 | * 4. There are unwritten buffers on the page |
| 1220 | */ |
| 1221 | |
| 1222 | if (!page_has_buffers(page)) { |
| 1223 | unmapped = 1; |
| 1224 | need_trans = 1; |
| 1225 | } else { |
| 1226 | xfs_count_page_state(page, &delalloc, &unmapped, &unwritten); |
| 1227 | if (!PageUptodate(page)) |
| 1228 | unmapped = 0; |
| 1229 | need_trans = delalloc + unmapped + unwritten; |
| 1230 | } |
| 1231 | |
| 1232 | /* |
| 1233 | * If we need a transaction and the process flags say |
| 1234 | * we are already in a transaction, or no IO is allowed |
| 1235 | * then mark the page dirty again and leave the page |
| 1236 | * as is. |
| 1237 | */ |
Nathan Scott | 59c1b08 | 2006-06-09 14:59:13 +1000 | [diff] [blame] | 1238 | if (current_test_flags(PF_FSTRANS) && need_trans) |
Nathan Scott | f51623b | 2006-03-14 13:26:27 +1100 | [diff] [blame] | 1239 | goto out_fail; |
| 1240 | |
| 1241 | /* |
| 1242 | * Delay hooking up buffer heads until we have |
| 1243 | * made our go/no-go decision. |
| 1244 | */ |
| 1245 | if (!page_has_buffers(page)) |
| 1246 | create_empty_buffers(page, 1 << inode->i_blkbits, 0); |
| 1247 | |
Eric Sandeen | c8a4051 | 2009-07-31 00:02:17 -0500 | [diff] [blame] | 1248 | |
| 1249 | /* |
| 1250 | * VM calculation for nr_to_write seems off. Bump it way |
| 1251 | * up, this gets simple streaming writes zippy again. |
| 1252 | * To be reviewed again after Jens' writeback changes. |
| 1253 | */ |
| 1254 | wbc->nr_to_write *= 4; |
| 1255 | |
Nathan Scott | f51623b | 2006-03-14 13:26:27 +1100 | [diff] [blame] | 1256 | /* |
| 1257 | * Convert delayed allocate, unwritten or unmapped space |
| 1258 | * to real space and flush out to disk. |
| 1259 | */ |
| 1260 | error = xfs_page_state_convert(inode, page, wbc, 1, unmapped); |
| 1261 | if (error == -EAGAIN) |
| 1262 | goto out_fail; |
| 1263 | if (unlikely(error < 0)) |
| 1264 | goto out_unlock; |
| 1265 | |
| 1266 | return 0; |
| 1267 | |
| 1268 | out_fail: |
| 1269 | redirty_page_for_writepage(wbc, page); |
| 1270 | unlock_page(page); |
| 1271 | return 0; |
| 1272 | out_unlock: |
| 1273 | unlock_page(page); |
| 1274 | return error; |
| 1275 | } |
| 1276 | |
Nathan Scott | 7d4fb40 | 2006-06-09 15:27:16 +1000 | [diff] [blame] | 1277 | STATIC int |
| 1278 | xfs_vm_writepages( |
| 1279 | struct address_space *mapping, |
| 1280 | struct writeback_control *wbc) |
| 1281 | { |
Christoph Hellwig | b3aea4e | 2007-08-29 11:44:37 +1000 | [diff] [blame] | 1282 | xfs_iflags_clear(XFS_I(mapping->host), XFS_ITRUNCATED); |
Nathan Scott | 7d4fb40 | 2006-06-09 15:27:16 +1000 | [diff] [blame] | 1283 | return generic_writepages(mapping, wbc); |
| 1284 | } |
| 1285 | |
Nathan Scott | f51623b | 2006-03-14 13:26:27 +1100 | [diff] [blame] | 1286 | /* |
| 1287 | * Called to move a page into cleanable state - and from there |
| 1288 | * to be released. Possibly the page is already clean. We always |
| 1289 | * have buffer heads in this call. |
| 1290 | * |
| 1291 | * Returns 0 if the page is ok to release, 1 otherwise. |
| 1292 | * |
| 1293 | * Possible scenarios are: |
| 1294 | * |
| 1295 | * 1. We are being called to release a page which has been written |
| 1296 | * to via regular I/O. buffer heads will be dirty and possibly |
| 1297 | * delalloc. If no delalloc buffer heads in this case then we |
| 1298 | * can just return zero. |
| 1299 | * |
| 1300 | * 2. We are called to release a page which has been written via |
| 1301 | * mmap, all we need to do is ensure there is no delalloc |
| 1302 | * state in the buffer heads, if not we can let the caller |
| 1303 | * free them and we should come back later via writepage. |
| 1304 | */ |
| 1305 | STATIC int |
Nathan Scott | 238f4c5 | 2006-03-17 17:26:25 +1100 | [diff] [blame] | 1306 | xfs_vm_releasepage( |
Nathan Scott | f51623b | 2006-03-14 13:26:27 +1100 | [diff] [blame] | 1307 | struct page *page, |
| 1308 | gfp_t gfp_mask) |
| 1309 | { |
| 1310 | struct inode *inode = page->mapping->host; |
| 1311 | int dirty, delalloc, unmapped, unwritten; |
| 1312 | struct writeback_control wbc = { |
| 1313 | .sync_mode = WB_SYNC_ALL, |
| 1314 | .nr_to_write = 1, |
| 1315 | }; |
| 1316 | |
Nathan Scott | ed9d88f | 2006-09-28 10:56:43 +1000 | [diff] [blame] | 1317 | xfs_page_trace(XFS_RELEASEPAGE_ENTER, inode, page, 0); |
Nathan Scott | f51623b | 2006-03-14 13:26:27 +1100 | [diff] [blame] | 1318 | |
Nathan Scott | 238f4c5 | 2006-03-17 17:26:25 +1100 | [diff] [blame] | 1319 | if (!page_has_buffers(page)) |
| 1320 | return 0; |
| 1321 | |
Nathan Scott | f51623b | 2006-03-14 13:26:27 +1100 | [diff] [blame] | 1322 | xfs_count_page_state(page, &delalloc, &unmapped, &unwritten); |
| 1323 | if (!delalloc && !unwritten) |
| 1324 | goto free_buffers; |
| 1325 | |
| 1326 | if (!(gfp_mask & __GFP_FS)) |
| 1327 | return 0; |
| 1328 | |
| 1329 | /* If we are already inside a transaction or the thread cannot |
| 1330 | * do I/O, we cannot release this page. |
| 1331 | */ |
Nathan Scott | 59c1b08 | 2006-06-09 14:59:13 +1000 | [diff] [blame] | 1332 | if (current_test_flags(PF_FSTRANS)) |
Nathan Scott | f51623b | 2006-03-14 13:26:27 +1100 | [diff] [blame] | 1333 | return 0; |
| 1334 | |
| 1335 | /* |
| 1336 | * Convert delalloc space to real space, do not flush the |
| 1337 | * data out to disk, that will be done by the caller. |
| 1338 | * Never need to allocate space here - we will always |
| 1339 | * come back to writepage in that case. |
| 1340 | */ |
| 1341 | dirty = xfs_page_state_convert(inode, page, &wbc, 0, 0); |
| 1342 | if (dirty == 0 && !unwritten) |
| 1343 | goto free_buffers; |
| 1344 | return 0; |
| 1345 | |
| 1346 | free_buffers: |
| 1347 | return try_to_free_buffers(page); |
| 1348 | } |
| 1349 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1350 | STATIC int |
Nathan Scott | c253666 | 2006-03-29 10:44:40 +1000 | [diff] [blame] | 1351 | __xfs_get_blocks( |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1352 | struct inode *inode, |
| 1353 | sector_t iblock, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1354 | struct buffer_head *bh_result, |
| 1355 | int create, |
| 1356 | int direct, |
| 1357 | bmapi_flags_t flags) |
| 1358 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1359 | xfs_iomap_t iomap; |
Nathan Scott | fdc7ed7 | 2005-11-02 15:13:13 +1100 | [diff] [blame] | 1360 | xfs_off_t offset; |
| 1361 | ssize_t size; |
Nathan Scott | c253666 | 2006-03-29 10:44:40 +1000 | [diff] [blame] | 1362 | int niomap = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1363 | int error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1364 | |
Nathan Scott | fdc7ed7 | 2005-11-02 15:13:13 +1100 | [diff] [blame] | 1365 | offset = (xfs_off_t)iblock << inode->i_blkbits; |
Nathan Scott | c253666 | 2006-03-29 10:44:40 +1000 | [diff] [blame] | 1366 | ASSERT(bh_result->b_size >= (1 << inode->i_blkbits)); |
| 1367 | size = bh_result->b_size; |
Lachlan McIlroy | 364f358 | 2008-09-17 16:50:14 +1000 | [diff] [blame] | 1368 | |
| 1369 | if (!create && direct && offset >= i_size_read(inode)) |
| 1370 | return 0; |
| 1371 | |
Lachlan McIlroy | 541d7d3 | 2007-10-11 17:34:33 +1000 | [diff] [blame] | 1372 | error = xfs_iomap(XFS_I(inode), offset, size, |
Nathan Scott | 67fcaa7 | 2006-06-09 17:00:52 +1000 | [diff] [blame] | 1373 | create ? flags : BMAPI_READ, &iomap, &niomap); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1374 | if (error) |
| 1375 | return -error; |
Nathan Scott | c253666 | 2006-03-29 10:44:40 +1000 | [diff] [blame] | 1376 | if (niomap == 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1377 | return 0; |
| 1378 | |
| 1379 | if (iomap.iomap_bn != IOMAP_DADDR_NULL) { |
Nathan Scott | 87cbc49 | 2006-03-14 13:26:43 +1100 | [diff] [blame] | 1380 | /* |
| 1381 | * For unwritten extents do not report a disk address on |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1382 | * the read case (treat as if we're reading into a hole). |
| 1383 | */ |
| 1384 | if (create || !(iomap.iomap_flags & IOMAP_UNWRITTEN)) { |
Nathan Scott | 87cbc49 | 2006-03-14 13:26:43 +1100 | [diff] [blame] | 1385 | xfs_map_buffer(bh_result, &iomap, offset, |
| 1386 | inode->i_blkbits); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1387 | } |
| 1388 | if (create && (iomap.iomap_flags & IOMAP_UNWRITTEN)) { |
| 1389 | if (direct) |
| 1390 | bh_result->b_private = inode; |
| 1391 | set_buffer_unwritten(bh_result); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1392 | } |
| 1393 | } |
| 1394 | |
Nathan Scott | c253666 | 2006-03-29 10:44:40 +1000 | [diff] [blame] | 1395 | /* |
| 1396 | * If this is a realtime file, data may be on a different device. |
| 1397 | * to that pointed to from the buffer_head b_bdev currently. |
| 1398 | */ |
Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 1399 | bh_result->b_bdev = iomap.iomap_target->bt_bdev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1400 | |
Nathan Scott | c253666 | 2006-03-29 10:44:40 +1000 | [diff] [blame] | 1401 | /* |
David Chinner | 549054a | 2007-02-10 18:36:35 +1100 | [diff] [blame] | 1402 | * If we previously allocated a block out beyond eof and we are now |
| 1403 | * coming back to use it then we will need to flag it as new even if it |
| 1404 | * has a disk address. |
| 1405 | * |
| 1406 | * With sub-block writes into unwritten extents we also need to mark |
| 1407 | * the buffer as new so that the unwritten parts of the buffer gets |
| 1408 | * correctly zeroed. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1409 | */ |
| 1410 | if (create && |
| 1411 | ((!buffer_mapped(bh_result) && !buffer_uptodate(bh_result)) || |
David Chinner | 549054a | 2007-02-10 18:36:35 +1100 | [diff] [blame] | 1412 | (offset >= i_size_read(inode)) || |
| 1413 | (iomap.iomap_flags & (IOMAP_NEW|IOMAP_UNWRITTEN)))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1414 | set_buffer_new(bh_result); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1415 | |
| 1416 | if (iomap.iomap_flags & IOMAP_DELAY) { |
| 1417 | BUG_ON(direct); |
| 1418 | if (create) { |
| 1419 | set_buffer_uptodate(bh_result); |
| 1420 | set_buffer_mapped(bh_result); |
| 1421 | set_buffer_delay(bh_result); |
| 1422 | } |
| 1423 | } |
| 1424 | |
Nathan Scott | c253666 | 2006-03-29 10:44:40 +1000 | [diff] [blame] | 1425 | if (direct || size > (1 << inode->i_blkbits)) { |
Nathan Scott | fdc7ed7 | 2005-11-02 15:13:13 +1100 | [diff] [blame] | 1426 | ASSERT(iomap.iomap_bsize - iomap.iomap_delta > 0); |
| 1427 | offset = min_t(xfs_off_t, |
Nathan Scott | c253666 | 2006-03-29 10:44:40 +1000 | [diff] [blame] | 1428 | iomap.iomap_bsize - iomap.iomap_delta, size); |
| 1429 | bh_result->b_size = (ssize_t)min_t(xfs_off_t, LONG_MAX, offset); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1430 | } |
| 1431 | |
| 1432 | return 0; |
| 1433 | } |
| 1434 | |
| 1435 | int |
Nathan Scott | c253666 | 2006-03-29 10:44:40 +1000 | [diff] [blame] | 1436 | xfs_get_blocks( |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1437 | struct inode *inode, |
| 1438 | sector_t iblock, |
| 1439 | struct buffer_head *bh_result, |
| 1440 | int create) |
| 1441 | { |
Nathan Scott | c253666 | 2006-03-29 10:44:40 +1000 | [diff] [blame] | 1442 | return __xfs_get_blocks(inode, iblock, |
Badari Pulavarty | fa30bd0 | 2006-03-26 01:38:01 -0800 | [diff] [blame] | 1443 | bh_result, create, 0, BMAPI_WRITE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1444 | } |
| 1445 | |
| 1446 | STATIC int |
Nathan Scott | e4c573b | 2006-03-14 13:54:26 +1100 | [diff] [blame] | 1447 | xfs_get_blocks_direct( |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1448 | struct inode *inode, |
| 1449 | sector_t iblock, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1450 | struct buffer_head *bh_result, |
| 1451 | int create) |
| 1452 | { |
Nathan Scott | c253666 | 2006-03-29 10:44:40 +1000 | [diff] [blame] | 1453 | return __xfs_get_blocks(inode, iblock, |
Badari Pulavarty | 1d8fa7a | 2006-03-26 01:38:02 -0800 | [diff] [blame] | 1454 | bh_result, create, 1, BMAPI_WRITE|BMAPI_DIRECT); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1455 | } |
| 1456 | |
Christoph Hellwig | f097386 | 2005-09-05 08:22:52 +1000 | [diff] [blame] | 1457 | STATIC void |
Nathan Scott | e4c573b | 2006-03-14 13:54:26 +1100 | [diff] [blame] | 1458 | xfs_end_io_direct( |
Christoph Hellwig | f097386 | 2005-09-05 08:22:52 +1000 | [diff] [blame] | 1459 | struct kiocb *iocb, |
| 1460 | loff_t offset, |
| 1461 | ssize_t size, |
| 1462 | void *private) |
| 1463 | { |
| 1464 | xfs_ioend_t *ioend = iocb->private; |
| 1465 | |
| 1466 | /* |
| 1467 | * Non-NULL private data means we need to issue a transaction to |
| 1468 | * convert a range from unwritten to written extents. This needs |
Nathan Scott | c41564b | 2006-03-29 08:55:14 +1000 | [diff] [blame] | 1469 | * to happen from process context but aio+dio I/O completion |
Christoph Hellwig | f097386 | 2005-09-05 08:22:52 +1000 | [diff] [blame] | 1470 | * happens from irq context so we need to defer it to a workqueue. |
Nathan Scott | c41564b | 2006-03-29 08:55:14 +1000 | [diff] [blame] | 1471 | * This is not necessary for synchronous direct I/O, but we do |
Christoph Hellwig | f097386 | 2005-09-05 08:22:52 +1000 | [diff] [blame] | 1472 | * it anyway to keep the code uniform and simpler. |
| 1473 | * |
David Chinner | e927af9 | 2007-06-05 16:24:36 +1000 | [diff] [blame] | 1474 | * Well, if only it were that simple. Because synchronous direct I/O |
| 1475 | * requires extent conversion to occur *before* we return to userspace, |
| 1476 | * we have to wait for extent conversion to complete. Look at the |
| 1477 | * iocb that has been passed to us to determine if this is AIO or |
| 1478 | * not. If it is synchronous, tell xfs_finish_ioend() to kick the |
| 1479 | * workqueue and wait for it to complete. |
| 1480 | * |
Christoph Hellwig | f097386 | 2005-09-05 08:22:52 +1000 | [diff] [blame] | 1481 | * The core direct I/O code might be changed to always call the |
| 1482 | * completion handler in the future, in which case all this can |
| 1483 | * go away. |
| 1484 | */ |
Lachlan McIlroy | ba87ea6 | 2007-05-08 13:49:46 +1000 | [diff] [blame] | 1485 | ioend->io_offset = offset; |
| 1486 | ioend->io_size = size; |
| 1487 | if (ioend->io_type == IOMAP_READ) { |
David Chinner | e927af9 | 2007-06-05 16:24:36 +1000 | [diff] [blame] | 1488 | xfs_finish_ioend(ioend, 0); |
Lachlan McIlroy | ba87ea6 | 2007-05-08 13:49:46 +1000 | [diff] [blame] | 1489 | } else if (private && size > 0) { |
David Chinner | e927af9 | 2007-06-05 16:24:36 +1000 | [diff] [blame] | 1490 | xfs_finish_ioend(ioend, is_sync_kiocb(iocb)); |
Christoph Hellwig | f097386 | 2005-09-05 08:22:52 +1000 | [diff] [blame] | 1491 | } else { |
Lachlan McIlroy | ba87ea6 | 2007-05-08 13:49:46 +1000 | [diff] [blame] | 1492 | /* |
| 1493 | * A direct I/O write ioend starts it's life in unwritten |
| 1494 | * state in case they map an unwritten extent. This write |
| 1495 | * didn't map an unwritten extent so switch it's completion |
| 1496 | * handler. |
| 1497 | */ |
Christoph Hellwig | 5ec4fab | 2009-10-30 09:11:47 +0000 | [diff] [blame^] | 1498 | ioend->io_type = IOMAP_NEW; |
David Chinner | e927af9 | 2007-06-05 16:24:36 +1000 | [diff] [blame] | 1499 | xfs_finish_ioend(ioend, 0); |
Christoph Hellwig | f097386 | 2005-09-05 08:22:52 +1000 | [diff] [blame] | 1500 | } |
| 1501 | |
| 1502 | /* |
Nathan Scott | c41564b | 2006-03-29 08:55:14 +1000 | [diff] [blame] | 1503 | * blockdev_direct_IO can return an error even after the I/O |
Christoph Hellwig | f097386 | 2005-09-05 08:22:52 +1000 | [diff] [blame] | 1504 | * completion handler was called. Thus we need to protect |
| 1505 | * against double-freeing. |
| 1506 | */ |
| 1507 | iocb->private = NULL; |
| 1508 | } |
| 1509 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1510 | STATIC ssize_t |
Nathan Scott | e4c573b | 2006-03-14 13:54:26 +1100 | [diff] [blame] | 1511 | xfs_vm_direct_IO( |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1512 | int rw, |
| 1513 | struct kiocb *iocb, |
| 1514 | const struct iovec *iov, |
| 1515 | loff_t offset, |
| 1516 | unsigned long nr_segs) |
| 1517 | { |
| 1518 | struct file *file = iocb->ki_filp; |
| 1519 | struct inode *inode = file->f_mapping->host; |
Christoph Hellwig | 6214ed4 | 2007-09-14 15:23:17 +1000 | [diff] [blame] | 1520 | struct block_device *bdev; |
Christoph Hellwig | f097386 | 2005-09-05 08:22:52 +1000 | [diff] [blame] | 1521 | ssize_t ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1522 | |
Christoph Hellwig | 6214ed4 | 2007-09-14 15:23:17 +1000 | [diff] [blame] | 1523 | bdev = xfs_find_bdev_for_inode(XFS_I(inode)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1524 | |
Lachlan McIlroy | 721259b | 2006-09-07 14:27:05 +1000 | [diff] [blame] | 1525 | if (rw == WRITE) { |
Lachlan McIlroy | ba87ea6 | 2007-05-08 13:49:46 +1000 | [diff] [blame] | 1526 | iocb->private = xfs_alloc_ioend(inode, IOMAP_UNWRITTEN); |
Lachlan McIlroy | 721259b | 2006-09-07 14:27:05 +1000 | [diff] [blame] | 1527 | ret = blockdev_direct_IO_own_locking(rw, iocb, inode, |
Christoph Hellwig | 6214ed4 | 2007-09-14 15:23:17 +1000 | [diff] [blame] | 1528 | bdev, iov, offset, nr_segs, |
Lachlan McIlroy | 721259b | 2006-09-07 14:27:05 +1000 | [diff] [blame] | 1529 | xfs_get_blocks_direct, |
| 1530 | xfs_end_io_direct); |
| 1531 | } else { |
Lachlan McIlroy | ba87ea6 | 2007-05-08 13:49:46 +1000 | [diff] [blame] | 1532 | iocb->private = xfs_alloc_ioend(inode, IOMAP_READ); |
Lachlan McIlroy | 721259b | 2006-09-07 14:27:05 +1000 | [diff] [blame] | 1533 | ret = blockdev_direct_IO_no_locking(rw, iocb, inode, |
Christoph Hellwig | 6214ed4 | 2007-09-14 15:23:17 +1000 | [diff] [blame] | 1534 | bdev, iov, offset, nr_segs, |
Lachlan McIlroy | 721259b | 2006-09-07 14:27:05 +1000 | [diff] [blame] | 1535 | xfs_get_blocks_direct, |
| 1536 | xfs_end_io_direct); |
| 1537 | } |
Christoph Hellwig | f097386 | 2005-09-05 08:22:52 +1000 | [diff] [blame] | 1538 | |
Zach Brown | 8459d86 | 2006-12-10 02:21:05 -0800 | [diff] [blame] | 1539 | if (unlikely(ret != -EIOCBQUEUED && iocb->private)) |
Christoph Hellwig | f097386 | 2005-09-05 08:22:52 +1000 | [diff] [blame] | 1540 | xfs_destroy_ioend(iocb->private); |
| 1541 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1542 | } |
| 1543 | |
Nathan Scott | f51623b | 2006-03-14 13:26:27 +1100 | [diff] [blame] | 1544 | STATIC int |
Nick Piggin | d79689c | 2007-10-16 01:25:06 -0700 | [diff] [blame] | 1545 | xfs_vm_write_begin( |
Nathan Scott | f51623b | 2006-03-14 13:26:27 +1100 | [diff] [blame] | 1546 | struct file *file, |
Nick Piggin | d79689c | 2007-10-16 01:25:06 -0700 | [diff] [blame] | 1547 | struct address_space *mapping, |
| 1548 | loff_t pos, |
| 1549 | unsigned len, |
| 1550 | unsigned flags, |
| 1551 | struct page **pagep, |
| 1552 | void **fsdata) |
Nathan Scott | f51623b | 2006-03-14 13:26:27 +1100 | [diff] [blame] | 1553 | { |
Nick Piggin | d79689c | 2007-10-16 01:25:06 -0700 | [diff] [blame] | 1554 | *pagep = NULL; |
| 1555 | return block_write_begin(file, mapping, pos, len, flags, pagep, fsdata, |
| 1556 | xfs_get_blocks); |
Nathan Scott | f51623b | 2006-03-14 13:26:27 +1100 | [diff] [blame] | 1557 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1558 | |
| 1559 | STATIC sector_t |
Nathan Scott | e4c573b | 2006-03-14 13:54:26 +1100 | [diff] [blame] | 1560 | xfs_vm_bmap( |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1561 | struct address_space *mapping, |
| 1562 | sector_t block) |
| 1563 | { |
| 1564 | struct inode *inode = (struct inode *)mapping->host; |
Christoph Hellwig | 739bfb2 | 2007-08-29 10:58:01 +1000 | [diff] [blame] | 1565 | struct xfs_inode *ip = XFS_I(inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1566 | |
Lachlan McIlroy | cf441ee | 2008-02-07 16:42:19 +1100 | [diff] [blame] | 1567 | xfs_itrace_entry(XFS_I(inode)); |
Christoph Hellwig | 126468b | 2008-03-06 13:44:57 +1100 | [diff] [blame] | 1568 | xfs_ilock(ip, XFS_IOLOCK_SHARED); |
Christoph Hellwig | 739bfb2 | 2007-08-29 10:58:01 +1000 | [diff] [blame] | 1569 | xfs_flush_pages(ip, (xfs_off_t)0, -1, 0, FI_REMAPF); |
Christoph Hellwig | 126468b | 2008-03-06 13:44:57 +1100 | [diff] [blame] | 1570 | xfs_iunlock(ip, XFS_IOLOCK_SHARED); |
Nathan Scott | c253666 | 2006-03-29 10:44:40 +1000 | [diff] [blame] | 1571 | return generic_block_bmap(mapping, block, xfs_get_blocks); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1572 | } |
| 1573 | |
| 1574 | STATIC int |
Nathan Scott | e4c573b | 2006-03-14 13:54:26 +1100 | [diff] [blame] | 1575 | xfs_vm_readpage( |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1576 | struct file *unused, |
| 1577 | struct page *page) |
| 1578 | { |
Nathan Scott | c253666 | 2006-03-29 10:44:40 +1000 | [diff] [blame] | 1579 | return mpage_readpage(page, xfs_get_blocks); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1580 | } |
| 1581 | |
| 1582 | STATIC int |
Nathan Scott | e4c573b | 2006-03-14 13:54:26 +1100 | [diff] [blame] | 1583 | xfs_vm_readpages( |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1584 | struct file *unused, |
| 1585 | struct address_space *mapping, |
| 1586 | struct list_head *pages, |
| 1587 | unsigned nr_pages) |
| 1588 | { |
Nathan Scott | c253666 | 2006-03-29 10:44:40 +1000 | [diff] [blame] | 1589 | return mpage_readpages(mapping, pages, nr_pages, xfs_get_blocks); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1590 | } |
| 1591 | |
NeilBrown | 2ff28e2 | 2006-03-26 01:37:18 -0800 | [diff] [blame] | 1592 | STATIC void |
Nathan Scott | 238f4c5 | 2006-03-17 17:26:25 +1100 | [diff] [blame] | 1593 | xfs_vm_invalidatepage( |
Nathan Scott | bcec2b7 | 2005-09-02 16:40:17 +1000 | [diff] [blame] | 1594 | struct page *page, |
| 1595 | unsigned long offset) |
| 1596 | { |
| 1597 | xfs_page_trace(XFS_INVALIDPAGE_ENTER, |
| 1598 | page->mapping->host, page, offset); |
NeilBrown | 2ff28e2 | 2006-03-26 01:37:18 -0800 | [diff] [blame] | 1599 | block_invalidatepage(page, offset); |
Nathan Scott | bcec2b7 | 2005-09-02 16:40:17 +1000 | [diff] [blame] | 1600 | } |
| 1601 | |
Christoph Hellwig | f5e54d6 | 2006-06-28 04:26:44 -0700 | [diff] [blame] | 1602 | const struct address_space_operations xfs_address_space_operations = { |
Nathan Scott | e4c573b | 2006-03-14 13:54:26 +1100 | [diff] [blame] | 1603 | .readpage = xfs_vm_readpage, |
| 1604 | .readpages = xfs_vm_readpages, |
| 1605 | .writepage = xfs_vm_writepage, |
Nathan Scott | 7d4fb40 | 2006-06-09 15:27:16 +1000 | [diff] [blame] | 1606 | .writepages = xfs_vm_writepages, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1607 | .sync_page = block_sync_page, |
Nathan Scott | 238f4c5 | 2006-03-17 17:26:25 +1100 | [diff] [blame] | 1608 | .releasepage = xfs_vm_releasepage, |
| 1609 | .invalidatepage = xfs_vm_invalidatepage, |
Nick Piggin | d79689c | 2007-10-16 01:25:06 -0700 | [diff] [blame] | 1610 | .write_begin = xfs_vm_write_begin, |
| 1611 | .write_end = generic_write_end, |
Nathan Scott | e4c573b | 2006-03-14 13:54:26 +1100 | [diff] [blame] | 1612 | .bmap = xfs_vm_bmap, |
| 1613 | .direct_IO = xfs_vm_direct_IO, |
Christoph Lameter | e965f96 | 2006-02-01 03:05:41 -0800 | [diff] [blame] | 1614 | .migratepage = buffer_migrate_page, |
Hisashi Hifumi | bddaafa | 2009-03-29 09:53:38 +0200 | [diff] [blame] | 1615 | .is_partially_uptodate = block_is_partially_uptodate, |
Andi Kleen | aa261f5 | 2009-09-16 11:50:16 +0200 | [diff] [blame] | 1616 | .error_remove_page = generic_error_remove_page, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1617 | }; |