blob: c5ea26d73beaa4fb5746825d4ea63b5f9c4348b1 [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_dir.h"
25#include "xfs_dir2.h"
26#include "xfs_trans.h"
27#include "xfs_dmapi.h"
28#include "xfs_mount.h"
29#include "xfs_bmap_btree.h"
30#include "xfs_alloc_btree.h"
31#include "xfs_ialloc_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include "xfs_dir_sf.h"
33#include "xfs_dir2_sf.h"
Nathan Scotta844f452005-11-02 14:38:42 +110034#include "xfs_attr_sf.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include "xfs_dinode.h"
36#include "xfs_inode.h"
Nathan Scotta844f452005-11-02 14:38:42 +110037#include "xfs_alloc.h"
38#include "xfs_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#include "xfs_error.h"
40#include "xfs_rw.h"
41#include "xfs_iomap.h"
42#include <linux/mpage.h>
Christoph Hellwig10ce4442006-01-11 20:48:14 +110043#include <linux/pagevec.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070044#include <linux/writeback.h>
45
Nathan Scottf51623b2006-03-14 13:26:27 +110046STATIC void
47xfs_count_page_state(
48 struct page *page,
49 int *delalloc,
50 int *unmapped,
51 int *unwritten)
52{
53 struct buffer_head *bh, *head;
54
55 *delalloc = *unmapped = *unwritten = 0;
56
57 bh = head = page_buffers(page);
58 do {
59 if (buffer_uptodate(bh) && !buffer_mapped(bh))
60 (*unmapped) = 1;
61 else if (buffer_unwritten(bh) && !buffer_delay(bh))
62 clear_buffer_unwritten(bh);
63 else if (buffer_unwritten(bh))
64 (*unwritten) = 1;
65 else if (buffer_delay(bh))
66 (*delalloc) = 1;
67 } while ((bh = bh->b_this_page) != head);
68}
69
Linus Torvalds1da177e2005-04-16 15:20:36 -070070#if defined(XFS_RW_TRACE)
71void
72xfs_page_trace(
73 int tag,
74 struct inode *inode,
75 struct page *page,
76 int mask)
77{
78 xfs_inode_t *ip;
Nathan Scott67fcaa72006-06-09 17:00:52 +100079 bhv_vnode_t *vp = vn_from_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 loff_t isize = i_size_read(inode);
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +110081 loff_t offset = page_offset(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 int delalloc = -1, unmapped = -1, unwritten = -1;
83
84 if (page_has_buffers(page))
85 xfs_count_page_state(page, &delalloc, &unmapped, &unwritten);
86
Christoph Hellwig75e17b32006-01-11 20:58:44 +110087 ip = xfs_vtoi(vp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 if (!ip->i_rwtrace)
89 return;
90
91 ktrace_enter(ip->i_rwtrace,
92 (void *)((unsigned long)tag),
93 (void *)ip,
94 (void *)inode,
95 (void *)page,
96 (void *)((unsigned long)mask),
97 (void *)((unsigned long)((ip->i_d.di_size >> 32) & 0xffffffff)),
98 (void *)((unsigned long)(ip->i_d.di_size & 0xffffffff)),
99 (void *)((unsigned long)((isize >> 32) & 0xffffffff)),
100 (void *)((unsigned long)(isize & 0xffffffff)),
101 (void *)((unsigned long)((offset >> 32) & 0xffffffff)),
102 (void *)((unsigned long)(offset & 0xffffffff)),
103 (void *)((unsigned long)delalloc),
104 (void *)((unsigned long)unmapped),
105 (void *)((unsigned long)unwritten),
Yingping Luf1fdc842006-03-22 12:44:15 +1100106 (void *)((unsigned long)current_pid()),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 (void *)NULL);
108}
109#else
110#define xfs_page_trace(tag, inode, page, mask)
111#endif
112
Christoph Hellwig0829c362005-09-02 16:58:49 +1000113/*
114 * Schedule IO completion handling on a xfsdatad if this was
115 * the final hold on this ioend.
116 */
117STATIC void
118xfs_finish_ioend(
119 xfs_ioend_t *ioend)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120{
Christoph Hellwig0829c362005-09-02 16:58:49 +1000121 if (atomic_dec_and_test(&ioend->io_remaining))
122 queue_work(xfsdatad_workqueue, &ioend->io_work);
123}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100125/*
126 * We're now finished for good with this ioend structure.
127 * Update the page state via the associated buffer_heads,
128 * release holds on the inode and bio, and finally free
129 * up memory. Do not use the ioend after this.
130 */
Christoph Hellwig0829c362005-09-02 16:58:49 +1000131STATIC void
132xfs_destroy_ioend(
133 xfs_ioend_t *ioend)
134{
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100135 struct buffer_head *bh, *next;
136
137 for (bh = ioend->io_buffer_head; bh; bh = next) {
138 next = bh->b_private;
Nathan Scott7d04a332006-06-09 14:58:38 +1000139 bh->b_end_io(bh, !ioend->io_error);
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100140 }
Nathan Scott7d04a332006-06-09 14:58:38 +1000141 if (unlikely(ioend->io_error))
142 vn_ioerror(ioend->io_vnode, ioend->io_error, __FILE__,__LINE__);
Christoph Hellwig0829c362005-09-02 16:58:49 +1000143 vn_iowake(ioend->io_vnode);
144 mempool_free(ioend, xfs_ioend_pool);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145}
146
147/*
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100148 * Buffered IO write completion for delayed allocate extents.
149 * TODO: Update ondisk isize now that we know the file data
150 * has been flushed (i.e. the notorious "NULL file" problem).
151 */
152STATIC void
153xfs_end_bio_delalloc(
154 void *data)
155{
156 xfs_ioend_t *ioend = data;
157
158 xfs_destroy_ioend(ioend);
159}
160
161/*
162 * Buffered IO write completion for regular, written extents.
163 */
164STATIC void
165xfs_end_bio_written(
166 void *data)
167{
168 xfs_ioend_t *ioend = data;
169
170 xfs_destroy_ioend(ioend);
171}
172
173/*
174 * IO write completion for unwritten extents.
175 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 * Issue transactions to convert a buffer range from unwritten
Christoph Hellwigf0973862005-09-05 08:22:52 +1000177 * to written extents.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 */
179STATIC void
Christoph Hellwig0829c362005-09-02 16:58:49 +1000180xfs_end_bio_unwritten(
181 void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182{
Christoph Hellwig0829c362005-09-02 16:58:49 +1000183 xfs_ioend_t *ioend = data;
Nathan Scott67fcaa72006-06-09 17:00:52 +1000184 bhv_vnode_t *vp = ioend->io_vnode;
Christoph Hellwig0829c362005-09-02 16:58:49 +1000185 xfs_off_t offset = ioend->io_offset;
186 size_t size = ioend->io_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187
Nathan Scott7d04a332006-06-09 14:58:38 +1000188 if (likely(!ioend->io_error))
Nathan Scott67fcaa72006-06-09 17:00:52 +1000189 bhv_vop_bmap(vp, offset, size, BMAPI_UNWRITTEN, NULL, NULL);
Christoph Hellwig0829c362005-09-02 16:58:49 +1000190 xfs_destroy_ioend(ioend);
191}
192
193/*
194 * Allocate and initialise an IO completion structure.
195 * We need to track unwritten extent write completion here initially.
196 * We'll need to extend this for updating the ondisk inode size later
197 * (vs. incore size).
198 */
199STATIC xfs_ioend_t *
200xfs_alloc_ioend(
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100201 struct inode *inode,
202 unsigned int type)
Christoph Hellwig0829c362005-09-02 16:58:49 +1000203{
204 xfs_ioend_t *ioend;
205
206 ioend = mempool_alloc(xfs_ioend_pool, GFP_NOFS);
207
208 /*
209 * Set the count to 1 initially, which will prevent an I/O
210 * completion callback from happening before we have started
211 * all the I/O from calling the completion routine too early.
212 */
213 atomic_set(&ioend->io_remaining, 1);
Nathan Scott7d04a332006-06-09 14:58:38 +1000214 ioend->io_error = 0;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100215 ioend->io_list = NULL;
216 ioend->io_type = type;
Nathan Scottec86dc02006-03-17 17:25:36 +1100217 ioend->io_vnode = vn_from_inode(inode);
Christoph Hellwigc1a073b2005-09-05 08:23:35 +1000218 ioend->io_buffer_head = NULL;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100219 ioend->io_buffer_tail = NULL;
Christoph Hellwig0829c362005-09-02 16:58:49 +1000220 atomic_inc(&ioend->io_vnode->v_iocount);
221 ioend->io_offset = 0;
222 ioend->io_size = 0;
223
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100224 if (type == IOMAP_UNWRITTEN)
225 INIT_WORK(&ioend->io_work, xfs_end_bio_unwritten, ioend);
226 else if (type == IOMAP_DELAY)
227 INIT_WORK(&ioend->io_work, xfs_end_bio_delalloc, ioend);
228 else
229 INIT_WORK(&ioend->io_work, xfs_end_bio_written, ioend);
Christoph Hellwig0829c362005-09-02 16:58:49 +1000230
231 return ioend;
232}
233
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234STATIC int
235xfs_map_blocks(
236 struct inode *inode,
237 loff_t offset,
238 ssize_t count,
239 xfs_iomap_t *mapp,
240 int flags)
241{
Nathan Scott67fcaa72006-06-09 17:00:52 +1000242 bhv_vnode_t *vp = vn_from_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 int error, nmaps = 1;
244
Nathan Scott67fcaa72006-06-09 17:00:52 +1000245 error = bhv_vop_bmap(vp, offset, count, flags, mapp, &nmaps);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 if (!error && (flags & (BMAPI_WRITE|BMAPI_ALLOCATE)))
247 VMODIFY(vp);
248 return -error;
249}
250
Christoph Hellwig1defeac2006-01-11 20:48:33 +1100251STATIC inline int
252xfs_iomap_valid(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 xfs_iomap_t *iomapp,
Christoph Hellwig1defeac2006-01-11 20:48:33 +1100254 loff_t offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255{
Christoph Hellwig1defeac2006-01-11 20:48:33 +1100256 return offset >= iomapp->iomap_offset &&
257 offset < iomapp->iomap_offset + iomapp->iomap_bsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258}
259
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100260/*
261 * BIO completion handler for buffered IO.
262 */
263STATIC int
264xfs_end_bio(
265 struct bio *bio,
266 unsigned int bytes_done,
267 int error)
268{
269 xfs_ioend_t *ioend = bio->bi_private;
270
271 if (bio->bi_size)
272 return 1;
273
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100274 ASSERT(atomic_read(&bio->bi_cnt) >= 1);
Nathan Scott7d04a332006-06-09 14:58:38 +1000275 ioend->io_error = test_bit(BIO_UPTODATE, &bio->bi_flags) ? 0 : error;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100276
277 /* Toss bio and pass work off to an xfsdatad thread */
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100278 bio->bi_private = NULL;
279 bio->bi_end_io = NULL;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100280 bio_put(bio);
Nathan Scott7d04a332006-06-09 14:58:38 +1000281
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100282 xfs_finish_ioend(ioend);
283 return 0;
284}
285
286STATIC void
287xfs_submit_ioend_bio(
288 xfs_ioend_t *ioend,
289 struct bio *bio)
290{
291 atomic_inc(&ioend->io_remaining);
292
293 bio->bi_private = ioend;
294 bio->bi_end_io = xfs_end_bio;
295
296 submit_bio(WRITE, bio);
297 ASSERT(!bio_flagged(bio, BIO_EOPNOTSUPP));
298 bio_put(bio);
299}
300
301STATIC struct bio *
302xfs_alloc_ioend_bio(
303 struct buffer_head *bh)
304{
305 struct bio *bio;
306 int nvecs = bio_get_nr_vecs(bh->b_bdev);
307
308 do {
309 bio = bio_alloc(GFP_NOIO, nvecs);
310 nvecs >>= 1;
311 } while (!bio);
312
313 ASSERT(bio->bi_private == NULL);
314 bio->bi_sector = bh->b_blocknr * (bh->b_size >> 9);
315 bio->bi_bdev = bh->b_bdev;
316 bio_get(bio);
317 return bio;
318}
319
320STATIC void
321xfs_start_buffer_writeback(
322 struct buffer_head *bh)
323{
324 ASSERT(buffer_mapped(bh));
325 ASSERT(buffer_locked(bh));
326 ASSERT(!buffer_delay(bh));
327 ASSERT(!buffer_unwritten(bh));
328
329 mark_buffer_async_write(bh);
330 set_buffer_uptodate(bh);
331 clear_buffer_dirty(bh);
332}
333
334STATIC void
335xfs_start_page_writeback(
336 struct page *page,
337 struct writeback_control *wbc,
338 int clear_dirty,
339 int buffers)
340{
341 ASSERT(PageLocked(page));
342 ASSERT(!PageWriteback(page));
343 set_page_writeback(page);
344 if (clear_dirty)
345 clear_page_dirty(page);
346 unlock_page(page);
347 if (!buffers) {
348 end_page_writeback(page);
349 wbc->pages_skipped++; /* We didn't write this page */
350 }
351}
352
353static inline int bio_add_buffer(struct bio *bio, struct buffer_head *bh)
354{
355 return bio_add_page(bio, bh->b_page, bh->b_size, bh_offset(bh));
356}
357
358/*
David Chinnerd88992f2006-01-18 13:38:12 +1100359 * Submit all of the bios for all of the ioends we have saved up, covering the
360 * initial writepage page and also any probed pages.
361 *
362 * Because we may have multiple ioends spanning a page, we need to start
363 * writeback on all the buffers before we submit them for I/O. If we mark the
364 * buffers as we got, then we can end up with a page that only has buffers
365 * marked async write and I/O complete on can occur before we mark the other
366 * buffers async write.
367 *
368 * The end result of this is that we trip a bug in end_page_writeback() because
369 * we call it twice for the one page as the code in end_buffer_async_write()
370 * assumes that all buffers on the page are started at the same time.
371 *
372 * The fix is two passes across the ioend list - one to start writeback on the
Nathan Scottc41564b2006-03-29 08:55:14 +1000373 * buffer_heads, and then submit them for I/O on the second pass.
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100374 */
375STATIC void
376xfs_submit_ioend(
377 xfs_ioend_t *ioend)
378{
David Chinnerd88992f2006-01-18 13:38:12 +1100379 xfs_ioend_t *head = ioend;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100380 xfs_ioend_t *next;
381 struct buffer_head *bh;
382 struct bio *bio;
383 sector_t lastblock = 0;
384
David Chinnerd88992f2006-01-18 13:38:12 +1100385 /* Pass 1 - start writeback */
386 do {
387 next = ioend->io_list;
388 for (bh = ioend->io_buffer_head; bh; bh = bh->b_private) {
389 xfs_start_buffer_writeback(bh);
390 }
391 } while ((ioend = next) != NULL);
392
393 /* Pass 2 - submit I/O */
394 ioend = head;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100395 do {
396 next = ioend->io_list;
397 bio = NULL;
398
399 for (bh = ioend->io_buffer_head; bh; bh = bh->b_private) {
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100400
401 if (!bio) {
402 retry:
403 bio = xfs_alloc_ioend_bio(bh);
404 } else if (bh->b_blocknr != lastblock + 1) {
405 xfs_submit_ioend_bio(ioend, bio);
406 goto retry;
407 }
408
409 if (bio_add_buffer(bio, bh) != bh->b_size) {
410 xfs_submit_ioend_bio(ioend, bio);
411 goto retry;
412 }
413
414 lastblock = bh->b_blocknr;
415 }
416 if (bio)
417 xfs_submit_ioend_bio(ioend, bio);
418 xfs_finish_ioend(ioend);
419 } while ((ioend = next) != NULL);
420}
421
422/*
423 * Cancel submission of all buffer_heads so far in this endio.
424 * Toss the endio too. Only ever called for the initial page
425 * in a writepage request, so only ever one page.
426 */
427STATIC void
428xfs_cancel_ioend(
429 xfs_ioend_t *ioend)
430{
431 xfs_ioend_t *next;
432 struct buffer_head *bh, *next_bh;
433
434 do {
435 next = ioend->io_list;
436 bh = ioend->io_buffer_head;
437 do {
438 next_bh = bh->b_private;
439 clear_buffer_async_write(bh);
440 unlock_buffer(bh);
441 } while ((bh = next_bh) != NULL);
442
443 vn_iowake(ioend->io_vnode);
444 mempool_free(ioend, xfs_ioend_pool);
445 } while ((ioend = next) != NULL);
446}
447
448/*
449 * Test to see if we've been building up a completion structure for
450 * earlier buffers -- if so, we try to append to this ioend if we
451 * can, otherwise we finish off any current ioend and start another.
452 * Return true if we've finished the given ioend.
453 */
454STATIC void
455xfs_add_to_ioend(
456 struct inode *inode,
457 struct buffer_head *bh,
Christoph Hellwig7336cea2006-01-11 20:49:16 +1100458 xfs_off_t offset,
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100459 unsigned int type,
460 xfs_ioend_t **result,
461 int need_ioend)
462{
463 xfs_ioend_t *ioend = *result;
464
465 if (!ioend || need_ioend || type != ioend->io_type) {
466 xfs_ioend_t *previous = *result;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100467
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100468 ioend = xfs_alloc_ioend(inode, type);
469 ioend->io_offset = offset;
470 ioend->io_buffer_head = bh;
471 ioend->io_buffer_tail = bh;
472 if (previous)
473 previous->io_list = ioend;
474 *result = ioend;
475 } else {
476 ioend->io_buffer_tail->b_private = bh;
477 ioend->io_buffer_tail = bh;
478 }
479
480 bh->b_private = NULL;
481 ioend->io_size += bh->b_size;
482}
483
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484STATIC void
Nathan Scott87cbc492006-03-14 13:26:43 +1100485xfs_map_buffer(
486 struct buffer_head *bh,
487 xfs_iomap_t *mp,
488 xfs_off_t offset,
489 uint block_bits)
490{
491 sector_t bn;
492
493 ASSERT(mp->iomap_bn != IOMAP_DADDR_NULL);
494
495 bn = (mp->iomap_bn >> (block_bits - BBSHIFT)) +
496 ((offset - mp->iomap_offset) >> block_bits);
497
498 ASSERT(bn || (mp->iomap_flags & IOMAP_REALTIME));
499
500 bh->b_blocknr = bn;
501 set_buffer_mapped(bh);
502}
503
504STATIC void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505xfs_map_at_offset(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 struct buffer_head *bh,
Christoph Hellwig1defeac2006-01-11 20:48:33 +1100507 loff_t offset,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 int block_bits,
Christoph Hellwig1defeac2006-01-11 20:48:33 +1100509 xfs_iomap_t *iomapp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 ASSERT(!(iomapp->iomap_flags & IOMAP_HOLE));
512 ASSERT(!(iomapp->iomap_flags & IOMAP_DELAY));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513
514 lock_buffer(bh);
Nathan Scott87cbc492006-03-14 13:26:43 +1100515 xfs_map_buffer(bh, iomapp, offset, block_bits);
Nathan Scottce8e9222006-01-11 15:39:08 +1100516 bh->b_bdev = iomapp->iomap_target->bt_bdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 set_buffer_mapped(bh);
518 clear_buffer_delay(bh);
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100519 clear_buffer_unwritten(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520}
521
522/*
Christoph Hellwig6c4fe192006-01-11 20:49:28 +1100523 * Look for a page at index that is suitable for clustering.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 */
525STATIC unsigned int
Christoph Hellwig6c4fe192006-01-11 20:49:28 +1100526xfs_probe_page(
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100527 struct page *page,
Christoph Hellwig6c4fe192006-01-11 20:49:28 +1100528 unsigned int pg_offset,
529 int mapped)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 int ret = 0;
532
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 if (PageWriteback(page))
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100534 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535
536 if (page->mapping && PageDirty(page)) {
537 if (page_has_buffers(page)) {
538 struct buffer_head *bh, *head;
539
540 bh = head = page_buffers(page);
541 do {
Christoph Hellwig6c4fe192006-01-11 20:49:28 +1100542 if (!buffer_uptodate(bh))
543 break;
544 if (mapped != buffer_mapped(bh))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 break;
546 ret += bh->b_size;
547 if (ret >= pg_offset)
548 break;
549 } while ((bh = bh->b_this_page) != head);
550 } else
Christoph Hellwig6c4fe192006-01-11 20:49:28 +1100551 ret = mapped ? 0 : PAGE_CACHE_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 }
553
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 return ret;
555}
556
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100557STATIC size_t
Christoph Hellwig6c4fe192006-01-11 20:49:28 +1100558xfs_probe_cluster(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 struct inode *inode,
560 struct page *startpage,
561 struct buffer_head *bh,
Christoph Hellwig6c4fe192006-01-11 20:49:28 +1100562 struct buffer_head *head,
563 int mapped)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564{
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100565 struct pagevec pvec;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 pgoff_t tindex, tlast, tloff;
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100567 size_t total = 0;
568 int done = 0, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569
570 /* First sum forwards in this page */
571 do {
Eric Sandeen2353e8e2006-02-28 12:30:30 +1100572 if (!buffer_uptodate(bh) || (mapped != buffer_mapped(bh)))
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100573 return total;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 total += bh->b_size;
575 } while ((bh = bh->b_this_page) != head);
576
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100577 /* if we reached the end of the page, sum forwards in following pages */
578 tlast = i_size_read(inode) >> PAGE_CACHE_SHIFT;
579 tindex = startpage->index + 1;
580
581 /* Prune this back to avoid pathological behavior */
582 tloff = min(tlast, startpage->index + 64);
583
584 pagevec_init(&pvec, 0);
585 while (!done && tindex <= tloff) {
586 unsigned len = min_t(pgoff_t, PAGEVEC_SIZE, tlast - tindex + 1);
587
588 if (!pagevec_lookup(&pvec, inode->i_mapping, tindex, len))
589 break;
590
591 for (i = 0; i < pagevec_count(&pvec); i++) {
592 struct page *page = pvec.pages[i];
593 size_t pg_offset, len = 0;
594
595 if (tindex == tlast) {
596 pg_offset =
597 i_size_read(inode) & (PAGE_CACHE_SIZE - 1);
Christoph Hellwig1defeac2006-01-11 20:48:33 +1100598 if (!pg_offset) {
599 done = 1;
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100600 break;
Christoph Hellwig1defeac2006-01-11 20:48:33 +1100601 }
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100602 } else
603 pg_offset = PAGE_CACHE_SIZE;
604
605 if (page->index == tindex && !TestSetPageLocked(page)) {
Christoph Hellwig6c4fe192006-01-11 20:49:28 +1100606 len = xfs_probe_page(page, pg_offset, mapped);
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100607 unlock_page(page);
608 }
609
610 if (!len) {
611 done = 1;
612 break;
613 }
614
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 total += len;
Christoph Hellwig1defeac2006-01-11 20:48:33 +1100616 tindex++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 }
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100618
619 pagevec_release(&pvec);
620 cond_resched();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 }
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100622
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 return total;
624}
625
626/*
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100627 * Test if a given page is suitable for writing as part of an unwritten
628 * or delayed allocate extent.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 */
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100630STATIC int
631xfs_is_delayed_page(
632 struct page *page,
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100633 unsigned int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 if (PageWriteback(page))
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100636 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637
638 if (page->mapping && page_has_buffers(page)) {
639 struct buffer_head *bh, *head;
640 int acceptable = 0;
641
642 bh = head = page_buffers(page);
643 do {
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100644 if (buffer_unwritten(bh))
645 acceptable = (type == IOMAP_UNWRITTEN);
646 else if (buffer_delay(bh))
647 acceptable = (type == IOMAP_DELAY);
David Chinner2ddee842006-03-22 12:47:40 +1100648 else if (buffer_dirty(bh) && buffer_mapped(bh))
Christoph Hellwig6c4fe192006-01-11 20:49:28 +1100649 acceptable = (type == 0);
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100650 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 } while ((bh = bh->b_this_page) != head);
653
654 if (acceptable)
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100655 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 }
657
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100658 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659}
660
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661/*
662 * Allocate & map buffers for page given the extent map. Write it out.
663 * except for the original page of a writepage, this is called on
664 * delalloc/unwritten pages only, for the original page it is possible
665 * that the page has no mapping at all.
666 */
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100667STATIC int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668xfs_convert_page(
669 struct inode *inode,
670 struct page *page,
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100671 loff_t tindex,
Christoph Hellwig1defeac2006-01-11 20:48:33 +1100672 xfs_iomap_t *mp,
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100673 xfs_ioend_t **ioendp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 struct writeback_control *wbc,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 int startio,
676 int all_bh)
677{
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100678 struct buffer_head *bh, *head;
Christoph Hellwig9260dc62006-01-11 20:48:47 +1100679 xfs_off_t end_offset;
680 unsigned long p_offset;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100681 unsigned int type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 int bbits = inode->i_blkbits;
Nathan Scott24e17b52005-05-05 13:33:20 -0700683 int len, page_dirty;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100684 int count = 0, done = 0, uptodate = 1;
Christoph Hellwig9260dc62006-01-11 20:48:47 +1100685 xfs_off_t offset = page_offset(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100687 if (page->index != tindex)
688 goto fail;
689 if (TestSetPageLocked(page))
690 goto fail;
691 if (PageWriteback(page))
692 goto fail_unlock_page;
693 if (page->mapping != inode->i_mapping)
694 goto fail_unlock_page;
695 if (!xfs_is_delayed_page(page, (*ioendp)->io_type))
696 goto fail_unlock_page;
697
Nathan Scott24e17b52005-05-05 13:33:20 -0700698 /*
699 * page_dirty is initially a count of buffers on the page before
Nathan Scottc41564b2006-03-29 08:55:14 +1000700 * EOF and is decremented as we move each into a cleanable state.
Christoph Hellwig9260dc62006-01-11 20:48:47 +1100701 *
702 * Derivation:
703 *
704 * End offset is the highest offset that this page should represent.
705 * If we are on the last page, (end_offset & (PAGE_CACHE_SIZE - 1))
706 * will evaluate non-zero and be less than PAGE_CACHE_SIZE and
707 * hence give us the correct page_dirty count. On any other page,
708 * it will be zero and in that case we need page_dirty to be the
709 * count of buffers on the page.
Nathan Scott24e17b52005-05-05 13:33:20 -0700710 */
Christoph Hellwig9260dc62006-01-11 20:48:47 +1100711 end_offset = min_t(unsigned long long,
712 (xfs_off_t)(page->index + 1) << PAGE_CACHE_SHIFT,
713 i_size_read(inode));
714
Nathan Scott24e17b52005-05-05 13:33:20 -0700715 len = 1 << inode->i_blkbits;
Christoph Hellwig9260dc62006-01-11 20:48:47 +1100716 p_offset = min_t(unsigned long, end_offset & (PAGE_CACHE_SIZE - 1),
717 PAGE_CACHE_SIZE);
718 p_offset = p_offset ? roundup(p_offset, len) : PAGE_CACHE_SIZE;
719 page_dirty = p_offset / len;
Nathan Scott24e17b52005-05-05 13:33:20 -0700720
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 bh = head = page_buffers(page);
722 do {
Christoph Hellwig9260dc62006-01-11 20:48:47 +1100723 if (offset >= end_offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 break;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100725 if (!buffer_uptodate(bh))
726 uptodate = 0;
727 if (!(PageUptodate(page) || buffer_uptodate(bh))) {
728 done = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 continue;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100730 }
731
Christoph Hellwig9260dc62006-01-11 20:48:47 +1100732 if (buffer_unwritten(bh) || buffer_delay(bh)) {
733 if (buffer_unwritten(bh))
734 type = IOMAP_UNWRITTEN;
735 else
736 type = IOMAP_DELAY;
737
738 if (!xfs_iomap_valid(mp, offset)) {
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100739 done = 1;
Christoph Hellwig9260dc62006-01-11 20:48:47 +1100740 continue;
741 }
742
743 ASSERT(!(mp->iomap_flags & IOMAP_HOLE));
744 ASSERT(!(mp->iomap_flags & IOMAP_DELAY));
745
746 xfs_map_at_offset(bh, offset, bbits, mp);
747 if (startio) {
Christoph Hellwig7336cea2006-01-11 20:49:16 +1100748 xfs_add_to_ioend(inode, bh, offset,
Christoph Hellwig9260dc62006-01-11 20:48:47 +1100749 type, ioendp, done);
750 } else {
751 set_buffer_dirty(bh);
752 unlock_buffer(bh);
753 mark_buffer_dirty(bh);
754 }
755 page_dirty--;
756 count++;
757 } else {
758 type = 0;
759 if (buffer_mapped(bh) && all_bh && startio) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 lock_buffer(bh);
Christoph Hellwig7336cea2006-01-11 20:49:16 +1100761 xfs_add_to_ioend(inode, bh, offset,
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100762 type, ioendp, done);
763 count++;
Nathan Scott24e17b52005-05-05 13:33:20 -0700764 page_dirty--;
Christoph Hellwig9260dc62006-01-11 20:48:47 +1100765 } else {
766 done = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 }
Christoph Hellwig7336cea2006-01-11 20:49:16 +1100769 } while (offset += len, (bh = bh->b_this_page) != head);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100771 if (uptodate && bh == head)
772 SetPageUptodate(page);
773
774 if (startio) {
Christoph Hellwigf5e596b2006-01-11 20:49:42 +1100775 if (count) {
776 struct backing_dev_info *bdi;
777
778 bdi = inode->i_mapping->backing_dev_info;
David Chinner9fddaca2006-02-07 20:27:24 +1100779 wbc->nr_to_write--;
Christoph Hellwigf5e596b2006-01-11 20:49:42 +1100780 if (bdi_write_congested(bdi)) {
781 wbc->encountered_congestion = 1;
782 done = 1;
David Chinner9fddaca2006-02-07 20:27:24 +1100783 } else if (wbc->nr_to_write <= 0) {
Christoph Hellwigf5e596b2006-01-11 20:49:42 +1100784 done = 1;
785 }
786 }
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100787 xfs_start_page_writeback(page, wbc, !page_dirty, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 }
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100789
790 return done;
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100791 fail_unlock_page:
792 unlock_page(page);
793 fail:
794 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795}
796
797/*
798 * Convert & write out a cluster of pages in the same extent as defined
799 * by mp and following the start page.
800 */
801STATIC void
802xfs_cluster_write(
803 struct inode *inode,
804 pgoff_t tindex,
805 xfs_iomap_t *iomapp,
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100806 xfs_ioend_t **ioendp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 struct writeback_control *wbc,
808 int startio,
809 int all_bh,
810 pgoff_t tlast)
811{
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100812 struct pagevec pvec;
813 int done = 0, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100815 pagevec_init(&pvec, 0);
816 while (!done && tindex <= tlast) {
817 unsigned len = min_t(pgoff_t, PAGEVEC_SIZE, tlast - tindex + 1);
818
819 if (!pagevec_lookup(&pvec, inode->i_mapping, tindex, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 break;
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100821
822 for (i = 0; i < pagevec_count(&pvec); i++) {
823 done = xfs_convert_page(inode, pvec.pages[i], tindex++,
824 iomapp, ioendp, wbc, startio, all_bh);
825 if (done)
826 break;
827 }
828
829 pagevec_release(&pvec);
830 cond_resched();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 }
832}
833
834/*
835 * Calling this without startio set means we are being asked to make a dirty
836 * page ready for freeing it's buffers. When called with startio set then
837 * we are coming from writepage.
838 *
839 * When called with startio set it is important that we write the WHOLE
840 * page if possible.
841 * The bh->b_state's cannot know if any of the blocks or which block for
842 * that matter are dirty due to mmap writes, and therefore bh uptodate is
Nathan Scottc41564b2006-03-29 08:55:14 +1000843 * only valid if the page itself isn't completely uptodate. Some layers
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 * may clear the page dirty flag prior to calling write page, under the
845 * assumption the entire page will be written out; by not writing out the
846 * whole page the page can be reused before all valid dirty data is
847 * written out. Note: in the case of a page that has been dirty'd by
848 * mapwrite and but partially setup by block_prepare_write the
849 * bh->b_states's will not agree and only ones setup by BPW/BCW will have
850 * valid state, thus the whole page must be written out thing.
851 */
852
853STATIC int
854xfs_page_state_convert(
855 struct inode *inode,
856 struct page *page,
857 struct writeback_control *wbc,
858 int startio,
859 int unmapped) /* also implies page uptodate */
860{
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100861 struct buffer_head *bh, *head;
Christoph Hellwig1defeac2006-01-11 20:48:33 +1100862 xfs_iomap_t iomap;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100863 xfs_ioend_t *ioend = NULL, *iohead = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864 loff_t offset;
865 unsigned long p_offset = 0;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100866 unsigned int type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 __uint64_t end_offset;
868 pgoff_t end_index, last_index, tlast;
Christoph Hellwigd5cb48a2006-01-11 20:49:02 +1100869 ssize_t size, len;
870 int flags, err, iomap_valid = 0, uptodate = 1;
Nathan Scott82721452006-04-11 15:10:55 +1000871 int page_dirty, count = 0;
872 int trylock = 0;
Christoph Hellwig6c4fe192006-01-11 20:49:28 +1100873 int all_bh = unmapped;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874
Nathan Scott82721452006-04-11 15:10:55 +1000875 if (startio) {
876 if (wbc->sync_mode == WB_SYNC_NONE && wbc->nonblocking)
877 trylock |= BMAPI_TRYLOCK;
878 }
Daniel Moore3ba08152005-05-05 13:31:34 -0700879
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880 /* Is this page beyond the end of the file? */
881 offset = i_size_read(inode);
882 end_index = offset >> PAGE_CACHE_SHIFT;
883 last_index = (offset - 1) >> PAGE_CACHE_SHIFT;
884 if (page->index >= end_index) {
885 if ((page->index >= end_index + 1) ||
886 !(i_size_read(inode) & (PAGE_CACHE_SIZE - 1))) {
Nathan Scott19d5bcf2005-11-02 15:14:09 +1100887 if (startio)
888 unlock_page(page);
889 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890 }
891 }
892
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893 /*
Nathan Scott24e17b52005-05-05 13:33:20 -0700894 * page_dirty is initially a count of buffers on the page before
Nathan Scottc41564b2006-03-29 08:55:14 +1000895 * EOF and is decremented as we move each into a cleanable state.
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100896 *
897 * Derivation:
898 *
899 * End offset is the highest offset that this page should represent.
900 * If we are on the last page, (end_offset & (PAGE_CACHE_SIZE - 1))
901 * will evaluate non-zero and be less than PAGE_CACHE_SIZE and
902 * hence give us the correct page_dirty count. On any other page,
903 * it will be zero and in that case we need page_dirty to be the
904 * count of buffers on the page.
905 */
906 end_offset = min_t(unsigned long long,
907 (xfs_off_t)(page->index + 1) << PAGE_CACHE_SHIFT, offset);
Nathan Scott24e17b52005-05-05 13:33:20 -0700908 len = 1 << inode->i_blkbits;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100909 p_offset = min_t(unsigned long, end_offset & (PAGE_CACHE_SIZE - 1),
910 PAGE_CACHE_SIZE);
911 p_offset = p_offset ? roundup(p_offset, len) : PAGE_CACHE_SIZE;
Nathan Scott24e17b52005-05-05 13:33:20 -0700912 page_dirty = p_offset / len;
913
Nathan Scott24e17b52005-05-05 13:33:20 -0700914 bh = head = page_buffers(page);
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100915 offset = page_offset(page);
Christoph Hellwig6c4fe192006-01-11 20:49:28 +1100916 flags = -1;
917 type = 0;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100918
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100919 /* TODO: cleanup count and page_dirty */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920
921 do {
922 if (offset >= end_offset)
923 break;
924 if (!buffer_uptodate(bh))
925 uptodate = 0;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100926 if (!(PageUptodate(page) || buffer_uptodate(bh)) && !startio) {
Christoph Hellwig1defeac2006-01-11 20:48:33 +1100927 /*
928 * the iomap is actually still valid, but the ioend
929 * isn't. shouldn't happen too often.
930 */
931 iomap_valid = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932 continue;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100933 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934
Christoph Hellwig1defeac2006-01-11 20:48:33 +1100935 if (iomap_valid)
936 iomap_valid = xfs_iomap_valid(&iomap, offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937
938 /*
939 * First case, map an unwritten extent and prepare for
940 * extent state conversion transaction on completion.
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100941 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942 * Second case, allocate space for a delalloc buffer.
943 * We can return EAGAIN here in the release page case.
Christoph Hellwigd5cb48a2006-01-11 20:49:02 +1100944 *
945 * Third case, an unmapped buffer was found, and we are
946 * in a path where we need to write the whole page out.
947 */
948 if (buffer_unwritten(bh) || buffer_delay(bh) ||
949 ((buffer_uptodate(bh) || PageUptodate(page)) &&
950 !buffer_mapped(bh) && (unmapped || startio))) {
Christoph Hellwig6c4fe192006-01-11 20:49:28 +1100951 /*
952 * Make sure we don't use a read-only iomap
953 */
954 if (flags == BMAPI_READ)
955 iomap_valid = 0;
956
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100957 if (buffer_unwritten(bh)) {
958 type = IOMAP_UNWRITTEN;
Nathan Scott82721452006-04-11 15:10:55 +1000959 flags = BMAPI_WRITE | BMAPI_IGNSTATE;
Christoph Hellwigd5cb48a2006-01-11 20:49:02 +1100960 } else if (buffer_delay(bh)) {
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100961 type = IOMAP_DELAY;
Nathan Scott82721452006-04-11 15:10:55 +1000962 flags = BMAPI_ALLOCATE | trylock;
Christoph Hellwigd5cb48a2006-01-11 20:49:02 +1100963 } else {
Christoph Hellwig6c4fe192006-01-11 20:49:28 +1100964 type = IOMAP_NEW;
Nathan Scott82721452006-04-11 15:10:55 +1000965 flags = BMAPI_WRITE | BMAPI_MMAP;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100966 }
967
Christoph Hellwig1defeac2006-01-11 20:48:33 +1100968 if (!iomap_valid) {
Christoph Hellwig6c4fe192006-01-11 20:49:28 +1100969 if (type == IOMAP_NEW) {
970 size = xfs_probe_cluster(inode,
971 page, bh, head, 0);
Christoph Hellwigd5cb48a2006-01-11 20:49:02 +1100972 } else {
973 size = len;
974 }
975
976 err = xfs_map_blocks(inode, offset, size,
977 &iomap, flags);
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100978 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979 goto error;
Christoph Hellwig1defeac2006-01-11 20:48:33 +1100980 iomap_valid = xfs_iomap_valid(&iomap, offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981 }
Christoph Hellwig1defeac2006-01-11 20:48:33 +1100982 if (iomap_valid) {
983 xfs_map_at_offset(bh, offset,
984 inode->i_blkbits, &iomap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985 if (startio) {
Christoph Hellwig7336cea2006-01-11 20:49:16 +1100986 xfs_add_to_ioend(inode, bh, offset,
Christoph Hellwig1defeac2006-01-11 20:48:33 +1100987 type, &ioend,
988 !iomap_valid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989 } else {
990 set_buffer_dirty(bh);
991 unlock_buffer(bh);
992 mark_buffer_dirty(bh);
993 }
994 page_dirty--;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100995 count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996 }
Christoph Hellwigd5cb48a2006-01-11 20:49:02 +1100997 } else if (buffer_uptodate(bh) && startio) {
Christoph Hellwig6c4fe192006-01-11 20:49:28 +1100998 /*
999 * we got here because the buffer is already mapped.
1000 * That means it must already have extents allocated
1001 * underneath it. Map the extent by reading it.
1002 */
1003 if (!iomap_valid || type != 0) {
1004 flags = BMAPI_READ;
1005 size = xfs_probe_cluster(inode, page, bh,
1006 head, 1);
1007 err = xfs_map_blocks(inode, offset, size,
1008 &iomap, flags);
1009 if (err)
1010 goto error;
1011 iomap_valid = xfs_iomap_valid(&iomap, offset);
1012 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013
Christoph Hellwig6c4fe192006-01-11 20:49:28 +11001014 type = 0;
Christoph Hellwigd5cb48a2006-01-11 20:49:02 +11001015 if (!test_and_set_bit(BH_Lock, &bh->b_state)) {
1016 ASSERT(buffer_mapped(bh));
Christoph Hellwig6c4fe192006-01-11 20:49:28 +11001017 if (iomap_valid)
1018 all_bh = 1;
Christoph Hellwig7336cea2006-01-11 20:49:16 +11001019 xfs_add_to_ioend(inode, bh, offset, type,
Christoph Hellwigd5cb48a2006-01-11 20:49:02 +11001020 &ioend, !iomap_valid);
1021 page_dirty--;
1022 count++;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +11001023 } else {
Christoph Hellwig1defeac2006-01-11 20:48:33 +11001024 iomap_valid = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025 }
Christoph Hellwigd5cb48a2006-01-11 20:49:02 +11001026 } else if ((buffer_uptodate(bh) || PageUptodate(page)) &&
1027 (unmapped || startio)) {
1028 iomap_valid = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029 }
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +11001030
1031 if (!iohead)
1032 iohead = ioend;
1033
1034 } while (offset += len, ((bh = bh->b_this_page) != head));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035
1036 if (uptodate && bh == head)
1037 SetPageUptodate(page);
1038
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +11001039 if (startio)
1040 xfs_start_page_writeback(page, wbc, 1, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041
Christoph Hellwig1defeac2006-01-11 20:48:33 +11001042 if (ioend && iomap_valid) {
1043 offset = (iomap.iomap_offset + iomap.iomap_bsize - 1) >>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044 PAGE_CACHE_SHIFT;
Nathan Scott775bf6c2005-05-05 13:33:01 -07001045 tlast = min_t(pgoff_t, offset, last_index);
Christoph Hellwig1defeac2006-01-11 20:48:33 +11001046 xfs_cluster_write(inode, page->index + 1, &iomap, &ioend,
Christoph Hellwig6c4fe192006-01-11 20:49:28 +11001047 wbc, startio, all_bh, tlast);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048 }
1049
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +11001050 if (iohead)
1051 xfs_submit_ioend(iohead);
1052
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053 return page_dirty;
1054
1055error:
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +11001056 if (iohead)
1057 xfs_cancel_ioend(iohead);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058
1059 /*
1060 * If it's delalloc and we have nowhere to put it,
1061 * throw it away, unless the lower layers told
1062 * us to try again.
1063 */
1064 if (err != -EAGAIN) {
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +11001065 if (!unmapped)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066 block_invalidatepage(page, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067 ClearPageUptodate(page);
1068 }
1069 return err;
1070}
1071
Nathan Scottf51623b2006-03-14 13:26:27 +11001072/*
1073 * writepage: Called from one of two places:
1074 *
1075 * 1. we are flushing a delalloc buffer head.
1076 *
1077 * 2. we are writing out a dirty page. Typically the page dirty
1078 * state is cleared before we get here. In this case is it
1079 * conceivable we have no buffer heads.
1080 *
1081 * For delalloc space on the page we need to allocate space and
1082 * flush it. For unmapped buffer heads on the page we should
1083 * allocate space if the page is uptodate. For any other dirty
1084 * buffer heads on the page we should flush them.
1085 *
1086 * If we detect that a transaction would be required to flush
1087 * the page, we have to check the process flags first, if we
1088 * are already in a transaction or disk I/O during allocations
1089 * is off, we need to fail the writepage and redirty the page.
1090 */
1091
1092STATIC int
Nathan Scotte4c573b2006-03-14 13:54:26 +11001093xfs_vm_writepage(
Nathan Scottf51623b2006-03-14 13:26:27 +11001094 struct page *page,
1095 struct writeback_control *wbc)
1096{
1097 int error;
1098 int need_trans;
1099 int delalloc, unmapped, unwritten;
1100 struct inode *inode = page->mapping->host;
1101
1102 xfs_page_trace(XFS_WRITEPAGE_ENTER, inode, page, 0);
1103
1104 /*
1105 * We need a transaction if:
1106 * 1. There are delalloc buffers on the page
1107 * 2. The page is uptodate and we have unmapped buffers
1108 * 3. The page is uptodate and we have no buffers
1109 * 4. There are unwritten buffers on the page
1110 */
1111
1112 if (!page_has_buffers(page)) {
1113 unmapped = 1;
1114 need_trans = 1;
1115 } else {
1116 xfs_count_page_state(page, &delalloc, &unmapped, &unwritten);
1117 if (!PageUptodate(page))
1118 unmapped = 0;
1119 need_trans = delalloc + unmapped + unwritten;
1120 }
1121
1122 /*
1123 * If we need a transaction and the process flags say
1124 * we are already in a transaction, or no IO is allowed
1125 * then mark the page dirty again and leave the page
1126 * as is.
1127 */
Nathan Scott59c1b082006-06-09 14:59:13 +10001128 if (current_test_flags(PF_FSTRANS) && need_trans)
Nathan Scottf51623b2006-03-14 13:26:27 +11001129 goto out_fail;
1130
1131 /*
1132 * Delay hooking up buffer heads until we have
1133 * made our go/no-go decision.
1134 */
1135 if (!page_has_buffers(page))
1136 create_empty_buffers(page, 1 << inode->i_blkbits, 0);
1137
1138 /*
1139 * Convert delayed allocate, unwritten or unmapped space
1140 * to real space and flush out to disk.
1141 */
1142 error = xfs_page_state_convert(inode, page, wbc, 1, unmapped);
1143 if (error == -EAGAIN)
1144 goto out_fail;
1145 if (unlikely(error < 0))
1146 goto out_unlock;
1147
1148 return 0;
1149
1150out_fail:
1151 redirty_page_for_writepage(wbc, page);
1152 unlock_page(page);
1153 return 0;
1154out_unlock:
1155 unlock_page(page);
1156 return error;
1157}
1158
Nathan Scott7d4fb402006-06-09 15:27:16 +10001159STATIC int
1160xfs_vm_writepages(
1161 struct address_space *mapping,
1162 struct writeback_control *wbc)
1163{
Nathan Scott67fcaa72006-06-09 17:00:52 +10001164 struct bhv_vnode *vp = vn_from_inode(mapping->host);
Nathan Scott7d4fb402006-06-09 15:27:16 +10001165
1166 if (VN_TRUNC(vp))
1167 VUNTRUNCATE(vp);
1168 return generic_writepages(mapping, wbc);
1169}
1170
Nathan Scottf51623b2006-03-14 13:26:27 +11001171/*
1172 * Called to move a page into cleanable state - and from there
1173 * to be released. Possibly the page is already clean. We always
1174 * have buffer heads in this call.
1175 *
1176 * Returns 0 if the page is ok to release, 1 otherwise.
1177 *
1178 * Possible scenarios are:
1179 *
1180 * 1. We are being called to release a page which has been written
1181 * to via regular I/O. buffer heads will be dirty and possibly
1182 * delalloc. If no delalloc buffer heads in this case then we
1183 * can just return zero.
1184 *
1185 * 2. We are called to release a page which has been written via
1186 * mmap, all we need to do is ensure there is no delalloc
1187 * state in the buffer heads, if not we can let the caller
1188 * free them and we should come back later via writepage.
1189 */
1190STATIC int
Nathan Scott238f4c52006-03-17 17:26:25 +11001191xfs_vm_releasepage(
Nathan Scottf51623b2006-03-14 13:26:27 +11001192 struct page *page,
1193 gfp_t gfp_mask)
1194{
1195 struct inode *inode = page->mapping->host;
1196 int dirty, delalloc, unmapped, unwritten;
1197 struct writeback_control wbc = {
1198 .sync_mode = WB_SYNC_ALL,
1199 .nr_to_write = 1,
1200 };
1201
1202 xfs_page_trace(XFS_RELEASEPAGE_ENTER, inode, page, gfp_mask);
1203
Nathan Scott238f4c52006-03-17 17:26:25 +11001204 if (!page_has_buffers(page))
1205 return 0;
1206
Nathan Scottf51623b2006-03-14 13:26:27 +11001207 xfs_count_page_state(page, &delalloc, &unmapped, &unwritten);
1208 if (!delalloc && !unwritten)
1209 goto free_buffers;
1210
1211 if (!(gfp_mask & __GFP_FS))
1212 return 0;
1213
1214 /* If we are already inside a transaction or the thread cannot
1215 * do I/O, we cannot release this page.
1216 */
Nathan Scott59c1b082006-06-09 14:59:13 +10001217 if (current_test_flags(PF_FSTRANS))
Nathan Scottf51623b2006-03-14 13:26:27 +11001218 return 0;
1219
1220 /*
1221 * Convert delalloc space to real space, do not flush the
1222 * data out to disk, that will be done by the caller.
1223 * Never need to allocate space here - we will always
1224 * come back to writepage in that case.
1225 */
1226 dirty = xfs_page_state_convert(inode, page, &wbc, 0, 0);
1227 if (dirty == 0 && !unwritten)
1228 goto free_buffers;
1229 return 0;
1230
1231free_buffers:
1232 return try_to_free_buffers(page);
1233}
1234
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235STATIC int
Nathan Scottc2536662006-03-29 10:44:40 +10001236__xfs_get_blocks(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237 struct inode *inode,
1238 sector_t iblock,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239 struct buffer_head *bh_result,
1240 int create,
1241 int direct,
1242 bmapi_flags_t flags)
1243{
Nathan Scott67fcaa72006-06-09 17:00:52 +10001244 bhv_vnode_t *vp = vn_from_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245 xfs_iomap_t iomap;
Nathan Scottfdc7ed72005-11-02 15:13:13 +11001246 xfs_off_t offset;
1247 ssize_t size;
Nathan Scottc2536662006-03-29 10:44:40 +10001248 int niomap = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250
Nathan Scottfdc7ed72005-11-02 15:13:13 +11001251 offset = (xfs_off_t)iblock << inode->i_blkbits;
Nathan Scottc2536662006-03-29 10:44:40 +10001252 ASSERT(bh_result->b_size >= (1 << inode->i_blkbits));
1253 size = bh_result->b_size;
Nathan Scott67fcaa72006-06-09 17:00:52 +10001254 error = bhv_vop_bmap(vp, offset, size,
1255 create ? flags : BMAPI_READ, &iomap, &niomap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256 if (error)
1257 return -error;
Nathan Scottc2536662006-03-29 10:44:40 +10001258 if (niomap == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259 return 0;
1260
1261 if (iomap.iomap_bn != IOMAP_DADDR_NULL) {
Nathan Scott87cbc492006-03-14 13:26:43 +11001262 /*
1263 * For unwritten extents do not report a disk address on
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264 * the read case (treat as if we're reading into a hole).
1265 */
1266 if (create || !(iomap.iomap_flags & IOMAP_UNWRITTEN)) {
Nathan Scott87cbc492006-03-14 13:26:43 +11001267 xfs_map_buffer(bh_result, &iomap, offset,
1268 inode->i_blkbits);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269 }
1270 if (create && (iomap.iomap_flags & IOMAP_UNWRITTEN)) {
1271 if (direct)
1272 bh_result->b_private = inode;
1273 set_buffer_unwritten(bh_result);
1274 set_buffer_delay(bh_result);
1275 }
1276 }
1277
Nathan Scottc2536662006-03-29 10:44:40 +10001278 /*
1279 * If this is a realtime file, data may be on a different device.
1280 * to that pointed to from the buffer_head b_bdev currently.
1281 */
Nathan Scottce8e9222006-01-11 15:39:08 +11001282 bh_result->b_bdev = iomap.iomap_target->bt_bdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283
Nathan Scottc2536662006-03-29 10:44:40 +10001284 /*
1285 * If we previously allocated a block out beyond eof and we are
1286 * now coming back to use it then we will need to flag it as new
1287 * even if it has a disk address.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288 */
1289 if (create &&
1290 ((!buffer_mapped(bh_result) && !buffer_uptodate(bh_result)) ||
Nathan Scottfdc7ed72005-11-02 15:13:13 +11001291 (offset >= i_size_read(inode)) || (iomap.iomap_flags & IOMAP_NEW)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292 set_buffer_new(bh_result);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293
1294 if (iomap.iomap_flags & IOMAP_DELAY) {
1295 BUG_ON(direct);
1296 if (create) {
1297 set_buffer_uptodate(bh_result);
1298 set_buffer_mapped(bh_result);
1299 set_buffer_delay(bh_result);
1300 }
1301 }
1302
Nathan Scottc2536662006-03-29 10:44:40 +10001303 if (direct || size > (1 << inode->i_blkbits)) {
Nathan Scottfdc7ed72005-11-02 15:13:13 +11001304 ASSERT(iomap.iomap_bsize - iomap.iomap_delta > 0);
1305 offset = min_t(xfs_off_t,
Nathan Scottc2536662006-03-29 10:44:40 +10001306 iomap.iomap_bsize - iomap.iomap_delta, size);
1307 bh_result->b_size = (ssize_t)min_t(xfs_off_t, LONG_MAX, offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308 }
1309
1310 return 0;
1311}
1312
1313int
Nathan Scottc2536662006-03-29 10:44:40 +10001314xfs_get_blocks(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315 struct inode *inode,
1316 sector_t iblock,
1317 struct buffer_head *bh_result,
1318 int create)
1319{
Nathan Scottc2536662006-03-29 10:44:40 +10001320 return __xfs_get_blocks(inode, iblock,
Badari Pulavartyfa30bd02006-03-26 01:38:01 -08001321 bh_result, create, 0, BMAPI_WRITE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322}
1323
1324STATIC int
Nathan Scotte4c573b2006-03-14 13:54:26 +11001325xfs_get_blocks_direct(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326 struct inode *inode,
1327 sector_t iblock,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328 struct buffer_head *bh_result,
1329 int create)
1330{
Nathan Scottc2536662006-03-29 10:44:40 +10001331 return __xfs_get_blocks(inode, iblock,
Badari Pulavarty1d8fa7a2006-03-26 01:38:02 -08001332 bh_result, create, 1, BMAPI_WRITE|BMAPI_DIRECT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333}
1334
Christoph Hellwigf0973862005-09-05 08:22:52 +10001335STATIC void
Nathan Scotte4c573b2006-03-14 13:54:26 +11001336xfs_end_io_direct(
Christoph Hellwigf0973862005-09-05 08:22:52 +10001337 struct kiocb *iocb,
1338 loff_t offset,
1339 ssize_t size,
1340 void *private)
1341{
1342 xfs_ioend_t *ioend = iocb->private;
1343
1344 /*
1345 * Non-NULL private data means we need to issue a transaction to
1346 * convert a range from unwritten to written extents. This needs
Nathan Scottc41564b2006-03-29 08:55:14 +10001347 * to happen from process context but aio+dio I/O completion
Christoph Hellwigf0973862005-09-05 08:22:52 +10001348 * happens from irq context so we need to defer it to a workqueue.
Nathan Scottc41564b2006-03-29 08:55:14 +10001349 * This is not necessary for synchronous direct I/O, but we do
Christoph Hellwigf0973862005-09-05 08:22:52 +10001350 * it anyway to keep the code uniform and simpler.
1351 *
1352 * The core direct I/O code might be changed to always call the
1353 * completion handler in the future, in which case all this can
1354 * go away.
1355 */
1356 if (private && size > 0) {
1357 ioend->io_offset = offset;
1358 ioend->io_size = size;
1359 xfs_finish_ioend(ioend);
1360 } else {
1361 ASSERT(size >= 0);
1362 xfs_destroy_ioend(ioend);
1363 }
1364
1365 /*
Nathan Scottc41564b2006-03-29 08:55:14 +10001366 * blockdev_direct_IO can return an error even after the I/O
Christoph Hellwigf0973862005-09-05 08:22:52 +10001367 * completion handler was called. Thus we need to protect
1368 * against double-freeing.
1369 */
1370 iocb->private = NULL;
1371}
1372
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373STATIC ssize_t
Nathan Scotte4c573b2006-03-14 13:54:26 +11001374xfs_vm_direct_IO(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375 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 Scott67fcaa72006-06-09 17:00:52 +10001383 bhv_vnode_t *vp = vn_from_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384 xfs_iomap_t iomap;
1385 int maps = 1;
1386 int error;
Christoph Hellwigf0973862005-09-05 08:22:52 +10001387 ssize_t ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388
Nathan Scott67fcaa72006-06-09 17:00:52 +10001389 error = bhv_vop_bmap(vp, offset, 0, BMAPI_DEVICE, &iomap, &maps);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390 if (error)
1391 return -error;
1392
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +11001393 iocb->private = xfs_alloc_ioend(inode, IOMAP_UNWRITTEN);
Christoph Hellwigf0973862005-09-05 08:22:52 +10001394
1395 ret = blockdev_direct_IO_own_locking(rw, iocb, inode,
Nathan Scottce8e9222006-01-11 15:39:08 +11001396 iomap.iomap_target->bt_bdev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397 iov, offset, nr_segs,
Nathan Scotte4c573b2006-03-14 13:54:26 +11001398 xfs_get_blocks_direct,
1399 xfs_end_io_direct);
Christoph Hellwigf0973862005-09-05 08:22:52 +10001400
1401 if (unlikely(ret <= 0 && iocb->private))
1402 xfs_destroy_ioend(iocb->private);
1403 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404}
1405
Nathan Scottf51623b2006-03-14 13:26:27 +11001406STATIC int
Nathan Scotte4c573b2006-03-14 13:54:26 +11001407xfs_vm_prepare_write(
Nathan Scottf51623b2006-03-14 13:26:27 +11001408 struct file *file,
1409 struct page *page,
1410 unsigned int from,
1411 unsigned int to)
1412{
Nathan Scottc2536662006-03-29 10:44:40 +10001413 return block_prepare_write(page, from, to, xfs_get_blocks);
Nathan Scottf51623b2006-03-14 13:26:27 +11001414}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415
1416STATIC sector_t
Nathan Scotte4c573b2006-03-14 13:54:26 +11001417xfs_vm_bmap(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418 struct address_space *mapping,
1419 sector_t block)
1420{
1421 struct inode *inode = (struct inode *)mapping->host;
Nathan Scott67fcaa72006-06-09 17:00:52 +10001422 bhv_vnode_t *vp = vn_from_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423
Nathan Scotte4c573b2006-03-14 13:54:26 +11001424 vn_trace_entry(vp, __FUNCTION__, (inst_t *)__return_address);
Nathan Scott67fcaa72006-06-09 17:00:52 +10001425 bhv_vop_rwlock(vp, VRWLOCK_READ);
1426 bhv_vop_flush_pages(vp, (xfs_off_t)0, -1, 0, FI_REMAPF);
1427 bhv_vop_rwunlock(vp, VRWLOCK_READ);
Nathan Scottc2536662006-03-29 10:44:40 +10001428 return generic_block_bmap(mapping, block, xfs_get_blocks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429}
1430
1431STATIC int
Nathan Scotte4c573b2006-03-14 13:54:26 +11001432xfs_vm_readpage(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433 struct file *unused,
1434 struct page *page)
1435{
Nathan Scottc2536662006-03-29 10:44:40 +10001436 return mpage_readpage(page, xfs_get_blocks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437}
1438
1439STATIC int
Nathan Scotte4c573b2006-03-14 13:54:26 +11001440xfs_vm_readpages(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441 struct file *unused,
1442 struct address_space *mapping,
1443 struct list_head *pages,
1444 unsigned nr_pages)
1445{
Nathan Scottc2536662006-03-29 10:44:40 +10001446 return mpage_readpages(mapping, pages, nr_pages, xfs_get_blocks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447}
1448
NeilBrown2ff28e22006-03-26 01:37:18 -08001449STATIC void
Nathan Scott238f4c52006-03-17 17:26:25 +11001450xfs_vm_invalidatepage(
Nathan Scottbcec2b72005-09-02 16:40:17 +10001451 struct page *page,
1452 unsigned long offset)
1453{
1454 xfs_page_trace(XFS_INVALIDPAGE_ENTER,
1455 page->mapping->host, page, offset);
NeilBrown2ff28e22006-03-26 01:37:18 -08001456 block_invalidatepage(page, offset);
Nathan Scottbcec2b72005-09-02 16:40:17 +10001457}
1458
Nathan Scotte4c573b2006-03-14 13:54:26 +11001459struct address_space_operations xfs_address_space_operations = {
1460 .readpage = xfs_vm_readpage,
1461 .readpages = xfs_vm_readpages,
1462 .writepage = xfs_vm_writepage,
Nathan Scott7d4fb402006-06-09 15:27:16 +10001463 .writepages = xfs_vm_writepages,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464 .sync_page = block_sync_page,
Nathan Scott238f4c52006-03-17 17:26:25 +11001465 .releasepage = xfs_vm_releasepage,
1466 .invalidatepage = xfs_vm_invalidatepage,
Nathan Scotte4c573b2006-03-14 13:54:26 +11001467 .prepare_write = xfs_vm_prepare_write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468 .commit_write = generic_commit_write,
Nathan Scotte4c573b2006-03-14 13:54:26 +11001469 .bmap = xfs_vm_bmap,
1470 .direct_IO = xfs_vm_direct_IO,
Christoph Lametere965f962006-02-01 03:05:41 -08001471 .migratepage = buffer_migrate_page,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472};