blob: 80a3214623152802e0f726c6eac9a3153384eeb3 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Nathan Scott7b718762005-11-02 14:58:39 +11002 * Copyright (c) 2000-2005 Silicon Graphics, Inc.
3 * All Rights Reserved.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
Nathan Scott7b718762005-11-02 14:58:39 +11005 * 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 Torvalds1da177e2005-04-16 15:20:36 -07007 * published by the Free Software Foundation.
8 *
Nathan Scott7b718762005-11-02 14:58:39 +11009 * 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 Torvalds1da177e2005-04-16 15:20:36 -070013 *
Nathan Scott7b718762005-11-02 14:58:39 +110014 * 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 Torvalds1da177e2005-04-16 15:20:36 -070017 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include "xfs.h"
Nathan Scotta844f452005-11-02 14:38:42 +110019#include "xfs_bit.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include "xfs_log.h"
Nathan Scotta844f452005-11-02 14:38:42 +110021#include "xfs_inum.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include "xfs_sb.h"
Nathan Scotta844f452005-11-02 14:38:42 +110023#include "xfs_ag.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#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 Torvalds1da177e2005-04-16 15:20:36 -070031#include "xfs_dir2_sf.h"
Nathan Scotta844f452005-11-02 14:38:42 +110032#include "xfs_attr_sf.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include "xfs_dinode.h"
34#include "xfs_inode.h"
Nathan Scotta844f452005-11-02 14:38:42 +110035#include "xfs_alloc.h"
36#include "xfs_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#include "xfs_error.h"
38#include "xfs_rw.h"
39#include "xfs_iomap.h"
40#include <linux/mpage.h>
Christoph Hellwig10ce4442006-01-11 20:48:14 +110041#include <linux/pagevec.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070042#include <linux/writeback.h>
43
Nathan Scottf51623b2006-03-14 13:26:27 +110044STATIC void
45xfs_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 Scottf51623b2006-03-14 13:26:27 +110059 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 Torvalds1da177e2005-04-16 15:20:36 -070066#if defined(XFS_RW_TRACE)
67void
68xfs_page_trace(
69 int tag,
70 struct inode *inode,
71 struct page *page,
Nathan Scotted9d88f2006-09-28 10:56:43 +100072 unsigned long pgoff)
Linus Torvalds1da177e2005-04-16 15:20:36 -070073{
74 xfs_inode_t *ip;
Nathan Scott67fcaa72006-06-09 17:00:52 +100075 bhv_vnode_t *vp = vn_from_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -070076 loff_t isize = i_size_read(inode);
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +110077 loff_t offset = page_offset(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 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 Hellwig75e17b32006-01-11 20:58:44 +110083 ip = xfs_vtoi(vp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070084 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 Scotted9d88f2006-09-28 10:56:43 +100092 (void *)pgoff,
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 (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 Luf1fdc842006-03-22 12:44:15 +1100102 (void *)((unsigned long)current_pid()),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 (void *)NULL);
104}
105#else
Nathan Scotted9d88f2006-09-28 10:56:43 +1000106#define xfs_page_trace(tag, inode, page, pgoff)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107#endif
108
Christoph Hellwig0829c362005-09-02 16:58:49 +1000109/*
110 * Schedule IO completion handling on a xfsdatad if this was
David Chinnere927af92007-06-05 16:24:36 +1000111 * the final hold on this ioend. If we are asked to wait,
112 * flush the workqueue.
Christoph Hellwig0829c362005-09-02 16:58:49 +1000113 */
114STATIC void
115xfs_finish_ioend(
David Chinnere927af92007-06-05 16:24:36 +1000116 xfs_ioend_t *ioend,
117 int wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118{
David Chinnere927af92007-06-05 16:24:36 +1000119 if (atomic_dec_and_test(&ioend->io_remaining)) {
Christoph Hellwig0829c362005-09-02 16:58:49 +1000120 queue_work(xfsdatad_workqueue, &ioend->io_work);
David Chinnere927af92007-06-05 16:24:36 +1000121 if (wait)
122 flush_workqueue(xfsdatad_workqueue);
123 }
Christoph Hellwig0829c362005-09-02 16:58:49 +1000124}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100126/*
127 * We're now finished for good with this ioend structure.
128 * Update the page state via the associated buffer_heads,
129 * release holds on the inode and bio, and finally free
130 * up memory. Do not use the ioend after this.
131 */
Christoph Hellwig0829c362005-09-02 16:58:49 +1000132STATIC void
133xfs_destroy_ioend(
134 xfs_ioend_t *ioend)
135{
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100136 struct buffer_head *bh, *next;
137
138 for (bh = ioend->io_buffer_head; bh; bh = next) {
139 next = bh->b_private;
Nathan Scott7d04a332006-06-09 14:58:38 +1000140 bh->b_end_io(bh, !ioend->io_error);
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100141 }
Nathan Scott7d04a332006-06-09 14:58:38 +1000142 if (unlikely(ioend->io_error))
143 vn_ioerror(ioend->io_vnode, ioend->io_error, __FILE__,__LINE__);
Christoph Hellwig0829c362005-09-02 16:58:49 +1000144 vn_iowake(ioend->io_vnode);
145 mempool_free(ioend, xfs_ioend_pool);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146}
147
148/*
Lachlan McIlroyba87ea62007-05-08 13:49:46 +1000149 * Update on-disk file size now that data has been written to disk.
150 * The current in-memory file size is i_size. If a write is beyond
151 * eof io_new_size will be the intended file size until i_size is
152 * updated. If this write does not extend all the way to the valid
153 * file size then restrict this update to the end of the write.
154 */
155STATIC void
156xfs_setfilesize(
157 xfs_ioend_t *ioend)
158{
159 xfs_inode_t *ip;
160 xfs_fsize_t isize;
161 xfs_fsize_t bsize;
162
163 ip = xfs_vtoi(ioend->io_vnode);
164
165 ASSERT((ip->i_d.di_mode & S_IFMT) == S_IFREG);
166 ASSERT(ioend->io_type != IOMAP_READ);
167
168 if (unlikely(ioend->io_error))
169 return;
170
171 bsize = ioend->io_offset + ioend->io_size;
172
173 xfs_ilock(ip, XFS_ILOCK_EXCL);
174
175 isize = MAX(ip->i_size, ip->i_iocore.io_new_size);
176 isize = MIN(isize, bsize);
177
178 if (ip->i_d.di_size < isize) {
179 ip->i_d.di_size = isize;
180 ip->i_update_core = 1;
181 ip->i_update_size = 1;
182 }
183
184 xfs_iunlock(ip, XFS_ILOCK_EXCL);
185}
186
187/*
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100188 * Buffered IO write completion for delayed allocate extents.
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100189 */
190STATIC void
191xfs_end_bio_delalloc(
David Howellsc4028952006-11-22 14:57:56 +0000192 struct work_struct *work)
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100193{
David Howellsc4028952006-11-22 14:57:56 +0000194 xfs_ioend_t *ioend =
195 container_of(work, xfs_ioend_t, io_work);
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100196
Lachlan McIlroyba87ea62007-05-08 13:49:46 +1000197 xfs_setfilesize(ioend);
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100198 xfs_destroy_ioend(ioend);
199}
200
201/*
202 * Buffered IO write completion for regular, written extents.
203 */
204STATIC void
205xfs_end_bio_written(
David Howellsc4028952006-11-22 14:57:56 +0000206 struct work_struct *work)
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100207{
David Howellsc4028952006-11-22 14:57:56 +0000208 xfs_ioend_t *ioend =
209 container_of(work, xfs_ioend_t, io_work);
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100210
Lachlan McIlroyba87ea62007-05-08 13:49:46 +1000211 xfs_setfilesize(ioend);
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100212 xfs_destroy_ioend(ioend);
213}
214
215/*
216 * IO write completion for unwritten extents.
217 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 * Issue transactions to convert a buffer range from unwritten
Christoph Hellwigf0973862005-09-05 08:22:52 +1000219 * to written extents.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 */
221STATIC void
Christoph Hellwig0829c362005-09-02 16:58:49 +1000222xfs_end_bio_unwritten(
David Howellsc4028952006-11-22 14:57:56 +0000223 struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224{
David Howellsc4028952006-11-22 14:57:56 +0000225 xfs_ioend_t *ioend =
226 container_of(work, xfs_ioend_t, io_work);
Nathan Scott67fcaa72006-06-09 17:00:52 +1000227 bhv_vnode_t *vp = ioend->io_vnode;
Christoph Hellwig0829c362005-09-02 16:58:49 +1000228 xfs_off_t offset = ioend->io_offset;
229 size_t size = ioend->io_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230
Lachlan McIlroyba87ea62007-05-08 13:49:46 +1000231 if (likely(!ioend->io_error)) {
Nathan Scott67fcaa72006-06-09 17:00:52 +1000232 bhv_vop_bmap(vp, offset, size, BMAPI_UNWRITTEN, NULL, NULL);
Lachlan McIlroyba87ea62007-05-08 13:49:46 +1000233 xfs_setfilesize(ioend);
234 }
235 xfs_destroy_ioend(ioend);
236}
237
238/*
239 * IO read completion for regular, written extents.
240 */
241STATIC void
242xfs_end_bio_read(
243 struct work_struct *work)
244{
245 xfs_ioend_t *ioend =
246 container_of(work, xfs_ioend_t, io_work);
247
Christoph Hellwig0829c362005-09-02 16:58:49 +1000248 xfs_destroy_ioend(ioend);
249}
250
251/*
252 * Allocate and initialise an IO completion structure.
253 * We need to track unwritten extent write completion here initially.
254 * We'll need to extend this for updating the ondisk inode size later
255 * (vs. incore size).
256 */
257STATIC xfs_ioend_t *
258xfs_alloc_ioend(
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100259 struct inode *inode,
260 unsigned int type)
Christoph Hellwig0829c362005-09-02 16:58:49 +1000261{
262 xfs_ioend_t *ioend;
263
264 ioend = mempool_alloc(xfs_ioend_pool, GFP_NOFS);
265
266 /*
267 * Set the count to 1 initially, which will prevent an I/O
268 * completion callback from happening before we have started
269 * all the I/O from calling the completion routine too early.
270 */
271 atomic_set(&ioend->io_remaining, 1);
Nathan Scott7d04a332006-06-09 14:58:38 +1000272 ioend->io_error = 0;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100273 ioend->io_list = NULL;
274 ioend->io_type = type;
Nathan Scottec86dc02006-03-17 17:25:36 +1100275 ioend->io_vnode = vn_from_inode(inode);
Christoph Hellwigc1a073b2005-09-05 08:23:35 +1000276 ioend->io_buffer_head = NULL;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100277 ioend->io_buffer_tail = NULL;
Christoph Hellwig0829c362005-09-02 16:58:49 +1000278 atomic_inc(&ioend->io_vnode->v_iocount);
279 ioend->io_offset = 0;
280 ioend->io_size = 0;
281
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100282 if (type == IOMAP_UNWRITTEN)
David Howellsc4028952006-11-22 14:57:56 +0000283 INIT_WORK(&ioend->io_work, xfs_end_bio_unwritten);
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100284 else if (type == IOMAP_DELAY)
David Howellsc4028952006-11-22 14:57:56 +0000285 INIT_WORK(&ioend->io_work, xfs_end_bio_delalloc);
Lachlan McIlroyba87ea62007-05-08 13:49:46 +1000286 else if (type == IOMAP_READ)
287 INIT_WORK(&ioend->io_work, xfs_end_bio_read);
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100288 else
David Howellsc4028952006-11-22 14:57:56 +0000289 INIT_WORK(&ioend->io_work, xfs_end_bio_written);
Christoph Hellwig0829c362005-09-02 16:58:49 +1000290
291 return ioend;
292}
293
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294STATIC int
295xfs_map_blocks(
296 struct inode *inode,
297 loff_t offset,
298 ssize_t count,
299 xfs_iomap_t *mapp,
300 int flags)
301{
Nathan Scott67fcaa72006-06-09 17:00:52 +1000302 bhv_vnode_t *vp = vn_from_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 int error, nmaps = 1;
304
Nathan Scott67fcaa72006-06-09 17:00:52 +1000305 error = bhv_vop_bmap(vp, offset, count, flags, mapp, &nmaps);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 if (!error && (flags & (BMAPI_WRITE|BMAPI_ALLOCATE)))
307 VMODIFY(vp);
308 return -error;
309}
310
David Chinner7989cb82007-02-10 18:34:56 +1100311STATIC_INLINE int
Christoph Hellwig1defeac2006-01-11 20:48:33 +1100312xfs_iomap_valid(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 xfs_iomap_t *iomapp,
Christoph Hellwig1defeac2006-01-11 20:48:33 +1100314 loff_t offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315{
Christoph Hellwig1defeac2006-01-11 20:48:33 +1100316 return offset >= iomapp->iomap_offset &&
317 offset < iomapp->iomap_offset + iomapp->iomap_bsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318}
319
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100320/*
321 * BIO completion handler for buffered IO.
322 */
323STATIC int
324xfs_end_bio(
325 struct bio *bio,
326 unsigned int bytes_done,
327 int error)
328{
329 xfs_ioend_t *ioend = bio->bi_private;
330
331 if (bio->bi_size)
332 return 1;
333
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100334 ASSERT(atomic_read(&bio->bi_cnt) >= 1);
Nathan Scott7d04a332006-06-09 14:58:38 +1000335 ioend->io_error = test_bit(BIO_UPTODATE, &bio->bi_flags) ? 0 : error;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100336
337 /* Toss bio and pass work off to an xfsdatad thread */
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100338 bio->bi_private = NULL;
339 bio->bi_end_io = NULL;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100340 bio_put(bio);
Nathan Scott7d04a332006-06-09 14:58:38 +1000341
David Chinnere927af92007-06-05 16:24:36 +1000342 xfs_finish_ioend(ioend, 0);
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100343 return 0;
344}
345
346STATIC void
347xfs_submit_ioend_bio(
348 xfs_ioend_t *ioend,
349 struct bio *bio)
350{
351 atomic_inc(&ioend->io_remaining);
352
353 bio->bi_private = ioend;
354 bio->bi_end_io = xfs_end_bio;
355
356 submit_bio(WRITE, bio);
357 ASSERT(!bio_flagged(bio, BIO_EOPNOTSUPP));
358 bio_put(bio);
359}
360
361STATIC struct bio *
362xfs_alloc_ioend_bio(
363 struct buffer_head *bh)
364{
365 struct bio *bio;
366 int nvecs = bio_get_nr_vecs(bh->b_bdev);
367
368 do {
369 bio = bio_alloc(GFP_NOIO, nvecs);
370 nvecs >>= 1;
371 } while (!bio);
372
373 ASSERT(bio->bi_private == NULL);
374 bio->bi_sector = bh->b_blocknr * (bh->b_size >> 9);
375 bio->bi_bdev = bh->b_bdev;
376 bio_get(bio);
377 return bio;
378}
379
380STATIC void
381xfs_start_buffer_writeback(
382 struct buffer_head *bh)
383{
384 ASSERT(buffer_mapped(bh));
385 ASSERT(buffer_locked(bh));
386 ASSERT(!buffer_delay(bh));
387 ASSERT(!buffer_unwritten(bh));
388
389 mark_buffer_async_write(bh);
390 set_buffer_uptodate(bh);
391 clear_buffer_dirty(bh);
392}
393
394STATIC void
395xfs_start_page_writeback(
396 struct page *page,
397 struct writeback_control *wbc,
398 int clear_dirty,
399 int buffers)
400{
401 ASSERT(PageLocked(page));
402 ASSERT(!PageWriteback(page));
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100403 if (clear_dirty)
David Chinner92132022006-12-21 10:24:01 +1100404 clear_page_dirty_for_io(page);
405 set_page_writeback(page);
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100406 unlock_page(page);
407 if (!buffers) {
408 end_page_writeback(page);
409 wbc->pages_skipped++; /* We didn't write this page */
410 }
411}
412
413static inline int bio_add_buffer(struct bio *bio, struct buffer_head *bh)
414{
415 return bio_add_page(bio, bh->b_page, bh->b_size, bh_offset(bh));
416}
417
418/*
David Chinnerd88992f2006-01-18 13:38:12 +1100419 * Submit all of the bios for all of the ioends we have saved up, covering the
420 * initial writepage page and also any probed pages.
421 *
422 * Because we may have multiple ioends spanning a page, we need to start
423 * writeback on all the buffers before we submit them for I/O. If we mark the
424 * buffers as we got, then we can end up with a page that only has buffers
425 * marked async write and I/O complete on can occur before we mark the other
426 * buffers async write.
427 *
428 * The end result of this is that we trip a bug in end_page_writeback() because
429 * we call it twice for the one page as the code in end_buffer_async_write()
430 * assumes that all buffers on the page are started at the same time.
431 *
432 * The fix is two passes across the ioend list - one to start writeback on the
Nathan Scottc41564b2006-03-29 08:55:14 +1000433 * buffer_heads, and then submit them for I/O on the second pass.
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100434 */
435STATIC void
436xfs_submit_ioend(
437 xfs_ioend_t *ioend)
438{
David Chinnerd88992f2006-01-18 13:38:12 +1100439 xfs_ioend_t *head = ioend;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100440 xfs_ioend_t *next;
441 struct buffer_head *bh;
442 struct bio *bio;
443 sector_t lastblock = 0;
444
David Chinnerd88992f2006-01-18 13:38:12 +1100445 /* Pass 1 - start writeback */
446 do {
447 next = ioend->io_list;
448 for (bh = ioend->io_buffer_head; bh; bh = bh->b_private) {
449 xfs_start_buffer_writeback(bh);
450 }
451 } while ((ioend = next) != NULL);
452
453 /* Pass 2 - submit I/O */
454 ioend = head;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100455 do {
456 next = ioend->io_list;
457 bio = NULL;
458
459 for (bh = ioend->io_buffer_head; bh; bh = bh->b_private) {
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100460
461 if (!bio) {
462 retry:
463 bio = xfs_alloc_ioend_bio(bh);
464 } else if (bh->b_blocknr != lastblock + 1) {
465 xfs_submit_ioend_bio(ioend, bio);
466 goto retry;
467 }
468
469 if (bio_add_buffer(bio, bh) != bh->b_size) {
470 xfs_submit_ioend_bio(ioend, bio);
471 goto retry;
472 }
473
474 lastblock = bh->b_blocknr;
475 }
476 if (bio)
477 xfs_submit_ioend_bio(ioend, bio);
David Chinnere927af92007-06-05 16:24:36 +1000478 xfs_finish_ioend(ioend, 0);
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100479 } while ((ioend = next) != NULL);
480}
481
482/*
483 * Cancel submission of all buffer_heads so far in this endio.
484 * Toss the endio too. Only ever called for the initial page
485 * in a writepage request, so only ever one page.
486 */
487STATIC void
488xfs_cancel_ioend(
489 xfs_ioend_t *ioend)
490{
491 xfs_ioend_t *next;
492 struct buffer_head *bh, *next_bh;
493
494 do {
495 next = ioend->io_list;
496 bh = ioend->io_buffer_head;
497 do {
498 next_bh = bh->b_private;
499 clear_buffer_async_write(bh);
500 unlock_buffer(bh);
501 } while ((bh = next_bh) != NULL);
502
503 vn_iowake(ioend->io_vnode);
504 mempool_free(ioend, xfs_ioend_pool);
505 } while ((ioend = next) != NULL);
506}
507
508/*
509 * Test to see if we've been building up a completion structure for
510 * earlier buffers -- if so, we try to append to this ioend if we
511 * can, otherwise we finish off any current ioend and start another.
512 * Return true if we've finished the given ioend.
513 */
514STATIC void
515xfs_add_to_ioend(
516 struct inode *inode,
517 struct buffer_head *bh,
Christoph Hellwig7336cea2006-01-11 20:49:16 +1100518 xfs_off_t offset,
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100519 unsigned int type,
520 xfs_ioend_t **result,
521 int need_ioend)
522{
523 xfs_ioend_t *ioend = *result;
524
525 if (!ioend || need_ioend || type != ioend->io_type) {
526 xfs_ioend_t *previous = *result;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100527
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100528 ioend = xfs_alloc_ioend(inode, type);
529 ioend->io_offset = offset;
530 ioend->io_buffer_head = bh;
531 ioend->io_buffer_tail = bh;
532 if (previous)
533 previous->io_list = ioend;
534 *result = ioend;
535 } else {
536 ioend->io_buffer_tail->b_private = bh;
537 ioend->io_buffer_tail = bh;
538 }
539
540 bh->b_private = NULL;
541 ioend->io_size += bh->b_size;
542}
543
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544STATIC void
Nathan Scott87cbc492006-03-14 13:26:43 +1100545xfs_map_buffer(
546 struct buffer_head *bh,
547 xfs_iomap_t *mp,
548 xfs_off_t offset,
549 uint block_bits)
550{
551 sector_t bn;
552
553 ASSERT(mp->iomap_bn != IOMAP_DADDR_NULL);
554
555 bn = (mp->iomap_bn >> (block_bits - BBSHIFT)) +
556 ((offset - mp->iomap_offset) >> block_bits);
557
558 ASSERT(bn || (mp->iomap_flags & IOMAP_REALTIME));
559
560 bh->b_blocknr = bn;
561 set_buffer_mapped(bh);
562}
563
564STATIC void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565xfs_map_at_offset(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 struct buffer_head *bh,
Christoph Hellwig1defeac2006-01-11 20:48:33 +1100567 loff_t offset,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 int block_bits,
Christoph Hellwig1defeac2006-01-11 20:48:33 +1100569 xfs_iomap_t *iomapp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 ASSERT(!(iomapp->iomap_flags & IOMAP_HOLE));
572 ASSERT(!(iomapp->iomap_flags & IOMAP_DELAY));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573
574 lock_buffer(bh);
Nathan Scott87cbc492006-03-14 13:26:43 +1100575 xfs_map_buffer(bh, iomapp, offset, block_bits);
Nathan Scottce8e9222006-01-11 15:39:08 +1100576 bh->b_bdev = iomapp->iomap_target->bt_bdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 set_buffer_mapped(bh);
578 clear_buffer_delay(bh);
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100579 clear_buffer_unwritten(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580}
581
582/*
Christoph Hellwig6c4fe192006-01-11 20:49:28 +1100583 * Look for a page at index that is suitable for clustering.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 */
585STATIC unsigned int
Christoph Hellwig6c4fe192006-01-11 20:49:28 +1100586xfs_probe_page(
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100587 struct page *page,
Christoph Hellwig6c4fe192006-01-11 20:49:28 +1100588 unsigned int pg_offset,
589 int mapped)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 int ret = 0;
592
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 if (PageWriteback(page))
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100594 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595
596 if (page->mapping && PageDirty(page)) {
597 if (page_has_buffers(page)) {
598 struct buffer_head *bh, *head;
599
600 bh = head = page_buffers(page);
601 do {
Christoph Hellwig6c4fe192006-01-11 20:49:28 +1100602 if (!buffer_uptodate(bh))
603 break;
604 if (mapped != buffer_mapped(bh))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 break;
606 ret += bh->b_size;
607 if (ret >= pg_offset)
608 break;
609 } while ((bh = bh->b_this_page) != head);
610 } else
Christoph Hellwig6c4fe192006-01-11 20:49:28 +1100611 ret = mapped ? 0 : PAGE_CACHE_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 }
613
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 return ret;
615}
616
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100617STATIC size_t
Christoph Hellwig6c4fe192006-01-11 20:49:28 +1100618xfs_probe_cluster(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 struct inode *inode,
620 struct page *startpage,
621 struct buffer_head *bh,
Christoph Hellwig6c4fe192006-01-11 20:49:28 +1100622 struct buffer_head *head,
623 int mapped)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624{
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100625 struct pagevec pvec;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 pgoff_t tindex, tlast, tloff;
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100627 size_t total = 0;
628 int done = 0, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629
630 /* First sum forwards in this page */
631 do {
Eric Sandeen2353e8e2006-02-28 12:30:30 +1100632 if (!buffer_uptodate(bh) || (mapped != buffer_mapped(bh)))
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100633 return total;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 total += bh->b_size;
635 } while ((bh = bh->b_this_page) != head);
636
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100637 /* if we reached the end of the page, sum forwards in following pages */
638 tlast = i_size_read(inode) >> PAGE_CACHE_SHIFT;
639 tindex = startpage->index + 1;
640
641 /* Prune this back to avoid pathological behavior */
642 tloff = min(tlast, startpage->index + 64);
643
644 pagevec_init(&pvec, 0);
645 while (!done && tindex <= tloff) {
646 unsigned len = min_t(pgoff_t, PAGEVEC_SIZE, tlast - tindex + 1);
647
648 if (!pagevec_lookup(&pvec, inode->i_mapping, tindex, len))
649 break;
650
651 for (i = 0; i < pagevec_count(&pvec); i++) {
652 struct page *page = pvec.pages[i];
653 size_t pg_offset, len = 0;
654
655 if (tindex == tlast) {
656 pg_offset =
657 i_size_read(inode) & (PAGE_CACHE_SIZE - 1);
Christoph Hellwig1defeac2006-01-11 20:48:33 +1100658 if (!pg_offset) {
659 done = 1;
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100660 break;
Christoph Hellwig1defeac2006-01-11 20:48:33 +1100661 }
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100662 } else
663 pg_offset = PAGE_CACHE_SIZE;
664
665 if (page->index == tindex && !TestSetPageLocked(page)) {
Christoph Hellwig6c4fe192006-01-11 20:49:28 +1100666 len = xfs_probe_page(page, pg_offset, mapped);
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100667 unlock_page(page);
668 }
669
670 if (!len) {
671 done = 1;
672 break;
673 }
674
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 total += len;
Christoph Hellwig1defeac2006-01-11 20:48:33 +1100676 tindex++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 }
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100678
679 pagevec_release(&pvec);
680 cond_resched();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 }
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100682
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 return total;
684}
685
686/*
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100687 * Test if a given page is suitable for writing as part of an unwritten
688 * or delayed allocate extent.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 */
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100690STATIC int
691xfs_is_delayed_page(
692 struct page *page,
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100693 unsigned int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 if (PageWriteback(page))
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100696 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697
698 if (page->mapping && page_has_buffers(page)) {
699 struct buffer_head *bh, *head;
700 int acceptable = 0;
701
702 bh = head = page_buffers(page);
703 do {
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100704 if (buffer_unwritten(bh))
705 acceptable = (type == IOMAP_UNWRITTEN);
706 else if (buffer_delay(bh))
707 acceptable = (type == IOMAP_DELAY);
David Chinner2ddee842006-03-22 12:47:40 +1100708 else if (buffer_dirty(bh) && buffer_mapped(bh))
David Chinnerdf3c7242007-05-24 15:27:03 +1000709 acceptable = (type == IOMAP_NEW);
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100710 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 } while ((bh = bh->b_this_page) != head);
713
714 if (acceptable)
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100715 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 }
717
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100718 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719}
720
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721/*
722 * Allocate & map buffers for page given the extent map. Write it out.
723 * except for the original page of a writepage, this is called on
724 * delalloc/unwritten pages only, for the original page it is possible
725 * that the page has no mapping at all.
726 */
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100727STATIC int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728xfs_convert_page(
729 struct inode *inode,
730 struct page *page,
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100731 loff_t tindex,
Christoph Hellwig1defeac2006-01-11 20:48:33 +1100732 xfs_iomap_t *mp,
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100733 xfs_ioend_t **ioendp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 struct writeback_control *wbc,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 int startio,
736 int all_bh)
737{
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100738 struct buffer_head *bh, *head;
Christoph Hellwig9260dc62006-01-11 20:48:47 +1100739 xfs_off_t end_offset;
740 unsigned long p_offset;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100741 unsigned int type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 int bbits = inode->i_blkbits;
Nathan Scott24e17b52005-05-05 13:33:20 -0700743 int len, page_dirty;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100744 int count = 0, done = 0, uptodate = 1;
Christoph Hellwig9260dc62006-01-11 20:48:47 +1100745 xfs_off_t offset = page_offset(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100747 if (page->index != tindex)
748 goto fail;
749 if (TestSetPageLocked(page))
750 goto fail;
751 if (PageWriteback(page))
752 goto fail_unlock_page;
753 if (page->mapping != inode->i_mapping)
754 goto fail_unlock_page;
755 if (!xfs_is_delayed_page(page, (*ioendp)->io_type))
756 goto fail_unlock_page;
757
Nathan Scott24e17b52005-05-05 13:33:20 -0700758 /*
759 * page_dirty is initially a count of buffers on the page before
Nathan Scottc41564b2006-03-29 08:55:14 +1000760 * EOF and is decremented as we move each into a cleanable state.
Christoph Hellwig9260dc62006-01-11 20:48:47 +1100761 *
762 * Derivation:
763 *
764 * End offset is the highest offset that this page should represent.
765 * If we are on the last page, (end_offset & (PAGE_CACHE_SIZE - 1))
766 * will evaluate non-zero and be less than PAGE_CACHE_SIZE and
767 * hence give us the correct page_dirty count. On any other page,
768 * it will be zero and in that case we need page_dirty to be the
769 * count of buffers on the page.
Nathan Scott24e17b52005-05-05 13:33:20 -0700770 */
Christoph Hellwig9260dc62006-01-11 20:48:47 +1100771 end_offset = min_t(unsigned long long,
772 (xfs_off_t)(page->index + 1) << PAGE_CACHE_SHIFT,
773 i_size_read(inode));
774
Nathan Scott24e17b52005-05-05 13:33:20 -0700775 len = 1 << inode->i_blkbits;
Christoph Hellwig9260dc62006-01-11 20:48:47 +1100776 p_offset = min_t(unsigned long, end_offset & (PAGE_CACHE_SIZE - 1),
777 PAGE_CACHE_SIZE);
778 p_offset = p_offset ? roundup(p_offset, len) : PAGE_CACHE_SIZE;
779 page_dirty = p_offset / len;
Nathan Scott24e17b52005-05-05 13:33:20 -0700780
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 bh = head = page_buffers(page);
782 do {
Christoph Hellwig9260dc62006-01-11 20:48:47 +1100783 if (offset >= end_offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 break;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100785 if (!buffer_uptodate(bh))
786 uptodate = 0;
787 if (!(PageUptodate(page) || buffer_uptodate(bh))) {
788 done = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 continue;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100790 }
791
Christoph Hellwig9260dc62006-01-11 20:48:47 +1100792 if (buffer_unwritten(bh) || buffer_delay(bh)) {
793 if (buffer_unwritten(bh))
794 type = IOMAP_UNWRITTEN;
795 else
796 type = IOMAP_DELAY;
797
798 if (!xfs_iomap_valid(mp, offset)) {
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100799 done = 1;
Christoph Hellwig9260dc62006-01-11 20:48:47 +1100800 continue;
801 }
802
803 ASSERT(!(mp->iomap_flags & IOMAP_HOLE));
804 ASSERT(!(mp->iomap_flags & IOMAP_DELAY));
805
806 xfs_map_at_offset(bh, offset, bbits, mp);
807 if (startio) {
Christoph Hellwig7336cea2006-01-11 20:49:16 +1100808 xfs_add_to_ioend(inode, bh, offset,
Christoph Hellwig9260dc62006-01-11 20:48:47 +1100809 type, ioendp, done);
810 } else {
811 set_buffer_dirty(bh);
812 unlock_buffer(bh);
813 mark_buffer_dirty(bh);
814 }
815 page_dirty--;
816 count++;
817 } else {
David Chinnerdf3c7242007-05-24 15:27:03 +1000818 type = IOMAP_NEW;
Christoph Hellwig9260dc62006-01-11 20:48:47 +1100819 if (buffer_mapped(bh) && all_bh && startio) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 lock_buffer(bh);
Christoph Hellwig7336cea2006-01-11 20:49:16 +1100821 xfs_add_to_ioend(inode, bh, offset,
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100822 type, ioendp, done);
823 count++;
Nathan Scott24e17b52005-05-05 13:33:20 -0700824 page_dirty--;
Christoph Hellwig9260dc62006-01-11 20:48:47 +1100825 } else {
826 done = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 }
Christoph Hellwig7336cea2006-01-11 20:49:16 +1100829 } while (offset += len, (bh = bh->b_this_page) != head);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100831 if (uptodate && bh == head)
832 SetPageUptodate(page);
833
834 if (startio) {
Christoph Hellwigf5e596b2006-01-11 20:49:42 +1100835 if (count) {
836 struct backing_dev_info *bdi;
837
838 bdi = inode->i_mapping->backing_dev_info;
David Chinner9fddaca2006-02-07 20:27:24 +1100839 wbc->nr_to_write--;
Christoph Hellwigf5e596b2006-01-11 20:49:42 +1100840 if (bdi_write_congested(bdi)) {
841 wbc->encountered_congestion = 1;
842 done = 1;
David Chinner9fddaca2006-02-07 20:27:24 +1100843 } else if (wbc->nr_to_write <= 0) {
Christoph Hellwigf5e596b2006-01-11 20:49:42 +1100844 done = 1;
845 }
846 }
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100847 xfs_start_page_writeback(page, wbc, !page_dirty, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 }
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100849
850 return done;
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100851 fail_unlock_page:
852 unlock_page(page);
853 fail:
854 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855}
856
857/*
858 * Convert & write out a cluster of pages in the same extent as defined
859 * by mp and following the start page.
860 */
861STATIC void
862xfs_cluster_write(
863 struct inode *inode,
864 pgoff_t tindex,
865 xfs_iomap_t *iomapp,
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100866 xfs_ioend_t **ioendp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 struct writeback_control *wbc,
868 int startio,
869 int all_bh,
870 pgoff_t tlast)
871{
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100872 struct pagevec pvec;
873 int done = 0, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100875 pagevec_init(&pvec, 0);
876 while (!done && tindex <= tlast) {
877 unsigned len = min_t(pgoff_t, PAGEVEC_SIZE, tlast - tindex + 1);
878
879 if (!pagevec_lookup(&pvec, inode->i_mapping, tindex, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880 break;
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100881
882 for (i = 0; i < pagevec_count(&pvec); i++) {
883 done = xfs_convert_page(inode, pvec.pages[i], tindex++,
884 iomapp, ioendp, wbc, startio, all_bh);
885 if (done)
886 break;
887 }
888
889 pagevec_release(&pvec);
890 cond_resched();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 }
892}
893
894/*
895 * Calling this without startio set means we are being asked to make a dirty
896 * page ready for freeing it's buffers. When called with startio set then
897 * we are coming from writepage.
898 *
899 * When called with startio set it is important that we write the WHOLE
900 * page if possible.
901 * The bh->b_state's cannot know if any of the blocks or which block for
902 * that matter are dirty due to mmap writes, and therefore bh uptodate is
Nathan Scottc41564b2006-03-29 08:55:14 +1000903 * only valid if the page itself isn't completely uptodate. Some layers
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904 * may clear the page dirty flag prior to calling write page, under the
905 * assumption the entire page will be written out; by not writing out the
906 * whole page the page can be reused before all valid dirty data is
907 * written out. Note: in the case of a page that has been dirty'd by
908 * mapwrite and but partially setup by block_prepare_write the
909 * bh->b_states's will not agree and only ones setup by BPW/BCW will have
910 * valid state, thus the whole page must be written out thing.
911 */
912
913STATIC int
914xfs_page_state_convert(
915 struct inode *inode,
916 struct page *page,
917 struct writeback_control *wbc,
918 int startio,
919 int unmapped) /* also implies page uptodate */
920{
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100921 struct buffer_head *bh, *head;
Christoph Hellwig1defeac2006-01-11 20:48:33 +1100922 xfs_iomap_t iomap;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100923 xfs_ioend_t *ioend = NULL, *iohead = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924 loff_t offset;
925 unsigned long p_offset = 0;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100926 unsigned int type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927 __uint64_t end_offset;
928 pgoff_t end_index, last_index, tlast;
Christoph Hellwigd5cb48a2006-01-11 20:49:02 +1100929 ssize_t size, len;
930 int flags, err, iomap_valid = 0, uptodate = 1;
Nathan Scott82721452006-04-11 15:10:55 +1000931 int page_dirty, count = 0;
932 int trylock = 0;
Christoph Hellwig6c4fe192006-01-11 20:49:28 +1100933 int all_bh = unmapped;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934
Nathan Scott82721452006-04-11 15:10:55 +1000935 if (startio) {
936 if (wbc->sync_mode == WB_SYNC_NONE && wbc->nonblocking)
937 trylock |= BMAPI_TRYLOCK;
938 }
Daniel Moore3ba08152005-05-05 13:31:34 -0700939
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 /* Is this page beyond the end of the file? */
941 offset = i_size_read(inode);
942 end_index = offset >> PAGE_CACHE_SHIFT;
943 last_index = (offset - 1) >> PAGE_CACHE_SHIFT;
944 if (page->index >= end_index) {
945 if ((page->index >= end_index + 1) ||
946 !(i_size_read(inode) & (PAGE_CACHE_SIZE - 1))) {
Nathan Scott19d5bcf2005-11-02 15:14:09 +1100947 if (startio)
948 unlock_page(page);
949 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950 }
951 }
952
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953 /*
Nathan Scott24e17b52005-05-05 13:33:20 -0700954 * page_dirty is initially a count of buffers on the page before
Nathan Scottc41564b2006-03-29 08:55:14 +1000955 * EOF and is decremented as we move each into a cleanable state.
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100956 *
957 * Derivation:
958 *
959 * End offset is the highest offset that this page should represent.
960 * If we are on the last page, (end_offset & (PAGE_CACHE_SIZE - 1))
961 * will evaluate non-zero and be less than PAGE_CACHE_SIZE and
962 * hence give us the correct page_dirty count. On any other page,
963 * it will be zero and in that case we need page_dirty to be the
964 * count of buffers on the page.
965 */
966 end_offset = min_t(unsigned long long,
967 (xfs_off_t)(page->index + 1) << PAGE_CACHE_SHIFT, offset);
Nathan Scott24e17b52005-05-05 13:33:20 -0700968 len = 1 << inode->i_blkbits;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100969 p_offset = min_t(unsigned long, end_offset & (PAGE_CACHE_SIZE - 1),
970 PAGE_CACHE_SIZE);
971 p_offset = p_offset ? roundup(p_offset, len) : PAGE_CACHE_SIZE;
Nathan Scott24e17b52005-05-05 13:33:20 -0700972 page_dirty = p_offset / len;
973
Nathan Scott24e17b52005-05-05 13:33:20 -0700974 bh = head = page_buffers(page);
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100975 offset = page_offset(page);
David Chinnerdf3c7242007-05-24 15:27:03 +1000976 flags = BMAPI_READ;
977 type = IOMAP_NEW;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100978
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100979 /* TODO: cleanup count and page_dirty */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980
981 do {
982 if (offset >= end_offset)
983 break;
984 if (!buffer_uptodate(bh))
985 uptodate = 0;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100986 if (!(PageUptodate(page) || buffer_uptodate(bh)) && !startio) {
Christoph Hellwig1defeac2006-01-11 20:48:33 +1100987 /*
988 * the iomap is actually still valid, but the ioend
989 * isn't. shouldn't happen too often.
990 */
991 iomap_valid = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992 continue;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100993 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994
Christoph Hellwig1defeac2006-01-11 20:48:33 +1100995 if (iomap_valid)
996 iomap_valid = xfs_iomap_valid(&iomap, offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997
998 /*
999 * First case, map an unwritten extent and prepare for
1000 * extent state conversion transaction on completion.
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +11001001 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002 * Second case, allocate space for a delalloc buffer.
1003 * We can return EAGAIN here in the release page case.
Christoph Hellwigd5cb48a2006-01-11 20:49:02 +11001004 *
1005 * Third case, an unmapped buffer was found, and we are
1006 * in a path where we need to write the whole page out.
David Chinnerdf3c7242007-05-24 15:27:03 +10001007 */
Christoph Hellwigd5cb48a2006-01-11 20:49:02 +11001008 if (buffer_unwritten(bh) || buffer_delay(bh) ||
1009 ((buffer_uptodate(bh) || PageUptodate(page)) &&
1010 !buffer_mapped(bh) && (unmapped || startio))) {
David Chinnerdf3c7242007-05-24 15:27:03 +10001011 /*
Christoph Hellwig6c4fe192006-01-11 20:49:28 +11001012 * Make sure we don't use a read-only iomap
1013 */
David Chinnerdf3c7242007-05-24 15:27:03 +10001014 if (flags == BMAPI_READ)
Christoph Hellwig6c4fe192006-01-11 20:49:28 +11001015 iomap_valid = 0;
1016
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +11001017 if (buffer_unwritten(bh)) {
1018 type = IOMAP_UNWRITTEN;
Nathan Scott82721452006-04-11 15:10:55 +10001019 flags = BMAPI_WRITE | BMAPI_IGNSTATE;
Christoph Hellwigd5cb48a2006-01-11 20:49:02 +11001020 } else if (buffer_delay(bh)) {
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +11001021 type = IOMAP_DELAY;
Nathan Scott82721452006-04-11 15:10:55 +10001022 flags = BMAPI_ALLOCATE | trylock;
Christoph Hellwigd5cb48a2006-01-11 20:49:02 +11001023 } else {
Christoph Hellwig6c4fe192006-01-11 20:49:28 +11001024 type = IOMAP_NEW;
Nathan Scott82721452006-04-11 15:10:55 +10001025 flags = BMAPI_WRITE | BMAPI_MMAP;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +11001026 }
1027
Christoph Hellwig1defeac2006-01-11 20:48:33 +11001028 if (!iomap_valid) {
Christoph Hellwig6c4fe192006-01-11 20:49:28 +11001029 if (type == IOMAP_NEW) {
1030 size = xfs_probe_cluster(inode,
1031 page, bh, head, 0);
Christoph Hellwigd5cb48a2006-01-11 20:49:02 +11001032 } else {
1033 size = len;
1034 }
1035
1036 err = xfs_map_blocks(inode, offset, size,
1037 &iomap, flags);
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +11001038 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039 goto error;
Christoph Hellwig1defeac2006-01-11 20:48:33 +11001040 iomap_valid = xfs_iomap_valid(&iomap, offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041 }
Christoph Hellwig1defeac2006-01-11 20:48:33 +11001042 if (iomap_valid) {
1043 xfs_map_at_offset(bh, offset,
1044 inode->i_blkbits, &iomap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045 if (startio) {
Christoph Hellwig7336cea2006-01-11 20:49:16 +11001046 xfs_add_to_ioend(inode, bh, offset,
Christoph Hellwig1defeac2006-01-11 20:48:33 +11001047 type, &ioend,
1048 !iomap_valid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049 } else {
1050 set_buffer_dirty(bh);
1051 unlock_buffer(bh);
1052 mark_buffer_dirty(bh);
1053 }
1054 page_dirty--;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +11001055 count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056 }
Christoph Hellwigd5cb48a2006-01-11 20:49:02 +11001057 } else if (buffer_uptodate(bh) && startio) {
Christoph Hellwig6c4fe192006-01-11 20:49:28 +11001058 /*
1059 * we got here because the buffer is already mapped.
1060 * That means it must already have extents allocated
1061 * underneath it. Map the extent by reading it.
1062 */
David Chinnerdf3c7242007-05-24 15:27:03 +10001063 if (!iomap_valid || flags != BMAPI_READ) {
Christoph Hellwig6c4fe192006-01-11 20:49:28 +11001064 flags = BMAPI_READ;
1065 size = xfs_probe_cluster(inode, page, bh,
1066 head, 1);
1067 err = xfs_map_blocks(inode, offset, size,
1068 &iomap, flags);
1069 if (err)
1070 goto error;
1071 iomap_valid = xfs_iomap_valid(&iomap, offset);
1072 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073
David Chinnerdf3c7242007-05-24 15:27:03 +10001074 /*
1075 * We set the type to IOMAP_NEW in case we are doing a
1076 * small write at EOF that is extending the file but
1077 * without needing an allocation. We need to update the
1078 * file size on I/O completion in this case so it is
1079 * the same case as having just allocated a new extent
1080 * that we are writing into for the first time.
1081 */
1082 type = IOMAP_NEW;
Christoph Hellwigd5cb48a2006-01-11 20:49:02 +11001083 if (!test_and_set_bit(BH_Lock, &bh->b_state)) {
1084 ASSERT(buffer_mapped(bh));
Christoph Hellwig6c4fe192006-01-11 20:49:28 +11001085 if (iomap_valid)
1086 all_bh = 1;
Christoph Hellwig7336cea2006-01-11 20:49:16 +11001087 xfs_add_to_ioend(inode, bh, offset, type,
Christoph Hellwigd5cb48a2006-01-11 20:49:02 +11001088 &ioend, !iomap_valid);
1089 page_dirty--;
1090 count++;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +11001091 } else {
Christoph Hellwig1defeac2006-01-11 20:48:33 +11001092 iomap_valid = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093 }
Christoph Hellwigd5cb48a2006-01-11 20:49:02 +11001094 } else if ((buffer_uptodate(bh) || PageUptodate(page)) &&
1095 (unmapped || startio)) {
1096 iomap_valid = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097 }
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +11001098
1099 if (!iohead)
1100 iohead = ioend;
1101
1102 } while (offset += len, ((bh = bh->b_this_page) != head));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103
1104 if (uptodate && bh == head)
1105 SetPageUptodate(page);
1106
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +11001107 if (startio)
1108 xfs_start_page_writeback(page, wbc, 1, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109
Christoph Hellwig1defeac2006-01-11 20:48:33 +11001110 if (ioend && iomap_valid) {
1111 offset = (iomap.iomap_offset + iomap.iomap_bsize - 1) >>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112 PAGE_CACHE_SHIFT;
Nathan Scott775bf6c2005-05-05 13:33:01 -07001113 tlast = min_t(pgoff_t, offset, last_index);
Christoph Hellwig1defeac2006-01-11 20:48:33 +11001114 xfs_cluster_write(inode, page->index + 1, &iomap, &ioend,
Christoph Hellwig6c4fe192006-01-11 20:49:28 +11001115 wbc, startio, all_bh, tlast);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116 }
1117
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +11001118 if (iohead)
1119 xfs_submit_ioend(iohead);
1120
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121 return page_dirty;
1122
1123error:
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +11001124 if (iohead)
1125 xfs_cancel_ioend(iohead);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126
1127 /*
1128 * If it's delalloc and we have nowhere to put it,
1129 * throw it away, unless the lower layers told
1130 * us to try again.
1131 */
1132 if (err != -EAGAIN) {
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +11001133 if (!unmapped)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134 block_invalidatepage(page, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135 ClearPageUptodate(page);
1136 }
1137 return err;
1138}
1139
Nathan Scottf51623b2006-03-14 13:26:27 +11001140/*
1141 * writepage: Called from one of two places:
1142 *
1143 * 1. we are flushing a delalloc buffer head.
1144 *
1145 * 2. we are writing out a dirty page. Typically the page dirty
1146 * state is cleared before we get here. In this case is it
1147 * conceivable we have no buffer heads.
1148 *
1149 * For delalloc space on the page we need to allocate space and
1150 * flush it. For unmapped buffer heads on the page we should
1151 * allocate space if the page is uptodate. For any other dirty
1152 * buffer heads on the page we should flush them.
1153 *
1154 * If we detect that a transaction would be required to flush
1155 * the page, we have to check the process flags first, if we
1156 * are already in a transaction or disk I/O during allocations
1157 * is off, we need to fail the writepage and redirty the page.
1158 */
1159
1160STATIC int
Nathan Scotte4c573b2006-03-14 13:54:26 +11001161xfs_vm_writepage(
Nathan Scottf51623b2006-03-14 13:26:27 +11001162 struct page *page,
1163 struct writeback_control *wbc)
1164{
1165 int error;
1166 int need_trans;
1167 int delalloc, unmapped, unwritten;
1168 struct inode *inode = page->mapping->host;
1169
1170 xfs_page_trace(XFS_WRITEPAGE_ENTER, inode, page, 0);
1171
1172 /*
1173 * We need a transaction if:
1174 * 1. There are delalloc buffers on the page
1175 * 2. The page is uptodate and we have unmapped buffers
1176 * 3. The page is uptodate and we have no buffers
1177 * 4. There are unwritten buffers on the page
1178 */
1179
1180 if (!page_has_buffers(page)) {
1181 unmapped = 1;
1182 need_trans = 1;
1183 } else {
1184 xfs_count_page_state(page, &delalloc, &unmapped, &unwritten);
1185 if (!PageUptodate(page))
1186 unmapped = 0;
1187 need_trans = delalloc + unmapped + unwritten;
1188 }
1189
1190 /*
1191 * If we need a transaction and the process flags say
1192 * we are already in a transaction, or no IO is allowed
1193 * then mark the page dirty again and leave the page
1194 * as is.
1195 */
Nathan Scott59c1b082006-06-09 14:59:13 +10001196 if (current_test_flags(PF_FSTRANS) && need_trans)
Nathan Scottf51623b2006-03-14 13:26:27 +11001197 goto out_fail;
1198
1199 /*
1200 * Delay hooking up buffer heads until we have
1201 * made our go/no-go decision.
1202 */
1203 if (!page_has_buffers(page))
1204 create_empty_buffers(page, 1 << inode->i_blkbits, 0);
1205
1206 /*
1207 * Convert delayed allocate, unwritten or unmapped space
1208 * to real space and flush out to disk.
1209 */
1210 error = xfs_page_state_convert(inode, page, wbc, 1, unmapped);
1211 if (error == -EAGAIN)
1212 goto out_fail;
1213 if (unlikely(error < 0))
1214 goto out_unlock;
1215
1216 return 0;
1217
1218out_fail:
1219 redirty_page_for_writepage(wbc, page);
1220 unlock_page(page);
1221 return 0;
1222out_unlock:
1223 unlock_page(page);
1224 return error;
1225}
1226
Nathan Scott7d4fb402006-06-09 15:27:16 +10001227STATIC int
1228xfs_vm_writepages(
1229 struct address_space *mapping,
1230 struct writeback_control *wbc)
1231{
Nathan Scott67fcaa72006-06-09 17:00:52 +10001232 struct bhv_vnode *vp = vn_from_inode(mapping->host);
Nathan Scott7d4fb402006-06-09 15:27:16 +10001233
1234 if (VN_TRUNC(vp))
1235 VUNTRUNCATE(vp);
1236 return generic_writepages(mapping, wbc);
1237}
1238
Nathan Scottf51623b2006-03-14 13:26:27 +11001239/*
1240 * Called to move a page into cleanable state - and from there
1241 * to be released. Possibly the page is already clean. We always
1242 * have buffer heads in this call.
1243 *
1244 * Returns 0 if the page is ok to release, 1 otherwise.
1245 *
1246 * Possible scenarios are:
1247 *
1248 * 1. We are being called to release a page which has been written
1249 * to via regular I/O. buffer heads will be dirty and possibly
1250 * delalloc. If no delalloc buffer heads in this case then we
1251 * can just return zero.
1252 *
1253 * 2. We are called to release a page which has been written via
1254 * mmap, all we need to do is ensure there is no delalloc
1255 * state in the buffer heads, if not we can let the caller
1256 * free them and we should come back later via writepage.
1257 */
1258STATIC int
Nathan Scott238f4c52006-03-17 17:26:25 +11001259xfs_vm_releasepage(
Nathan Scottf51623b2006-03-14 13:26:27 +11001260 struct page *page,
1261 gfp_t gfp_mask)
1262{
1263 struct inode *inode = page->mapping->host;
1264 int dirty, delalloc, unmapped, unwritten;
1265 struct writeback_control wbc = {
1266 .sync_mode = WB_SYNC_ALL,
1267 .nr_to_write = 1,
1268 };
1269
Nathan Scotted9d88f2006-09-28 10:56:43 +10001270 xfs_page_trace(XFS_RELEASEPAGE_ENTER, inode, page, 0);
Nathan Scottf51623b2006-03-14 13:26:27 +11001271
Nathan Scott238f4c52006-03-17 17:26:25 +11001272 if (!page_has_buffers(page))
1273 return 0;
1274
Nathan Scottf51623b2006-03-14 13:26:27 +11001275 xfs_count_page_state(page, &delalloc, &unmapped, &unwritten);
1276 if (!delalloc && !unwritten)
1277 goto free_buffers;
1278
1279 if (!(gfp_mask & __GFP_FS))
1280 return 0;
1281
1282 /* If we are already inside a transaction or the thread cannot
1283 * do I/O, we cannot release this page.
1284 */
Nathan Scott59c1b082006-06-09 14:59:13 +10001285 if (current_test_flags(PF_FSTRANS))
Nathan Scottf51623b2006-03-14 13:26:27 +11001286 return 0;
1287
1288 /*
1289 * Convert delalloc space to real space, do not flush the
1290 * data out to disk, that will be done by the caller.
1291 * Never need to allocate space here - we will always
1292 * come back to writepage in that case.
1293 */
1294 dirty = xfs_page_state_convert(inode, page, &wbc, 0, 0);
1295 if (dirty == 0 && !unwritten)
1296 goto free_buffers;
1297 return 0;
1298
1299free_buffers:
1300 return try_to_free_buffers(page);
1301}
1302
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303STATIC int
Nathan Scottc2536662006-03-29 10:44:40 +10001304__xfs_get_blocks(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305 struct inode *inode,
1306 sector_t iblock,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307 struct buffer_head *bh_result,
1308 int create,
1309 int direct,
1310 bmapi_flags_t flags)
1311{
Nathan Scott67fcaa72006-06-09 17:00:52 +10001312 bhv_vnode_t *vp = vn_from_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313 xfs_iomap_t iomap;
Nathan Scottfdc7ed72005-11-02 15:13:13 +11001314 xfs_off_t offset;
1315 ssize_t size;
Nathan Scottc2536662006-03-29 10:44:40 +10001316 int niomap = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318
Nathan Scottfdc7ed72005-11-02 15:13:13 +11001319 offset = (xfs_off_t)iblock << inode->i_blkbits;
Nathan Scottc2536662006-03-29 10:44:40 +10001320 ASSERT(bh_result->b_size >= (1 << inode->i_blkbits));
1321 size = bh_result->b_size;
Nathan Scott67fcaa72006-06-09 17:00:52 +10001322 error = bhv_vop_bmap(vp, offset, size,
1323 create ? flags : BMAPI_READ, &iomap, &niomap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324 if (error)
1325 return -error;
Nathan Scottc2536662006-03-29 10:44:40 +10001326 if (niomap == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327 return 0;
1328
1329 if (iomap.iomap_bn != IOMAP_DADDR_NULL) {
Nathan Scott87cbc492006-03-14 13:26:43 +11001330 /*
1331 * For unwritten extents do not report a disk address on
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332 * the read case (treat as if we're reading into a hole).
1333 */
1334 if (create || !(iomap.iomap_flags & IOMAP_UNWRITTEN)) {
Nathan Scott87cbc492006-03-14 13:26:43 +11001335 xfs_map_buffer(bh_result, &iomap, offset,
1336 inode->i_blkbits);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337 }
1338 if (create && (iomap.iomap_flags & IOMAP_UNWRITTEN)) {
1339 if (direct)
1340 bh_result->b_private = inode;
1341 set_buffer_unwritten(bh_result);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342 }
1343 }
1344
Nathan Scottc2536662006-03-29 10:44:40 +10001345 /*
1346 * If this is a realtime file, data may be on a different device.
1347 * to that pointed to from the buffer_head b_bdev currently.
1348 */
Nathan Scottce8e9222006-01-11 15:39:08 +11001349 bh_result->b_bdev = iomap.iomap_target->bt_bdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350
Nathan Scottc2536662006-03-29 10:44:40 +10001351 /*
David Chinner549054a2007-02-10 18:36:35 +11001352 * If we previously allocated a block out beyond eof and we are now
1353 * coming back to use it then we will need to flag it as new even if it
1354 * has a disk address.
1355 *
1356 * With sub-block writes into unwritten extents we also need to mark
1357 * the buffer as new so that the unwritten parts of the buffer gets
1358 * correctly zeroed.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359 */
1360 if (create &&
1361 ((!buffer_mapped(bh_result) && !buffer_uptodate(bh_result)) ||
David Chinner549054a2007-02-10 18:36:35 +11001362 (offset >= i_size_read(inode)) ||
1363 (iomap.iomap_flags & (IOMAP_NEW|IOMAP_UNWRITTEN))))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364 set_buffer_new(bh_result);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365
1366 if (iomap.iomap_flags & IOMAP_DELAY) {
1367 BUG_ON(direct);
1368 if (create) {
1369 set_buffer_uptodate(bh_result);
1370 set_buffer_mapped(bh_result);
1371 set_buffer_delay(bh_result);
1372 }
1373 }
1374
Nathan Scottc2536662006-03-29 10:44:40 +10001375 if (direct || size > (1 << inode->i_blkbits)) {
Nathan Scottfdc7ed72005-11-02 15:13:13 +11001376 ASSERT(iomap.iomap_bsize - iomap.iomap_delta > 0);
1377 offset = min_t(xfs_off_t,
Nathan Scottc2536662006-03-29 10:44:40 +10001378 iomap.iomap_bsize - iomap.iomap_delta, size);
1379 bh_result->b_size = (ssize_t)min_t(xfs_off_t, LONG_MAX, offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380 }
1381
1382 return 0;
1383}
1384
1385int
Nathan Scottc2536662006-03-29 10:44:40 +10001386xfs_get_blocks(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387 struct inode *inode,
1388 sector_t iblock,
1389 struct buffer_head *bh_result,
1390 int create)
1391{
Nathan Scottc2536662006-03-29 10:44:40 +10001392 return __xfs_get_blocks(inode, iblock,
Badari Pulavartyfa30bd02006-03-26 01:38:01 -08001393 bh_result, create, 0, BMAPI_WRITE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394}
1395
1396STATIC int
Nathan Scotte4c573b2006-03-14 13:54:26 +11001397xfs_get_blocks_direct(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398 struct inode *inode,
1399 sector_t iblock,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400 struct buffer_head *bh_result,
1401 int create)
1402{
Nathan Scottc2536662006-03-29 10:44:40 +10001403 return __xfs_get_blocks(inode, iblock,
Badari Pulavarty1d8fa7a2006-03-26 01:38:02 -08001404 bh_result, create, 1, BMAPI_WRITE|BMAPI_DIRECT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405}
1406
Christoph Hellwigf0973862005-09-05 08:22:52 +10001407STATIC void
Nathan Scotte4c573b2006-03-14 13:54:26 +11001408xfs_end_io_direct(
Christoph Hellwigf0973862005-09-05 08:22:52 +10001409 struct kiocb *iocb,
1410 loff_t offset,
1411 ssize_t size,
1412 void *private)
1413{
1414 xfs_ioend_t *ioend = iocb->private;
1415
1416 /*
1417 * Non-NULL private data means we need to issue a transaction to
1418 * convert a range from unwritten to written extents. This needs
Nathan Scottc41564b2006-03-29 08:55:14 +10001419 * to happen from process context but aio+dio I/O completion
Christoph Hellwigf0973862005-09-05 08:22:52 +10001420 * happens from irq context so we need to defer it to a workqueue.
Nathan Scottc41564b2006-03-29 08:55:14 +10001421 * This is not necessary for synchronous direct I/O, but we do
Christoph Hellwigf0973862005-09-05 08:22:52 +10001422 * it anyway to keep the code uniform and simpler.
1423 *
David Chinnere927af92007-06-05 16:24:36 +10001424 * Well, if only it were that simple. Because synchronous direct I/O
1425 * requires extent conversion to occur *before* we return to userspace,
1426 * we have to wait for extent conversion to complete. Look at the
1427 * iocb that has been passed to us to determine if this is AIO or
1428 * not. If it is synchronous, tell xfs_finish_ioend() to kick the
1429 * workqueue and wait for it to complete.
1430 *
Christoph Hellwigf0973862005-09-05 08:22:52 +10001431 * The core direct I/O code might be changed to always call the
1432 * completion handler in the future, in which case all this can
1433 * go away.
1434 */
Lachlan McIlroyba87ea62007-05-08 13:49:46 +10001435 ioend->io_offset = offset;
1436 ioend->io_size = size;
1437 if (ioend->io_type == IOMAP_READ) {
David Chinnere927af92007-06-05 16:24:36 +10001438 xfs_finish_ioend(ioend, 0);
Lachlan McIlroyba87ea62007-05-08 13:49:46 +10001439 } else if (private && size > 0) {
David Chinnere927af92007-06-05 16:24:36 +10001440 xfs_finish_ioend(ioend, is_sync_kiocb(iocb));
Christoph Hellwigf0973862005-09-05 08:22:52 +10001441 } else {
Lachlan McIlroyba87ea62007-05-08 13:49:46 +10001442 /*
1443 * A direct I/O write ioend starts it's life in unwritten
1444 * state in case they map an unwritten extent. This write
1445 * didn't map an unwritten extent so switch it's completion
1446 * handler.
1447 */
1448 INIT_WORK(&ioend->io_work, xfs_end_bio_written);
David Chinnere927af92007-06-05 16:24:36 +10001449 xfs_finish_ioend(ioend, 0);
Christoph Hellwigf0973862005-09-05 08:22:52 +10001450 }
1451
1452 /*
Nathan Scottc41564b2006-03-29 08:55:14 +10001453 * blockdev_direct_IO can return an error even after the I/O
Christoph Hellwigf0973862005-09-05 08:22:52 +10001454 * completion handler was called. Thus we need to protect
1455 * against double-freeing.
1456 */
1457 iocb->private = NULL;
1458}
1459
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460STATIC ssize_t
Nathan Scotte4c573b2006-03-14 13:54:26 +11001461xfs_vm_direct_IO(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462 int rw,
1463 struct kiocb *iocb,
1464 const struct iovec *iov,
1465 loff_t offset,
1466 unsigned long nr_segs)
1467{
1468 struct file *file = iocb->ki_filp;
1469 struct inode *inode = file->f_mapping->host;
Nathan Scott67fcaa72006-06-09 17:00:52 +10001470 bhv_vnode_t *vp = vn_from_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471 xfs_iomap_t iomap;
1472 int maps = 1;
1473 int error;
Christoph Hellwigf0973862005-09-05 08:22:52 +10001474 ssize_t ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475
Nathan Scott67fcaa72006-06-09 17:00:52 +10001476 error = bhv_vop_bmap(vp, offset, 0, BMAPI_DEVICE, &iomap, &maps);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477 if (error)
1478 return -error;
1479
Lachlan McIlroy721259b2006-09-07 14:27:05 +10001480 if (rw == WRITE) {
Lachlan McIlroyba87ea62007-05-08 13:49:46 +10001481 iocb->private = xfs_alloc_ioend(inode, IOMAP_UNWRITTEN);
Lachlan McIlroy721259b2006-09-07 14:27:05 +10001482 ret = blockdev_direct_IO_own_locking(rw, iocb, inode,
1483 iomap.iomap_target->bt_bdev,
1484 iov, offset, nr_segs,
1485 xfs_get_blocks_direct,
1486 xfs_end_io_direct);
1487 } else {
Lachlan McIlroyba87ea62007-05-08 13:49:46 +10001488 iocb->private = xfs_alloc_ioend(inode, IOMAP_READ);
Lachlan McIlroy721259b2006-09-07 14:27:05 +10001489 ret = blockdev_direct_IO_no_locking(rw, iocb, inode,
1490 iomap.iomap_target->bt_bdev,
1491 iov, offset, nr_segs,
1492 xfs_get_blocks_direct,
1493 xfs_end_io_direct);
1494 }
Christoph Hellwigf0973862005-09-05 08:22:52 +10001495
Zach Brown8459d862006-12-10 02:21:05 -08001496 if (unlikely(ret != -EIOCBQUEUED && iocb->private))
Christoph Hellwigf0973862005-09-05 08:22:52 +10001497 xfs_destroy_ioend(iocb->private);
1498 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499}
1500
Nathan Scottf51623b2006-03-14 13:26:27 +11001501STATIC int
Nathan Scotte4c573b2006-03-14 13:54:26 +11001502xfs_vm_prepare_write(
Nathan Scottf51623b2006-03-14 13:26:27 +11001503 struct file *file,
1504 struct page *page,
1505 unsigned int from,
1506 unsigned int to)
1507{
Nathan Scottc2536662006-03-29 10:44:40 +10001508 return block_prepare_write(page, from, to, xfs_get_blocks);
Nathan Scottf51623b2006-03-14 13:26:27 +11001509}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510
1511STATIC sector_t
Nathan Scotte4c573b2006-03-14 13:54:26 +11001512xfs_vm_bmap(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513 struct address_space *mapping,
1514 sector_t block)
1515{
1516 struct inode *inode = (struct inode *)mapping->host;
Nathan Scott67fcaa72006-06-09 17:00:52 +10001517 bhv_vnode_t *vp = vn_from_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518
Nathan Scotte4c573b2006-03-14 13:54:26 +11001519 vn_trace_entry(vp, __FUNCTION__, (inst_t *)__return_address);
Nathan Scott67fcaa72006-06-09 17:00:52 +10001520 bhv_vop_rwlock(vp, VRWLOCK_READ);
1521 bhv_vop_flush_pages(vp, (xfs_off_t)0, -1, 0, FI_REMAPF);
1522 bhv_vop_rwunlock(vp, VRWLOCK_READ);
Nathan Scottc2536662006-03-29 10:44:40 +10001523 return generic_block_bmap(mapping, block, xfs_get_blocks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001524}
1525
1526STATIC int
Nathan Scotte4c573b2006-03-14 13:54:26 +11001527xfs_vm_readpage(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528 struct file *unused,
1529 struct page *page)
1530{
Nathan Scottc2536662006-03-29 10:44:40 +10001531 return mpage_readpage(page, xfs_get_blocks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532}
1533
1534STATIC int
Nathan Scotte4c573b2006-03-14 13:54:26 +11001535xfs_vm_readpages(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001536 struct file *unused,
1537 struct address_space *mapping,
1538 struct list_head *pages,
1539 unsigned nr_pages)
1540{
Nathan Scottc2536662006-03-29 10:44:40 +10001541 return mpage_readpages(mapping, pages, nr_pages, xfs_get_blocks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542}
1543
NeilBrown2ff28e22006-03-26 01:37:18 -08001544STATIC void
Nathan Scott238f4c52006-03-17 17:26:25 +11001545xfs_vm_invalidatepage(
Nathan Scottbcec2b72005-09-02 16:40:17 +10001546 struct page *page,
1547 unsigned long offset)
1548{
1549 xfs_page_trace(XFS_INVALIDPAGE_ENTER,
1550 page->mapping->host, page, offset);
NeilBrown2ff28e22006-03-26 01:37:18 -08001551 block_invalidatepage(page, offset);
Nathan Scottbcec2b72005-09-02 16:40:17 +10001552}
1553
Christoph Hellwigf5e54d62006-06-28 04:26:44 -07001554const struct address_space_operations xfs_address_space_operations = {
Nathan Scotte4c573b2006-03-14 13:54:26 +11001555 .readpage = xfs_vm_readpage,
1556 .readpages = xfs_vm_readpages,
1557 .writepage = xfs_vm_writepage,
Nathan Scott7d4fb402006-06-09 15:27:16 +10001558 .writepages = xfs_vm_writepages,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559 .sync_page = block_sync_page,
Nathan Scott238f4c52006-03-17 17:26:25 +11001560 .releasepage = xfs_vm_releasepage,
1561 .invalidatepage = xfs_vm_invalidatepage,
Nathan Scotte4c573b2006-03-14 13:54:26 +11001562 .prepare_write = xfs_vm_prepare_write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563 .commit_write = generic_commit_write,
Nathan Scotte4c573b2006-03-14 13:54:26 +11001564 .bmap = xfs_vm_bmap,
1565 .direct_IO = xfs_vm_direct_IO,
Christoph Lametere965f962006-02-01 03:05:41 -08001566 .migratepage = buffer_migrate_page,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567};