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