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