blob: 6cbbd165c60db28815b79b18992f5a7433485067 [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 Scottec86dc02006-03-17 17:25:36 +110079 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;
139 bh->b_end_io(bh, ioend->io_uptodate);
140 }
141
Christoph Hellwig0829c362005-09-02 16:58:49 +1000142 vn_iowake(ioend->io_vnode);
143 mempool_free(ioend, xfs_ioend_pool);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144}
145
146/*
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100147 * Buffered IO write completion for delayed allocate extents.
148 * TODO: Update ondisk isize now that we know the file data
149 * has been flushed (i.e. the notorious "NULL file" problem).
150 */
151STATIC void
152xfs_end_bio_delalloc(
153 void *data)
154{
155 xfs_ioend_t *ioend = data;
156
157 xfs_destroy_ioend(ioend);
158}
159
160/*
161 * Buffered IO write completion for regular, written extents.
162 */
163STATIC void
164xfs_end_bio_written(
165 void *data)
166{
167 xfs_ioend_t *ioend = data;
168
169 xfs_destroy_ioend(ioend);
170}
171
172/*
173 * IO write completion for unwritten extents.
174 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 * Issue transactions to convert a buffer range from unwritten
Christoph Hellwigf0973862005-09-05 08:22:52 +1000176 * to written extents.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 */
178STATIC void
Christoph Hellwig0829c362005-09-02 16:58:49 +1000179xfs_end_bio_unwritten(
180 void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181{
Christoph Hellwig0829c362005-09-02 16:58:49 +1000182 xfs_ioend_t *ioend = data;
183 vnode_t *vp = ioend->io_vnode;
184 xfs_off_t offset = ioend->io_offset;
185 size_t size = ioend->io_size;
186 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187
Christoph Hellwig0829c362005-09-02 16:58:49 +1000188 if (ioend->io_uptodate)
189 VOP_BMAP(vp, offset, size, BMAPI_UNWRITTEN, NULL, NULL, error);
190 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);
214 ioend->io_uptodate = 1; /* cleared if any I/O fails */
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 Scottec86dc02006-03-17 17:25:36 +1100242 vnode_t *vp = vn_from_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 int error, nmaps = 1;
244
245 VOP_BMAP(vp, offset, count, flags, mapp, &nmaps, error);
246 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
274 ASSERT(ioend);
275 ASSERT(atomic_read(&bio->bi_cnt) >= 1);
276
277 /* Toss bio and pass work off to an xfsdatad thread */
278 if (!test_bit(BIO_UPTODATE, &bio->bi_flags))
279 ioend->io_uptodate = 0;
280 bio->bi_private = NULL;
281 bio->bi_end_io = NULL;
282
283 bio_put(bio);
284 xfs_finish_ioend(ioend);
285 return 0;
286}
287
288STATIC void
289xfs_submit_ioend_bio(
290 xfs_ioend_t *ioend,
291 struct bio *bio)
292{
293 atomic_inc(&ioend->io_remaining);
294
295 bio->bi_private = ioend;
296 bio->bi_end_io = xfs_end_bio;
297
298 submit_bio(WRITE, bio);
299 ASSERT(!bio_flagged(bio, BIO_EOPNOTSUPP));
300 bio_put(bio);
301}
302
303STATIC struct bio *
304xfs_alloc_ioend_bio(
305 struct buffer_head *bh)
306{
307 struct bio *bio;
308 int nvecs = bio_get_nr_vecs(bh->b_bdev);
309
310 do {
311 bio = bio_alloc(GFP_NOIO, nvecs);
312 nvecs >>= 1;
313 } while (!bio);
314
315 ASSERT(bio->bi_private == NULL);
316 bio->bi_sector = bh->b_blocknr * (bh->b_size >> 9);
317 bio->bi_bdev = bh->b_bdev;
318 bio_get(bio);
319 return bio;
320}
321
322STATIC void
323xfs_start_buffer_writeback(
324 struct buffer_head *bh)
325{
326 ASSERT(buffer_mapped(bh));
327 ASSERT(buffer_locked(bh));
328 ASSERT(!buffer_delay(bh));
329 ASSERT(!buffer_unwritten(bh));
330
331 mark_buffer_async_write(bh);
332 set_buffer_uptodate(bh);
333 clear_buffer_dirty(bh);
334}
335
336STATIC void
337xfs_start_page_writeback(
338 struct page *page,
339 struct writeback_control *wbc,
340 int clear_dirty,
341 int buffers)
342{
343 ASSERT(PageLocked(page));
344 ASSERT(!PageWriteback(page));
345 set_page_writeback(page);
346 if (clear_dirty)
347 clear_page_dirty(page);
348 unlock_page(page);
349 if (!buffers) {
350 end_page_writeback(page);
351 wbc->pages_skipped++; /* We didn't write this page */
352 }
353}
354
355static inline int bio_add_buffer(struct bio *bio, struct buffer_head *bh)
356{
357 return bio_add_page(bio, bh->b_page, bh->b_size, bh_offset(bh));
358}
359
360/*
David Chinnerd88992f2006-01-18 13:38:12 +1100361 * Submit all of the bios for all of the ioends we have saved up, covering the
362 * initial writepage page and also any probed pages.
363 *
364 * Because we may have multiple ioends spanning a page, we need to start
365 * writeback on all the buffers before we submit them for I/O. If we mark the
366 * buffers as we got, then we can end up with a page that only has buffers
367 * marked async write and I/O complete on can occur before we mark the other
368 * buffers async write.
369 *
370 * The end result of this is that we trip a bug in end_page_writeback() because
371 * we call it twice for the one page as the code in end_buffer_async_write()
372 * assumes that all buffers on the page are started at the same time.
373 *
374 * The fix is two passes across the ioend list - one to start writeback on the
Nathan Scottc41564b2006-03-29 08:55:14 +1000375 * buffer_heads, and then submit them for I/O on the second pass.
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100376 */
377STATIC void
378xfs_submit_ioend(
379 xfs_ioend_t *ioend)
380{
David Chinnerd88992f2006-01-18 13:38:12 +1100381 xfs_ioend_t *head = ioend;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100382 xfs_ioend_t *next;
383 struct buffer_head *bh;
384 struct bio *bio;
385 sector_t lastblock = 0;
386
David Chinnerd88992f2006-01-18 13:38:12 +1100387 /* Pass 1 - start writeback */
388 do {
389 next = ioend->io_list;
390 for (bh = ioend->io_buffer_head; bh; bh = bh->b_private) {
391 xfs_start_buffer_writeback(bh);
392 }
393 } while ((ioend = next) != NULL);
394
395 /* Pass 2 - submit I/O */
396 ioend = head;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100397 do {
398 next = ioend->io_list;
399 bio = NULL;
400
401 for (bh = ioend->io_buffer_head; bh; bh = bh->b_private) {
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100402
403 if (!bio) {
404 retry:
405 bio = xfs_alloc_ioend_bio(bh);
406 } else if (bh->b_blocknr != lastblock + 1) {
407 xfs_submit_ioend_bio(ioend, bio);
408 goto retry;
409 }
410
411 if (bio_add_buffer(bio, bh) != bh->b_size) {
412 xfs_submit_ioend_bio(ioend, bio);
413 goto retry;
414 }
415
416 lastblock = bh->b_blocknr;
417 }
418 if (bio)
419 xfs_submit_ioend_bio(ioend, bio);
420 xfs_finish_ioend(ioend);
421 } while ((ioend = next) != NULL);
422}
423
424/*
425 * Cancel submission of all buffer_heads so far in this endio.
426 * Toss the endio too. Only ever called for the initial page
427 * in a writepage request, so only ever one page.
428 */
429STATIC void
430xfs_cancel_ioend(
431 xfs_ioend_t *ioend)
432{
433 xfs_ioend_t *next;
434 struct buffer_head *bh, *next_bh;
435
436 do {
437 next = ioend->io_list;
438 bh = ioend->io_buffer_head;
439 do {
440 next_bh = bh->b_private;
441 clear_buffer_async_write(bh);
442 unlock_buffer(bh);
443 } while ((bh = next_bh) != NULL);
444
445 vn_iowake(ioend->io_vnode);
446 mempool_free(ioend, xfs_ioend_pool);
447 } while ((ioend = next) != NULL);
448}
449
450/*
451 * Test to see if we've been building up a completion structure for
452 * earlier buffers -- if so, we try to append to this ioend if we
453 * can, otherwise we finish off any current ioend and start another.
454 * Return true if we've finished the given ioend.
455 */
456STATIC void
457xfs_add_to_ioend(
458 struct inode *inode,
459 struct buffer_head *bh,
Christoph Hellwig7336cea2006-01-11 20:49:16 +1100460 xfs_off_t offset,
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100461 unsigned int type,
462 xfs_ioend_t **result,
463 int need_ioend)
464{
465 xfs_ioend_t *ioend = *result;
466
467 if (!ioend || need_ioend || type != ioend->io_type) {
468 xfs_ioend_t *previous = *result;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100469
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100470 ioend = xfs_alloc_ioend(inode, type);
471 ioend->io_offset = offset;
472 ioend->io_buffer_head = bh;
473 ioend->io_buffer_tail = bh;
474 if (previous)
475 previous->io_list = ioend;
476 *result = ioend;
477 } else {
478 ioend->io_buffer_tail->b_private = bh;
479 ioend->io_buffer_tail = bh;
480 }
481
482 bh->b_private = NULL;
483 ioend->io_size += bh->b_size;
484}
485
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486STATIC void
Nathan Scott87cbc492006-03-14 13:26:43 +1100487xfs_map_buffer(
488 struct buffer_head *bh,
489 xfs_iomap_t *mp,
490 xfs_off_t offset,
491 uint block_bits)
492{
493 sector_t bn;
494
495 ASSERT(mp->iomap_bn != IOMAP_DADDR_NULL);
496
497 bn = (mp->iomap_bn >> (block_bits - BBSHIFT)) +
498 ((offset - mp->iomap_offset) >> block_bits);
499
500 ASSERT(bn || (mp->iomap_flags & IOMAP_REALTIME));
501
502 bh->b_blocknr = bn;
503 set_buffer_mapped(bh);
504}
505
506STATIC void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507xfs_map_at_offset(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 struct buffer_head *bh,
Christoph Hellwig1defeac2006-01-11 20:48:33 +1100509 loff_t offset,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 int block_bits,
Christoph Hellwig1defeac2006-01-11 20:48:33 +1100511 xfs_iomap_t *iomapp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 ASSERT(!(iomapp->iomap_flags & IOMAP_HOLE));
514 ASSERT(!(iomapp->iomap_flags & IOMAP_DELAY));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515
516 lock_buffer(bh);
Nathan Scott87cbc492006-03-14 13:26:43 +1100517 xfs_map_buffer(bh, iomapp, offset, block_bits);
Nathan Scottce8e9222006-01-11 15:39:08 +1100518 bh->b_bdev = iomapp->iomap_target->bt_bdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 set_buffer_mapped(bh);
520 clear_buffer_delay(bh);
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100521 clear_buffer_unwritten(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522}
523
524/*
Christoph Hellwig6c4fe192006-01-11 20:49:28 +1100525 * Look for a page at index that is suitable for clustering.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 */
527STATIC unsigned int
Christoph Hellwig6c4fe192006-01-11 20:49:28 +1100528xfs_probe_page(
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100529 struct page *page,
Christoph Hellwig6c4fe192006-01-11 20:49:28 +1100530 unsigned int pg_offset,
531 int mapped)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 int ret = 0;
534
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 if (PageWriteback(page))
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100536 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537
538 if (page->mapping && PageDirty(page)) {
539 if (page_has_buffers(page)) {
540 struct buffer_head *bh, *head;
541
542 bh = head = page_buffers(page);
543 do {
Christoph Hellwig6c4fe192006-01-11 20:49:28 +1100544 if (!buffer_uptodate(bh))
545 break;
546 if (mapped != buffer_mapped(bh))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 break;
548 ret += bh->b_size;
549 if (ret >= pg_offset)
550 break;
551 } while ((bh = bh->b_this_page) != head);
552 } else
Christoph Hellwig6c4fe192006-01-11 20:49:28 +1100553 ret = mapped ? 0 : PAGE_CACHE_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 }
555
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 return ret;
557}
558
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100559STATIC size_t
Christoph Hellwig6c4fe192006-01-11 20:49:28 +1100560xfs_probe_cluster(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 struct inode *inode,
562 struct page *startpage,
563 struct buffer_head *bh,
Christoph Hellwig6c4fe192006-01-11 20:49:28 +1100564 struct buffer_head *head,
565 int mapped)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566{
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100567 struct pagevec pvec;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 pgoff_t tindex, tlast, tloff;
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100569 size_t total = 0;
570 int done = 0, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571
572 /* First sum forwards in this page */
573 do {
Eric Sandeen2353e8e2006-02-28 12:30:30 +1100574 if (!buffer_uptodate(bh) || (mapped != buffer_mapped(bh)))
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100575 return total;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 total += bh->b_size;
577 } while ((bh = bh->b_this_page) != head);
578
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100579 /* if we reached the end of the page, sum forwards in following pages */
580 tlast = i_size_read(inode) >> PAGE_CACHE_SHIFT;
581 tindex = startpage->index + 1;
582
583 /* Prune this back to avoid pathological behavior */
584 tloff = min(tlast, startpage->index + 64);
585
586 pagevec_init(&pvec, 0);
587 while (!done && tindex <= tloff) {
588 unsigned len = min_t(pgoff_t, PAGEVEC_SIZE, tlast - tindex + 1);
589
590 if (!pagevec_lookup(&pvec, inode->i_mapping, tindex, len))
591 break;
592
593 for (i = 0; i < pagevec_count(&pvec); i++) {
594 struct page *page = pvec.pages[i];
595 size_t pg_offset, len = 0;
596
597 if (tindex == tlast) {
598 pg_offset =
599 i_size_read(inode) & (PAGE_CACHE_SIZE - 1);
Christoph Hellwig1defeac2006-01-11 20:48:33 +1100600 if (!pg_offset) {
601 done = 1;
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100602 break;
Christoph Hellwig1defeac2006-01-11 20:48:33 +1100603 }
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100604 } else
605 pg_offset = PAGE_CACHE_SIZE;
606
607 if (page->index == tindex && !TestSetPageLocked(page)) {
Christoph Hellwig6c4fe192006-01-11 20:49:28 +1100608 len = xfs_probe_page(page, pg_offset, mapped);
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100609 unlock_page(page);
610 }
611
612 if (!len) {
613 done = 1;
614 break;
615 }
616
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 total += len;
Christoph Hellwig1defeac2006-01-11 20:48:33 +1100618 tindex++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 }
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100620
621 pagevec_release(&pvec);
622 cond_resched();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 }
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100624
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 return total;
626}
627
628/*
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100629 * Test if a given page is suitable for writing as part of an unwritten
630 * or delayed allocate extent.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 */
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100632STATIC int
633xfs_is_delayed_page(
634 struct page *page,
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100635 unsigned int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 if (PageWriteback(page))
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100638 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639
640 if (page->mapping && page_has_buffers(page)) {
641 struct buffer_head *bh, *head;
642 int acceptable = 0;
643
644 bh = head = page_buffers(page);
645 do {
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100646 if (buffer_unwritten(bh))
647 acceptable = (type == IOMAP_UNWRITTEN);
648 else if (buffer_delay(bh))
649 acceptable = (type == IOMAP_DELAY);
David Chinner2ddee842006-03-22 12:47:40 +1100650 else if (buffer_dirty(bh) && buffer_mapped(bh))
Christoph Hellwig6c4fe192006-01-11 20:49:28 +1100651 acceptable = (type == 0);
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100652 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 } while ((bh = bh->b_this_page) != head);
655
656 if (acceptable)
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100657 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658 }
659
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100660 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661}
662
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663/*
664 * Allocate & map buffers for page given the extent map. Write it out.
665 * except for the original page of a writepage, this is called on
666 * delalloc/unwritten pages only, for the original page it is possible
667 * that the page has no mapping at all.
668 */
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100669STATIC int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670xfs_convert_page(
671 struct inode *inode,
672 struct page *page,
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100673 loff_t tindex,
Christoph Hellwig1defeac2006-01-11 20:48:33 +1100674 xfs_iomap_t *mp,
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100675 xfs_ioend_t **ioendp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 struct writeback_control *wbc,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 int startio,
678 int all_bh)
679{
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100680 struct buffer_head *bh, *head;
Christoph Hellwig9260dc62006-01-11 20:48:47 +1100681 xfs_off_t end_offset;
682 unsigned long p_offset;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100683 unsigned int type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 int bbits = inode->i_blkbits;
Nathan Scott24e17b52005-05-05 13:33:20 -0700685 int len, page_dirty;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100686 int count = 0, done = 0, uptodate = 1;
Christoph Hellwig9260dc62006-01-11 20:48:47 +1100687 xfs_off_t offset = page_offset(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100689 if (page->index != tindex)
690 goto fail;
691 if (TestSetPageLocked(page))
692 goto fail;
693 if (PageWriteback(page))
694 goto fail_unlock_page;
695 if (page->mapping != inode->i_mapping)
696 goto fail_unlock_page;
697 if (!xfs_is_delayed_page(page, (*ioendp)->io_type))
698 goto fail_unlock_page;
699
Nathan Scott24e17b52005-05-05 13:33:20 -0700700 /*
701 * page_dirty is initially a count of buffers on the page before
Nathan Scottc41564b2006-03-29 08:55:14 +1000702 * EOF and is decremented as we move each into a cleanable state.
Christoph Hellwig9260dc62006-01-11 20:48:47 +1100703 *
704 * Derivation:
705 *
706 * End offset is the highest offset that this page should represent.
707 * If we are on the last page, (end_offset & (PAGE_CACHE_SIZE - 1))
708 * will evaluate non-zero and be less than PAGE_CACHE_SIZE and
709 * hence give us the correct page_dirty count. On any other page,
710 * it will be zero and in that case we need page_dirty to be the
711 * count of buffers on the page.
Nathan Scott24e17b52005-05-05 13:33:20 -0700712 */
Christoph Hellwig9260dc62006-01-11 20:48:47 +1100713 end_offset = min_t(unsigned long long,
714 (xfs_off_t)(page->index + 1) << PAGE_CACHE_SHIFT,
715 i_size_read(inode));
716
Nathan Scott24e17b52005-05-05 13:33:20 -0700717 len = 1 << inode->i_blkbits;
Christoph Hellwig9260dc62006-01-11 20:48:47 +1100718 p_offset = min_t(unsigned long, end_offset & (PAGE_CACHE_SIZE - 1),
719 PAGE_CACHE_SIZE);
720 p_offset = p_offset ? roundup(p_offset, len) : PAGE_CACHE_SIZE;
721 page_dirty = p_offset / len;
Nathan Scott24e17b52005-05-05 13:33:20 -0700722
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 bh = head = page_buffers(page);
724 do {
Christoph Hellwig9260dc62006-01-11 20:48:47 +1100725 if (offset >= end_offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 break;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100727 if (!buffer_uptodate(bh))
728 uptodate = 0;
729 if (!(PageUptodate(page) || buffer_uptodate(bh))) {
730 done = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 continue;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100732 }
733
Christoph Hellwig9260dc62006-01-11 20:48:47 +1100734 if (buffer_unwritten(bh) || buffer_delay(bh)) {
735 if (buffer_unwritten(bh))
736 type = IOMAP_UNWRITTEN;
737 else
738 type = IOMAP_DELAY;
739
740 if (!xfs_iomap_valid(mp, offset)) {
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100741 done = 1;
Christoph Hellwig9260dc62006-01-11 20:48:47 +1100742 continue;
743 }
744
745 ASSERT(!(mp->iomap_flags & IOMAP_HOLE));
746 ASSERT(!(mp->iomap_flags & IOMAP_DELAY));
747
748 xfs_map_at_offset(bh, offset, bbits, mp);
749 if (startio) {
Christoph Hellwig7336cea2006-01-11 20:49:16 +1100750 xfs_add_to_ioend(inode, bh, offset,
Christoph Hellwig9260dc62006-01-11 20:48:47 +1100751 type, ioendp, done);
752 } else {
753 set_buffer_dirty(bh);
754 unlock_buffer(bh);
755 mark_buffer_dirty(bh);
756 }
757 page_dirty--;
758 count++;
759 } else {
760 type = 0;
761 if (buffer_mapped(bh) && all_bh && startio) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 lock_buffer(bh);
Christoph Hellwig7336cea2006-01-11 20:49:16 +1100763 xfs_add_to_ioend(inode, bh, offset,
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100764 type, ioendp, done);
765 count++;
Nathan Scott24e17b52005-05-05 13:33:20 -0700766 page_dirty--;
Christoph Hellwig9260dc62006-01-11 20:48:47 +1100767 } else {
768 done = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 }
Christoph Hellwig7336cea2006-01-11 20:49:16 +1100771 } while (offset += len, (bh = bh->b_this_page) != head);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100773 if (uptodate && bh == head)
774 SetPageUptodate(page);
775
776 if (startio) {
Christoph Hellwigf5e596b2006-01-11 20:49:42 +1100777 if (count) {
778 struct backing_dev_info *bdi;
779
780 bdi = inode->i_mapping->backing_dev_info;
David Chinner9fddaca2006-02-07 20:27:24 +1100781 wbc->nr_to_write--;
Christoph Hellwigf5e596b2006-01-11 20:49:42 +1100782 if (bdi_write_congested(bdi)) {
783 wbc->encountered_congestion = 1;
784 done = 1;
David Chinner9fddaca2006-02-07 20:27:24 +1100785 } else if (wbc->nr_to_write <= 0) {
Christoph Hellwigf5e596b2006-01-11 20:49:42 +1100786 done = 1;
787 }
788 }
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100789 xfs_start_page_writeback(page, wbc, !page_dirty, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 }
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100791
792 return done;
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100793 fail_unlock_page:
794 unlock_page(page);
795 fail:
796 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797}
798
799/*
800 * Convert & write out a cluster of pages in the same extent as defined
801 * by mp and following the start page.
802 */
803STATIC void
804xfs_cluster_write(
805 struct inode *inode,
806 pgoff_t tindex,
807 xfs_iomap_t *iomapp,
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100808 xfs_ioend_t **ioendp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 struct writeback_control *wbc,
810 int startio,
811 int all_bh,
812 pgoff_t tlast)
813{
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100814 struct pagevec pvec;
815 int done = 0, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100817 pagevec_init(&pvec, 0);
818 while (!done && tindex <= tlast) {
819 unsigned len = min_t(pgoff_t, PAGEVEC_SIZE, tlast - tindex + 1);
820
821 if (!pagevec_lookup(&pvec, inode->i_mapping, tindex, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 break;
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100823
824 for (i = 0; i < pagevec_count(&pvec); i++) {
825 done = xfs_convert_page(inode, pvec.pages[i], tindex++,
826 iomapp, ioendp, wbc, startio, all_bh);
827 if (done)
828 break;
829 }
830
831 pagevec_release(&pvec);
832 cond_resched();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833 }
834}
835
836/*
837 * Calling this without startio set means we are being asked to make a dirty
838 * page ready for freeing it's buffers. When called with startio set then
839 * we are coming from writepage.
840 *
841 * When called with startio set it is important that we write the WHOLE
842 * page if possible.
843 * The bh->b_state's cannot know if any of the blocks or which block for
844 * that matter are dirty due to mmap writes, and therefore bh uptodate is
Nathan Scottc41564b2006-03-29 08:55:14 +1000845 * only valid if the page itself isn't completely uptodate. Some layers
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 * may clear the page dirty flag prior to calling write page, under the
847 * assumption the entire page will be written out; by not writing out the
848 * whole page the page can be reused before all valid dirty data is
849 * written out. Note: in the case of a page that has been dirty'd by
850 * mapwrite and but partially setup by block_prepare_write the
851 * bh->b_states's will not agree and only ones setup by BPW/BCW will have
852 * valid state, thus the whole page must be written out thing.
853 */
854
855STATIC int
856xfs_page_state_convert(
857 struct inode *inode,
858 struct page *page,
859 struct writeback_control *wbc,
860 int startio,
861 int unmapped) /* also implies page uptodate */
862{
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100863 struct buffer_head *bh, *head;
Christoph Hellwig1defeac2006-01-11 20:48:33 +1100864 xfs_iomap_t iomap;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100865 xfs_ioend_t *ioend = NULL, *iohead = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 loff_t offset;
867 unsigned long p_offset = 0;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100868 unsigned int type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 __uint64_t end_offset;
870 pgoff_t end_index, last_index, tlast;
Christoph Hellwigd5cb48a2006-01-11 20:49:02 +1100871 ssize_t size, len;
872 int flags, err, iomap_valid = 0, uptodate = 1;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100873 int page_dirty, count = 0, trylock_flag = 0;
Christoph Hellwig6c4fe192006-01-11 20:49:28 +1100874 int all_bh = unmapped;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875
Daniel Moore3ba08152005-05-05 13:31:34 -0700876 /* wait for other IO threads? */
Christoph Hellwigf5e596b2006-01-11 20:49:42 +1100877 if (startio && (wbc->sync_mode == WB_SYNC_NONE && wbc->nonblocking))
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100878 trylock_flag |= BMAPI_TRYLOCK;
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;
959 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;
962 flags = BMAPI_ALLOCATE;
963 if (!startio)
964 flags |= trylock_flag;
Christoph Hellwigd5cb48a2006-01-11 20:49:02 +1100965 } else {
Christoph Hellwig6c4fe192006-01-11 20:49:28 +1100966 type = IOMAP_NEW;
Christoph Hellwigd5cb48a2006-01-11 20:49:02 +1100967 flags = BMAPI_WRITE|BMAPI_MMAP;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100968 }
969
Christoph Hellwig1defeac2006-01-11 20:48:33 +1100970 if (!iomap_valid) {
Christoph Hellwig6c4fe192006-01-11 20:49:28 +1100971 if (type == IOMAP_NEW) {
972 size = xfs_probe_cluster(inode,
973 page, bh, head, 0);
Christoph Hellwigd5cb48a2006-01-11 20:49:02 +1100974 } else {
975 size = len;
976 }
977
978 err = xfs_map_blocks(inode, offset, size,
979 &iomap, flags);
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100980 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981 goto error;
Christoph Hellwig1defeac2006-01-11 20:48:33 +1100982 iomap_valid = xfs_iomap_valid(&iomap, offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983 }
Christoph Hellwig1defeac2006-01-11 20:48:33 +1100984 if (iomap_valid) {
985 xfs_map_at_offset(bh, offset,
986 inode->i_blkbits, &iomap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 if (startio) {
Christoph Hellwig7336cea2006-01-11 20:49:16 +1100988 xfs_add_to_ioend(inode, bh, offset,
Christoph Hellwig1defeac2006-01-11 20:48:33 +1100989 type, &ioend,
990 !iomap_valid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991 } else {
992 set_buffer_dirty(bh);
993 unlock_buffer(bh);
994 mark_buffer_dirty(bh);
995 }
996 page_dirty--;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100997 count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998 }
Christoph Hellwigd5cb48a2006-01-11 20:49:02 +1100999 } else if (buffer_uptodate(bh) && startio) {
Christoph Hellwig6c4fe192006-01-11 20:49:28 +11001000 /*
1001 * we got here because the buffer is already mapped.
1002 * That means it must already have extents allocated
1003 * underneath it. Map the extent by reading it.
1004 */
1005 if (!iomap_valid || type != 0) {
1006 flags = BMAPI_READ;
1007 size = xfs_probe_cluster(inode, page, bh,
1008 head, 1);
1009 err = xfs_map_blocks(inode, offset, size,
1010 &iomap, flags);
1011 if (err)
1012 goto error;
1013 iomap_valid = xfs_iomap_valid(&iomap, offset);
1014 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015
Christoph Hellwig6c4fe192006-01-11 20:49:28 +11001016 type = 0;
Christoph Hellwigd5cb48a2006-01-11 20:49:02 +11001017 if (!test_and_set_bit(BH_Lock, &bh->b_state)) {
1018 ASSERT(buffer_mapped(bh));
Christoph Hellwig6c4fe192006-01-11 20:49:28 +11001019 if (iomap_valid)
1020 all_bh = 1;
Christoph Hellwig7336cea2006-01-11 20:49:16 +11001021 xfs_add_to_ioend(inode, bh, offset, type,
Christoph Hellwigd5cb48a2006-01-11 20:49:02 +11001022 &ioend, !iomap_valid);
1023 page_dirty--;
1024 count++;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +11001025 } else {
Christoph Hellwig1defeac2006-01-11 20:48:33 +11001026 iomap_valid = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027 }
Christoph Hellwigd5cb48a2006-01-11 20:49:02 +11001028 } else if ((buffer_uptodate(bh) || PageUptodate(page)) &&
1029 (unmapped || startio)) {
1030 iomap_valid = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031 }
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +11001032
1033 if (!iohead)
1034 iohead = ioend;
1035
1036 } while (offset += len, ((bh = bh->b_this_page) != head));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037
1038 if (uptodate && bh == head)
1039 SetPageUptodate(page);
1040
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +11001041 if (startio)
1042 xfs_start_page_writeback(page, wbc, 1, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043
Christoph Hellwig1defeac2006-01-11 20:48:33 +11001044 if (ioend && iomap_valid) {
1045 offset = (iomap.iomap_offset + iomap.iomap_bsize - 1) >>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046 PAGE_CACHE_SHIFT;
Nathan Scott775bf6c2005-05-05 13:33:01 -07001047 tlast = min_t(pgoff_t, offset, last_index);
Christoph Hellwig1defeac2006-01-11 20:48:33 +11001048 xfs_cluster_write(inode, page->index + 1, &iomap, &ioend,
Christoph Hellwig6c4fe192006-01-11 20:49:28 +11001049 wbc, startio, all_bh, tlast);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050 }
1051
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +11001052 if (iohead)
1053 xfs_submit_ioend(iohead);
1054
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055 return page_dirty;
1056
1057error:
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +11001058 if (iohead)
1059 xfs_cancel_ioend(iohead);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060
1061 /*
1062 * If it's delalloc and we have nowhere to put it,
1063 * throw it away, unless the lower layers told
1064 * us to try again.
1065 */
1066 if (err != -EAGAIN) {
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +11001067 if (!unmapped)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068 block_invalidatepage(page, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069 ClearPageUptodate(page);
1070 }
1071 return err;
1072}
1073
Nathan Scottf51623b2006-03-14 13:26:27 +11001074/*
1075 * writepage: Called from one of two places:
1076 *
1077 * 1. we are flushing a delalloc buffer head.
1078 *
1079 * 2. we are writing out a dirty page. Typically the page dirty
1080 * state is cleared before we get here. In this case is it
1081 * conceivable we have no buffer heads.
1082 *
1083 * For delalloc space on the page we need to allocate space and
1084 * flush it. For unmapped buffer heads on the page we should
1085 * allocate space if the page is uptodate. For any other dirty
1086 * buffer heads on the page we should flush them.
1087 *
1088 * If we detect that a transaction would be required to flush
1089 * the page, we have to check the process flags first, if we
1090 * are already in a transaction or disk I/O during allocations
1091 * is off, we need to fail the writepage and redirty the page.
1092 */
1093
1094STATIC int
Nathan Scotte4c573b2006-03-14 13:54:26 +11001095xfs_vm_writepage(
Nathan Scottf51623b2006-03-14 13:26:27 +11001096 struct page *page,
1097 struct writeback_control *wbc)
1098{
1099 int error;
1100 int need_trans;
1101 int delalloc, unmapped, unwritten;
1102 struct inode *inode = page->mapping->host;
1103
1104 xfs_page_trace(XFS_WRITEPAGE_ENTER, inode, page, 0);
1105
1106 /*
1107 * We need a transaction if:
1108 * 1. There are delalloc buffers on the page
1109 * 2. The page is uptodate and we have unmapped buffers
1110 * 3. The page is uptodate and we have no buffers
1111 * 4. There are unwritten buffers on the page
1112 */
1113
1114 if (!page_has_buffers(page)) {
1115 unmapped = 1;
1116 need_trans = 1;
1117 } else {
1118 xfs_count_page_state(page, &delalloc, &unmapped, &unwritten);
1119 if (!PageUptodate(page))
1120 unmapped = 0;
1121 need_trans = delalloc + unmapped + unwritten;
1122 }
1123
1124 /*
1125 * If we need a transaction and the process flags say
1126 * we are already in a transaction, or no IO is allowed
1127 * then mark the page dirty again and leave the page
1128 * as is.
1129 */
1130 if (PFLAGS_TEST_FSTRANS() && need_trans)
1131 goto out_fail;
1132
1133 /*
1134 * Delay hooking up buffer heads until we have
1135 * made our go/no-go decision.
1136 */
1137 if (!page_has_buffers(page))
1138 create_empty_buffers(page, 1 << inode->i_blkbits, 0);
1139
1140 /*
1141 * Convert delayed allocate, unwritten or unmapped space
1142 * to real space and flush out to disk.
1143 */
1144 error = xfs_page_state_convert(inode, page, wbc, 1, unmapped);
1145 if (error == -EAGAIN)
1146 goto out_fail;
1147 if (unlikely(error < 0))
1148 goto out_unlock;
1149
1150 return 0;
1151
1152out_fail:
1153 redirty_page_for_writepage(wbc, page);
1154 unlock_page(page);
1155 return 0;
1156out_unlock:
1157 unlock_page(page);
1158 return error;
1159}
1160
1161/*
1162 * Called to move a page into cleanable state - and from there
1163 * to be released. Possibly the page is already clean. We always
1164 * have buffer heads in this call.
1165 *
1166 * Returns 0 if the page is ok to release, 1 otherwise.
1167 *
1168 * Possible scenarios are:
1169 *
1170 * 1. We are being called to release a page which has been written
1171 * to via regular I/O. buffer heads will be dirty and possibly
1172 * delalloc. If no delalloc buffer heads in this case then we
1173 * can just return zero.
1174 *
1175 * 2. We are called to release a page which has been written via
1176 * mmap, all we need to do is ensure there is no delalloc
1177 * state in the buffer heads, if not we can let the caller
1178 * free them and we should come back later via writepage.
1179 */
1180STATIC int
Nathan Scott238f4c52006-03-17 17:26:25 +11001181xfs_vm_releasepage(
Nathan Scottf51623b2006-03-14 13:26:27 +11001182 struct page *page,
1183 gfp_t gfp_mask)
1184{
1185 struct inode *inode = page->mapping->host;
1186 int dirty, delalloc, unmapped, unwritten;
1187 struct writeback_control wbc = {
1188 .sync_mode = WB_SYNC_ALL,
1189 .nr_to_write = 1,
1190 };
1191
1192 xfs_page_trace(XFS_RELEASEPAGE_ENTER, inode, page, gfp_mask);
1193
Nathan Scott238f4c52006-03-17 17:26:25 +11001194 if (!page_has_buffers(page))
1195 return 0;
1196
Nathan Scottf51623b2006-03-14 13:26:27 +11001197 xfs_count_page_state(page, &delalloc, &unmapped, &unwritten);
1198 if (!delalloc && !unwritten)
1199 goto free_buffers;
1200
1201 if (!(gfp_mask & __GFP_FS))
1202 return 0;
1203
1204 /* If we are already inside a transaction or the thread cannot
1205 * do I/O, we cannot release this page.
1206 */
1207 if (PFLAGS_TEST_FSTRANS())
1208 return 0;
1209
1210 /*
1211 * Convert delalloc space to real space, do not flush the
1212 * data out to disk, that will be done by the caller.
1213 * Never need to allocate space here - we will always
1214 * come back to writepage in that case.
1215 */
1216 dirty = xfs_page_state_convert(inode, page, &wbc, 0, 0);
1217 if (dirty == 0 && !unwritten)
1218 goto free_buffers;
1219 return 0;
1220
1221free_buffers:
1222 return try_to_free_buffers(page);
1223}
1224
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225STATIC int
Nathan Scottc2536662006-03-29 10:44:40 +10001226__xfs_get_blocks(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227 struct inode *inode,
1228 sector_t iblock,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229 struct buffer_head *bh_result,
1230 int create,
1231 int direct,
1232 bmapi_flags_t flags)
1233{
Nathan Scottec86dc02006-03-17 17:25:36 +11001234 vnode_t *vp = vn_from_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235 xfs_iomap_t iomap;
Nathan Scottfdc7ed72005-11-02 15:13:13 +11001236 xfs_off_t offset;
1237 ssize_t size;
Nathan Scottc2536662006-03-29 10:44:40 +10001238 int niomap = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240
Nathan Scottfdc7ed72005-11-02 15:13:13 +11001241 offset = (xfs_off_t)iblock << inode->i_blkbits;
Nathan Scottc2536662006-03-29 10:44:40 +10001242 ASSERT(bh_result->b_size >= (1 << inode->i_blkbits));
1243 size = bh_result->b_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244 VOP_BMAP(vp, offset, size,
Nathan Scottc2536662006-03-29 10:44:40 +10001245 create ? flags : BMAPI_READ, &iomap, &niomap, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246 if (error)
1247 return -error;
Nathan Scottc2536662006-03-29 10:44:40 +10001248 if (niomap == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249 return 0;
1250
1251 if (iomap.iomap_bn != IOMAP_DADDR_NULL) {
Nathan Scott87cbc492006-03-14 13:26:43 +11001252 /*
1253 * For unwritten extents do not report a disk address on
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254 * the read case (treat as if we're reading into a hole).
1255 */
1256 if (create || !(iomap.iomap_flags & IOMAP_UNWRITTEN)) {
Nathan Scott87cbc492006-03-14 13:26:43 +11001257 xfs_map_buffer(bh_result, &iomap, offset,
1258 inode->i_blkbits);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259 }
1260 if (create && (iomap.iomap_flags & IOMAP_UNWRITTEN)) {
1261 if (direct)
1262 bh_result->b_private = inode;
1263 set_buffer_unwritten(bh_result);
1264 set_buffer_delay(bh_result);
1265 }
1266 }
1267
Nathan Scottc2536662006-03-29 10:44:40 +10001268 /*
1269 * If this is a realtime file, data may be on a different device.
1270 * to that pointed to from the buffer_head b_bdev currently.
1271 */
Nathan Scottce8e9222006-01-11 15:39:08 +11001272 bh_result->b_bdev = iomap.iomap_target->bt_bdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273
Nathan Scottc2536662006-03-29 10:44:40 +10001274 /*
1275 * If we previously allocated a block out beyond eof and we are
1276 * now coming back to use it then we will need to flag it as new
1277 * even if it has a disk address.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278 */
1279 if (create &&
1280 ((!buffer_mapped(bh_result) && !buffer_uptodate(bh_result)) ||
Nathan Scottfdc7ed72005-11-02 15:13:13 +11001281 (offset >= i_size_read(inode)) || (iomap.iomap_flags & IOMAP_NEW)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282 set_buffer_new(bh_result);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283
1284 if (iomap.iomap_flags & IOMAP_DELAY) {
1285 BUG_ON(direct);
1286 if (create) {
1287 set_buffer_uptodate(bh_result);
1288 set_buffer_mapped(bh_result);
1289 set_buffer_delay(bh_result);
1290 }
1291 }
1292
Nathan Scottc2536662006-03-29 10:44:40 +10001293 if (direct || size > (1 << inode->i_blkbits)) {
Nathan Scottfdc7ed72005-11-02 15:13:13 +11001294 ASSERT(iomap.iomap_bsize - iomap.iomap_delta > 0);
1295 offset = min_t(xfs_off_t,
Nathan Scottc2536662006-03-29 10:44:40 +10001296 iomap.iomap_bsize - iomap.iomap_delta, size);
1297 bh_result->b_size = (ssize_t)min_t(xfs_off_t, LONG_MAX, offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298 }
1299
1300 return 0;
1301}
1302
1303int
Nathan Scottc2536662006-03-29 10:44:40 +10001304xfs_get_blocks(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305 struct inode *inode,
1306 sector_t iblock,
1307 struct buffer_head *bh_result,
1308 int create)
1309{
Nathan Scottc2536662006-03-29 10:44:40 +10001310 return __xfs_get_blocks(inode, iblock,
Badari Pulavartyfa30bd02006-03-26 01:38:01 -08001311 bh_result, create, 0, BMAPI_WRITE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312}
1313
1314STATIC int
Nathan Scotte4c573b2006-03-14 13:54:26 +11001315xfs_get_blocks_direct(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316 struct inode *inode,
1317 sector_t iblock,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318 struct buffer_head *bh_result,
1319 int create)
1320{
Nathan Scottc2536662006-03-29 10:44:40 +10001321 return __xfs_get_blocks(inode, iblock,
Badari Pulavarty1d8fa7a2006-03-26 01:38:02 -08001322 bh_result, create, 1, BMAPI_WRITE|BMAPI_DIRECT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323}
1324
Christoph Hellwigf0973862005-09-05 08:22:52 +10001325STATIC void
Nathan Scotte4c573b2006-03-14 13:54:26 +11001326xfs_end_io_direct(
Christoph Hellwigf0973862005-09-05 08:22:52 +10001327 struct kiocb *iocb,
1328 loff_t offset,
1329 ssize_t size,
1330 void *private)
1331{
1332 xfs_ioend_t *ioend = iocb->private;
1333
1334 /*
1335 * Non-NULL private data means we need to issue a transaction to
1336 * convert a range from unwritten to written extents. This needs
Nathan Scottc41564b2006-03-29 08:55:14 +10001337 * to happen from process context but aio+dio I/O completion
Christoph Hellwigf0973862005-09-05 08:22:52 +10001338 * happens from irq context so we need to defer it to a workqueue.
Nathan Scottc41564b2006-03-29 08:55:14 +10001339 * This is not necessary for synchronous direct I/O, but we do
Christoph Hellwigf0973862005-09-05 08:22:52 +10001340 * it anyway to keep the code uniform and simpler.
1341 *
1342 * The core direct I/O code might be changed to always call the
1343 * completion handler in the future, in which case all this can
1344 * go away.
1345 */
1346 if (private && size > 0) {
1347 ioend->io_offset = offset;
1348 ioend->io_size = size;
1349 xfs_finish_ioend(ioend);
1350 } else {
1351 ASSERT(size >= 0);
1352 xfs_destroy_ioend(ioend);
1353 }
1354
1355 /*
Nathan Scottc41564b2006-03-29 08:55:14 +10001356 * blockdev_direct_IO can return an error even after the I/O
Christoph Hellwigf0973862005-09-05 08:22:52 +10001357 * completion handler was called. Thus we need to protect
1358 * against double-freeing.
1359 */
1360 iocb->private = NULL;
1361}
1362
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363STATIC ssize_t
Nathan Scotte4c573b2006-03-14 13:54:26 +11001364xfs_vm_direct_IO(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365 int rw,
1366 struct kiocb *iocb,
1367 const struct iovec *iov,
1368 loff_t offset,
1369 unsigned long nr_segs)
1370{
1371 struct file *file = iocb->ki_filp;
1372 struct inode *inode = file->f_mapping->host;
Nathan Scottec86dc02006-03-17 17:25:36 +11001373 vnode_t *vp = vn_from_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374 xfs_iomap_t iomap;
1375 int maps = 1;
1376 int error;
Christoph Hellwigf0973862005-09-05 08:22:52 +10001377 ssize_t ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378
1379 VOP_BMAP(vp, offset, 0, BMAPI_DEVICE, &iomap, &maps, error);
1380 if (error)
1381 return -error;
1382
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +11001383 iocb->private = xfs_alloc_ioend(inode, IOMAP_UNWRITTEN);
Christoph Hellwigf0973862005-09-05 08:22:52 +10001384
1385 ret = blockdev_direct_IO_own_locking(rw, iocb, inode,
Nathan Scottce8e9222006-01-11 15:39:08 +11001386 iomap.iomap_target->bt_bdev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387 iov, offset, nr_segs,
Nathan Scotte4c573b2006-03-14 13:54:26 +11001388 xfs_get_blocks_direct,
1389 xfs_end_io_direct);
Christoph Hellwigf0973862005-09-05 08:22:52 +10001390
1391 if (unlikely(ret <= 0 && iocb->private))
1392 xfs_destroy_ioend(iocb->private);
1393 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394}
1395
Nathan Scottf51623b2006-03-14 13:26:27 +11001396STATIC int
Nathan Scotte4c573b2006-03-14 13:54:26 +11001397xfs_vm_prepare_write(
Nathan Scottf51623b2006-03-14 13:26:27 +11001398 struct file *file,
1399 struct page *page,
1400 unsigned int from,
1401 unsigned int to)
1402{
Nathan Scottc2536662006-03-29 10:44:40 +10001403 return block_prepare_write(page, from, to, xfs_get_blocks);
Nathan Scottf51623b2006-03-14 13:26:27 +11001404}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405
1406STATIC sector_t
Nathan Scotte4c573b2006-03-14 13:54:26 +11001407xfs_vm_bmap(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408 struct address_space *mapping,
1409 sector_t block)
1410{
1411 struct inode *inode = (struct inode *)mapping->host;
Nathan Scottec86dc02006-03-17 17:25:36 +11001412 vnode_t *vp = vn_from_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413 int error;
1414
Nathan Scotte4c573b2006-03-14 13:54:26 +11001415 vn_trace_entry(vp, __FUNCTION__, (inst_t *)__return_address);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416
1417 VOP_RWLOCK(vp, VRWLOCK_READ);
1418 VOP_FLUSH_PAGES(vp, (xfs_off_t)0, -1, 0, FI_REMAPF, error);
1419 VOP_RWUNLOCK(vp, VRWLOCK_READ);
Nathan Scottc2536662006-03-29 10:44:40 +10001420 return generic_block_bmap(mapping, block, xfs_get_blocks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421}
1422
1423STATIC int
Nathan Scotte4c573b2006-03-14 13:54:26 +11001424xfs_vm_readpage(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425 struct file *unused,
1426 struct page *page)
1427{
Nathan Scottc2536662006-03-29 10:44:40 +10001428 return mpage_readpage(page, xfs_get_blocks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429}
1430
1431STATIC int
Nathan Scotte4c573b2006-03-14 13:54:26 +11001432xfs_vm_readpages(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433 struct file *unused,
1434 struct address_space *mapping,
1435 struct list_head *pages,
1436 unsigned nr_pages)
1437{
Nathan Scottc2536662006-03-29 10:44:40 +10001438 return mpage_readpages(mapping, pages, nr_pages, xfs_get_blocks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439}
1440
NeilBrown2ff28e22006-03-26 01:37:18 -08001441STATIC void
Nathan Scott238f4c52006-03-17 17:26:25 +11001442xfs_vm_invalidatepage(
Nathan Scottbcec2b72005-09-02 16:40:17 +10001443 struct page *page,
1444 unsigned long offset)
1445{
1446 xfs_page_trace(XFS_INVALIDPAGE_ENTER,
1447 page->mapping->host, page, offset);
NeilBrown2ff28e22006-03-26 01:37:18 -08001448 block_invalidatepage(page, offset);
Nathan Scottbcec2b72005-09-02 16:40:17 +10001449}
1450
Nathan Scotte4c573b2006-03-14 13:54:26 +11001451struct address_space_operations xfs_address_space_operations = {
1452 .readpage = xfs_vm_readpage,
1453 .readpages = xfs_vm_readpages,
1454 .writepage = xfs_vm_writepage,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455 .sync_page = block_sync_page,
Nathan Scott238f4c52006-03-17 17:26:25 +11001456 .releasepage = xfs_vm_releasepage,
1457 .invalidatepage = xfs_vm_invalidatepage,
Nathan Scotte4c573b2006-03-14 13:54:26 +11001458 .prepare_write = xfs_vm_prepare_write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459 .commit_write = generic_commit_write,
Nathan Scotte4c573b2006-03-14 13:54:26 +11001460 .bmap = xfs_vm_bmap,
1461 .direct_IO = xfs_vm_direct_IO,
Christoph Lametere965f962006-02-01 03:05:41 -08001462 .migratepage = buffer_migrate_page,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463};