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