blob: f1dd70e201cfa08ba2cab5870fee698860156d0f [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Nathan Scott7b718762005-11-02 14:58:39 +11002 * Copyright (c) 2000-2005 Silicon Graphics, Inc.
3 * All Rights Reserved.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
Nathan Scott7b718762005-11-02 14:58:39 +11005 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License as
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 * published by the Free Software Foundation.
8 *
Nathan Scott7b718762005-11-02 14:58:39 +11009 * This program is distributed in the hope that it would be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 *
Nathan Scott7b718762005-11-02 14:58:39 +110014 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write the Free Software Foundation,
16 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Linus Torvalds1da177e2005-04-16 15:20:36 -070017 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include "xfs.h"
Nathan Scotta844f452005-11-02 14:38:42 +110019#include "xfs_bit.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include "xfs_log.h"
Nathan Scotta844f452005-11-02 14:38:42 +110021#include "xfs_inum.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include "xfs_sb.h"
Nathan Scotta844f452005-11-02 14:38:42 +110023#include "xfs_ag.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include "xfs_dir2.h"
25#include "xfs_trans.h"
26#include "xfs_dmapi.h"
27#include "xfs_mount.h"
28#include "xfs_bmap_btree.h"
29#include "xfs_alloc_btree.h"
30#include "xfs_ialloc_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include "xfs_dir2_sf.h"
Nathan Scotta844f452005-11-02 14:38:42 +110032#include "xfs_attr_sf.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include "xfs_dinode.h"
34#include "xfs_inode.h"
Nathan Scotta844f452005-11-02 14:38:42 +110035#include "xfs_alloc.h"
36#include "xfs_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#include "xfs_error.h"
38#include "xfs_rw.h"
39#include "xfs_iomap.h"
Christoph Hellwig739bfb22007-08-29 10:58:01 +100040#include "xfs_vnodeops.h"
Christoph Hellwig0b1b2132009-12-14 23:14:59 +000041#include "xfs_trace.h"
Dave Chinner3ed3a432010-03-05 02:00:42 +000042#include "xfs_bmap.h"
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090043#include <linux/gfp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070044#include <linux/mpage.h>
Christoph Hellwig10ce4442006-01-11 20:48:14 +110045#include <linux/pagevec.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070046#include <linux/writeback.h>
47
Christoph Hellwig34a52c62010-04-28 12:28:57 +000048/*
49 * Types of I/O for bmap clustering and I/O completion tracking.
50 */
51enum {
52 IO_READ, /* mapping for a read */
53 IO_DELAY, /* mapping covers delalloc region */
54 IO_UNWRITTEN, /* mapping covers allocated but uninitialized data */
55 IO_NEW /* just allocated */
56};
Christoph Hellwig25e41b32008-12-03 12:20:39 +010057
58/*
59 * Prime number of hash buckets since address is used as the key.
60 */
61#define NVSYNC 37
62#define to_ioend_wq(v) (&xfs_ioend_wq[((unsigned long)v) % NVSYNC])
63static wait_queue_head_t xfs_ioend_wq[NVSYNC];
64
65void __init
66xfs_ioend_init(void)
67{
68 int i;
69
70 for (i = 0; i < NVSYNC; i++)
71 init_waitqueue_head(&xfs_ioend_wq[i]);
72}
73
74void
75xfs_ioend_wait(
76 xfs_inode_t *ip)
77{
78 wait_queue_head_t *wq = to_ioend_wq(ip);
79
80 wait_event(*wq, (atomic_read(&ip->i_iocount) == 0));
81}
82
83STATIC void
84xfs_ioend_wake(
85 xfs_inode_t *ip)
86{
87 if (atomic_dec_and_test(&ip->i_iocount))
88 wake_up(to_ioend_wq(ip));
89}
90
Christoph Hellwig0b1b2132009-12-14 23:14:59 +000091void
Nathan Scottf51623b2006-03-14 13:26:27 +110092xfs_count_page_state(
93 struct page *page,
94 int *delalloc,
95 int *unmapped,
96 int *unwritten)
97{
98 struct buffer_head *bh, *head;
99
100 *delalloc = *unmapped = *unwritten = 0;
101
102 bh = head = page_buffers(page);
103 do {
104 if (buffer_uptodate(bh) && !buffer_mapped(bh))
105 (*unmapped) = 1;
Nathan Scottf51623b2006-03-14 13:26:27 +1100106 else if (buffer_unwritten(bh))
107 (*unwritten) = 1;
108 else if (buffer_delay(bh))
109 (*delalloc) = 1;
110 } while ((bh = bh->b_this_page) != head);
111}
112
Christoph Hellwig6214ed42007-09-14 15:23:17 +1000113STATIC struct block_device *
114xfs_find_bdev_for_inode(
Christoph Hellwig046f1682010-04-28 12:28:52 +0000115 struct inode *inode)
Christoph Hellwig6214ed42007-09-14 15:23:17 +1000116{
Christoph Hellwig046f1682010-04-28 12:28:52 +0000117 struct xfs_inode *ip = XFS_I(inode);
Christoph Hellwig6214ed42007-09-14 15:23:17 +1000118 struct xfs_mount *mp = ip->i_mount;
119
Eric Sandeen71ddabb2007-11-23 16:29:42 +1100120 if (XFS_IS_REALTIME_INODE(ip))
Christoph Hellwig6214ed42007-09-14 15:23:17 +1000121 return mp->m_rtdev_targp->bt_bdev;
122 else
123 return mp->m_ddev_targp->bt_bdev;
124}
125
Christoph Hellwig0829c362005-09-02 16:58:49 +1000126/*
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100127 * We're now finished for good with this ioend structure.
128 * Update the page state via the associated buffer_heads,
129 * release holds on the inode and bio, and finally free
130 * up memory. Do not use the ioend after this.
131 */
Christoph Hellwig0829c362005-09-02 16:58:49 +1000132STATIC void
133xfs_destroy_ioend(
134 xfs_ioend_t *ioend)
135{
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100136 struct buffer_head *bh, *next;
Christoph Hellwig583fa582008-12-03 12:20:38 +0100137 struct xfs_inode *ip = XFS_I(ioend->io_inode);
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100138
139 for (bh = ioend->io_buffer_head; bh; bh = next) {
140 next = bh->b_private;
Nathan Scott7d04a332006-06-09 14:58:38 +1000141 bh->b_end_io(bh, !ioend->io_error);
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100142 }
Christoph Hellwig583fa582008-12-03 12:20:38 +0100143
144 /*
145 * Volume managers supporting multiple paths can send back ENODEV
146 * when the final path disappears. In this case continuing to fill
147 * the page cache with dirty data which cannot be written out is
148 * evil, so prevent that.
149 */
150 if (unlikely(ioend->io_error == -ENODEV)) {
151 xfs_do_force_shutdown(ip->i_mount, SHUTDOWN_DEVICE_REQ,
152 __FILE__, __LINE__);
Christoph Hellwigb677c212007-08-29 11:46:28 +1000153 }
Christoph Hellwig583fa582008-12-03 12:20:38 +0100154
Christoph Hellwig25e41b32008-12-03 12:20:39 +0100155 xfs_ioend_wake(ip);
Christoph Hellwig0829c362005-09-02 16:58:49 +1000156 mempool_free(ioend, xfs_ioend_pool);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157}
158
159/*
Dave Chinner932640e2009-10-06 20:29:29 +0000160 * If the end of the current ioend is beyond the current EOF,
161 * return the new EOF value, otherwise zero.
162 */
163STATIC xfs_fsize_t
164xfs_ioend_new_eof(
165 xfs_ioend_t *ioend)
166{
167 xfs_inode_t *ip = XFS_I(ioend->io_inode);
168 xfs_fsize_t isize;
169 xfs_fsize_t bsize;
170
171 bsize = ioend->io_offset + ioend->io_size;
172 isize = MAX(ip->i_size, ip->i_new_size);
173 isize = MIN(isize, bsize);
174 return isize > ip->i_d.di_size ? isize : 0;
175}
176
177/*
Dave Chinner77d7a0c2010-02-17 05:36:29 +0000178 * Update on-disk file size now that data has been written to disk. The
179 * current in-memory file size is i_size. If a write is beyond eof i_new_size
180 * will be the intended file size until i_size is updated. If this write does
181 * not extend all the way to the valid file size then restrict this update to
182 * the end of the write.
183 *
184 * This function does not block as blocking on the inode lock in IO completion
185 * can lead to IO completion order dependency deadlocks.. If it can't get the
186 * inode ilock it will return EAGAIN. Callers must handle this.
Lachlan McIlroyba87ea62007-05-08 13:49:46 +1000187 */
Dave Chinner77d7a0c2010-02-17 05:36:29 +0000188STATIC int
Lachlan McIlroyba87ea62007-05-08 13:49:46 +1000189xfs_setfilesize(
190 xfs_ioend_t *ioend)
191{
Christoph Hellwigb677c212007-08-29 11:46:28 +1000192 xfs_inode_t *ip = XFS_I(ioend->io_inode);
Lachlan McIlroyba87ea62007-05-08 13:49:46 +1000193 xfs_fsize_t isize;
Lachlan McIlroyba87ea62007-05-08 13:49:46 +1000194
Lachlan McIlroyba87ea62007-05-08 13:49:46 +1000195 ASSERT((ip->i_d.di_mode & S_IFMT) == S_IFREG);
Christoph Hellwig34a52c62010-04-28 12:28:57 +0000196 ASSERT(ioend->io_type != IO_READ);
Lachlan McIlroyba87ea62007-05-08 13:49:46 +1000197
198 if (unlikely(ioend->io_error))
Dave Chinner77d7a0c2010-02-17 05:36:29 +0000199 return 0;
Lachlan McIlroyba87ea62007-05-08 13:49:46 +1000200
Dave Chinner77d7a0c2010-02-17 05:36:29 +0000201 if (!xfs_ilock_nowait(ip, XFS_ILOCK_EXCL))
202 return EAGAIN;
203
Dave Chinner932640e2009-10-06 20:29:29 +0000204 isize = xfs_ioend_new_eof(ioend);
205 if (isize) {
Lachlan McIlroyba87ea62007-05-08 13:49:46 +1000206 ip->i_d.di_size = isize;
Christoph Hellwig66d834e2010-02-15 09:44:49 +0000207 xfs_mark_inode_dirty(ip);
Lachlan McIlroyba87ea62007-05-08 13:49:46 +1000208 }
209
210 xfs_iunlock(ip, XFS_ILOCK_EXCL);
Dave Chinner77d7a0c2010-02-17 05:36:29 +0000211 return 0;
Christoph Hellwig0829c362005-09-02 16:58:49 +1000212}
213
214/*
Dave Chinnerc626d172009-04-06 18:42:11 +0200215 * Schedule IO completion handling on a xfsdatad if this was
216 * the final hold on this ioend. If we are asked to wait,
217 * flush the workqueue.
218 */
219STATIC void
220xfs_finish_ioend(
221 xfs_ioend_t *ioend,
222 int wait)
223{
224 if (atomic_dec_and_test(&ioend->io_remaining)) {
Christoph Hellwig5ec4fab2009-10-30 09:11:47 +0000225 struct workqueue_struct *wq;
Dave Chinnerc626d172009-04-06 18:42:11 +0200226
Christoph Hellwig34a52c62010-04-28 12:28:57 +0000227 wq = (ioend->io_type == IO_UNWRITTEN) ?
Christoph Hellwig5ec4fab2009-10-30 09:11:47 +0000228 xfsconvertd_workqueue : xfsdatad_workqueue;
Dave Chinnerc626d172009-04-06 18:42:11 +0200229 queue_work(wq, &ioend->io_work);
230 if (wait)
231 flush_workqueue(wq);
232 }
233}
234
235/*
Dave Chinner77d7a0c2010-02-17 05:36:29 +0000236 * IO write completion.
237 */
238STATIC void
239xfs_end_io(
240 struct work_struct *work)
241{
242 xfs_ioend_t *ioend = container_of(work, xfs_ioend_t, io_work);
243 struct xfs_inode *ip = XFS_I(ioend->io_inode);
Dave Chinner69418932010-03-04 00:57:09 +0000244 int error = 0;
Dave Chinner77d7a0c2010-02-17 05:36:29 +0000245
246 /*
247 * For unwritten extents we need to issue transactions to convert a
248 * range to normal written extens after the data I/O has finished.
249 */
Christoph Hellwig34a52c62010-04-28 12:28:57 +0000250 if (ioend->io_type == IO_UNWRITTEN &&
Dave Chinner77d7a0c2010-02-17 05:36:29 +0000251 likely(!ioend->io_error && !XFS_FORCED_SHUTDOWN(ip->i_mount))) {
252
253 error = xfs_iomap_write_unwritten(ip, ioend->io_offset,
254 ioend->io_size);
255 if (error)
256 ioend->io_error = error;
257 }
258
259 /*
260 * We might have to update the on-disk file size after extending
261 * writes.
262 */
Christoph Hellwig34a52c62010-04-28 12:28:57 +0000263 if (ioend->io_type != IO_READ) {
Dave Chinner77d7a0c2010-02-17 05:36:29 +0000264 error = xfs_setfilesize(ioend);
265 ASSERT(!error || error == EAGAIN);
266 }
267
268 /*
269 * If we didn't complete processing of the ioend, requeue it to the
270 * tail of the workqueue for another attempt later. Otherwise destroy
271 * it.
272 */
273 if (error == EAGAIN) {
274 atomic_inc(&ioend->io_remaining);
275 xfs_finish_ioend(ioend, 0);
276 /* ensure we don't spin on blocked ioends */
277 delay(1);
278 } else
279 xfs_destroy_ioend(ioend);
280}
281
282/*
Christoph Hellwig0829c362005-09-02 16:58:49 +1000283 * Allocate and initialise an IO completion structure.
284 * We need to track unwritten extent write completion here initially.
285 * We'll need to extend this for updating the ondisk inode size later
286 * (vs. incore size).
287 */
288STATIC xfs_ioend_t *
289xfs_alloc_ioend(
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100290 struct inode *inode,
291 unsigned int type)
Christoph Hellwig0829c362005-09-02 16:58:49 +1000292{
293 xfs_ioend_t *ioend;
294
295 ioend = mempool_alloc(xfs_ioend_pool, GFP_NOFS);
296
297 /*
298 * Set the count to 1 initially, which will prevent an I/O
299 * completion callback from happening before we have started
300 * all the I/O from calling the completion routine too early.
301 */
302 atomic_set(&ioend->io_remaining, 1);
Nathan Scott7d04a332006-06-09 14:58:38 +1000303 ioend->io_error = 0;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100304 ioend->io_list = NULL;
305 ioend->io_type = type;
Christoph Hellwigb677c212007-08-29 11:46:28 +1000306 ioend->io_inode = inode;
Christoph Hellwigc1a073b2005-09-05 08:23:35 +1000307 ioend->io_buffer_head = NULL;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100308 ioend->io_buffer_tail = NULL;
Christoph Hellwigb677c212007-08-29 11:46:28 +1000309 atomic_inc(&XFS_I(ioend->io_inode)->i_iocount);
Christoph Hellwig0829c362005-09-02 16:58:49 +1000310 ioend->io_offset = 0;
311 ioend->io_size = 0;
312
Christoph Hellwig5ec4fab2009-10-30 09:11:47 +0000313 INIT_WORK(&ioend->io_work, xfs_end_io);
Christoph Hellwig0829c362005-09-02 16:58:49 +1000314 return ioend;
315}
316
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317STATIC int
318xfs_map_blocks(
319 struct inode *inode,
320 loff_t offset,
321 ssize_t count,
Christoph Hellwig207d0412010-04-28 12:28:56 +0000322 struct xfs_bmbt_irec *imap,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 int flags)
324{
Christoph Hellwig6bd16ff2008-12-03 12:20:32 +0100325 int nmaps = 1;
Christoph Hellwig207d0412010-04-28 12:28:56 +0000326 int new = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327
Christoph Hellwig207d0412010-04-28 12:28:56 +0000328 return -xfs_iomap(XFS_I(inode), offset, count, flags, imap, &nmaps, &new);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329}
330
Christoph Hellwigb8f82a42009-11-14 16:17:22 +0000331STATIC int
Christoph Hellwig1defeac2006-01-11 20:48:33 +1100332xfs_iomap_valid(
Christoph Hellwig8699bb02010-04-28 12:28:54 +0000333 struct inode *inode,
Christoph Hellwig207d0412010-04-28 12:28:56 +0000334 struct xfs_bmbt_irec *imap,
Christoph Hellwig1defeac2006-01-11 20:48:33 +1100335 loff_t offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336{
Christoph Hellwig8699bb02010-04-28 12:28:54 +0000337 struct xfs_mount *mp = XFS_I(inode)->i_mount;
Christoph Hellwig207d0412010-04-28 12:28:56 +0000338 xfs_off_t iomap_offset = XFS_FSB_TO_B(mp, imap->br_startoff);
339 xfs_off_t iomap_bsize = XFS_FSB_TO_B(mp, imap->br_blockcount);
Christoph Hellwig8699bb02010-04-28 12:28:54 +0000340
341 return offset >= iomap_offset &&
342 offset < iomap_offset + iomap_bsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343}
344
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100345/*
346 * BIO completion handler for buffered IO.
347 */
Al Viro782e3b32007-10-12 07:17:47 +0100348STATIC void
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100349xfs_end_bio(
350 struct bio *bio,
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100351 int error)
352{
353 xfs_ioend_t *ioend = bio->bi_private;
354
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100355 ASSERT(atomic_read(&bio->bi_cnt) >= 1);
Nathan Scott7d04a332006-06-09 14:58:38 +1000356 ioend->io_error = test_bit(BIO_UPTODATE, &bio->bi_flags) ? 0 : error;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100357
358 /* Toss bio and pass work off to an xfsdatad thread */
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100359 bio->bi_private = NULL;
360 bio->bi_end_io = NULL;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100361 bio_put(bio);
Nathan Scott7d04a332006-06-09 14:58:38 +1000362
David Chinnere927af92007-06-05 16:24:36 +1000363 xfs_finish_ioend(ioend, 0);
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100364}
365
366STATIC void
367xfs_submit_ioend_bio(
Christoph Hellwig06342cf2009-10-30 09:09:15 +0000368 struct writeback_control *wbc,
369 xfs_ioend_t *ioend,
370 struct bio *bio)
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100371{
372 atomic_inc(&ioend->io_remaining);
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100373 bio->bi_private = ioend;
374 bio->bi_end_io = xfs_end_bio;
375
Dave Chinner932640e2009-10-06 20:29:29 +0000376 /*
377 * If the I/O is beyond EOF we mark the inode dirty immediately
378 * but don't update the inode size until I/O completion.
379 */
380 if (xfs_ioend_new_eof(ioend))
Christoph Hellwig66d834e2010-02-15 09:44:49 +0000381 xfs_mark_inode_dirty(XFS_I(ioend->io_inode));
Dave Chinner932640e2009-10-06 20:29:29 +0000382
Christoph Hellwig06342cf2009-10-30 09:09:15 +0000383 submit_bio(wbc->sync_mode == WB_SYNC_ALL ?
384 WRITE_SYNC_PLUG : WRITE, bio);
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100385 ASSERT(!bio_flagged(bio, BIO_EOPNOTSUPP));
386 bio_put(bio);
387}
388
389STATIC struct bio *
390xfs_alloc_ioend_bio(
391 struct buffer_head *bh)
392{
393 struct bio *bio;
394 int nvecs = bio_get_nr_vecs(bh->b_bdev);
395
396 do {
397 bio = bio_alloc(GFP_NOIO, nvecs);
398 nvecs >>= 1;
399 } while (!bio);
400
401 ASSERT(bio->bi_private == NULL);
402 bio->bi_sector = bh->b_blocknr * (bh->b_size >> 9);
403 bio->bi_bdev = bh->b_bdev;
404 bio_get(bio);
405 return bio;
406}
407
408STATIC void
409xfs_start_buffer_writeback(
410 struct buffer_head *bh)
411{
412 ASSERT(buffer_mapped(bh));
413 ASSERT(buffer_locked(bh));
414 ASSERT(!buffer_delay(bh));
415 ASSERT(!buffer_unwritten(bh));
416
417 mark_buffer_async_write(bh);
418 set_buffer_uptodate(bh);
419 clear_buffer_dirty(bh);
420}
421
422STATIC void
423xfs_start_page_writeback(
424 struct page *page,
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100425 int clear_dirty,
426 int buffers)
427{
428 ASSERT(PageLocked(page));
429 ASSERT(!PageWriteback(page));
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100430 if (clear_dirty)
David Chinner92132022006-12-21 10:24:01 +1100431 clear_page_dirty_for_io(page);
432 set_page_writeback(page);
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100433 unlock_page(page);
Fengguang Wu1f7decf2007-10-16 23:30:42 -0700434 /* If no buffers on the page are to be written, finish it here */
435 if (!buffers)
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100436 end_page_writeback(page);
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100437}
438
439static inline int bio_add_buffer(struct bio *bio, struct buffer_head *bh)
440{
441 return bio_add_page(bio, bh->b_page, bh->b_size, bh_offset(bh));
442}
443
444/*
David Chinnerd88992f2006-01-18 13:38:12 +1100445 * Submit all of the bios for all of the ioends we have saved up, covering the
446 * initial writepage page and also any probed pages.
447 *
448 * Because we may have multiple ioends spanning a page, we need to start
449 * writeback on all the buffers before we submit them for I/O. If we mark the
450 * buffers as we got, then we can end up with a page that only has buffers
451 * marked async write and I/O complete on can occur before we mark the other
452 * buffers async write.
453 *
454 * The end result of this is that we trip a bug in end_page_writeback() because
455 * we call it twice for the one page as the code in end_buffer_async_write()
456 * assumes that all buffers on the page are started at the same time.
457 *
458 * The fix is two passes across the ioend list - one to start writeback on the
Nathan Scottc41564b2006-03-29 08:55:14 +1000459 * buffer_heads, and then submit them for I/O on the second pass.
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100460 */
461STATIC void
462xfs_submit_ioend(
Christoph Hellwig06342cf2009-10-30 09:09:15 +0000463 struct writeback_control *wbc,
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100464 xfs_ioend_t *ioend)
465{
David Chinnerd88992f2006-01-18 13:38:12 +1100466 xfs_ioend_t *head = ioend;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100467 xfs_ioend_t *next;
468 struct buffer_head *bh;
469 struct bio *bio;
470 sector_t lastblock = 0;
471
David Chinnerd88992f2006-01-18 13:38:12 +1100472 /* Pass 1 - start writeback */
473 do {
474 next = ioend->io_list;
475 for (bh = ioend->io_buffer_head; bh; bh = bh->b_private) {
476 xfs_start_buffer_writeback(bh);
477 }
478 } while ((ioend = next) != NULL);
479
480 /* Pass 2 - submit I/O */
481 ioend = head;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100482 do {
483 next = ioend->io_list;
484 bio = NULL;
485
486 for (bh = ioend->io_buffer_head; bh; bh = bh->b_private) {
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100487
488 if (!bio) {
489 retry:
490 bio = xfs_alloc_ioend_bio(bh);
491 } else if (bh->b_blocknr != lastblock + 1) {
Christoph Hellwig06342cf2009-10-30 09:09:15 +0000492 xfs_submit_ioend_bio(wbc, ioend, bio);
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100493 goto retry;
494 }
495
496 if (bio_add_buffer(bio, bh) != bh->b_size) {
Christoph Hellwig06342cf2009-10-30 09:09:15 +0000497 xfs_submit_ioend_bio(wbc, ioend, bio);
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100498 goto retry;
499 }
500
501 lastblock = bh->b_blocknr;
502 }
503 if (bio)
Christoph Hellwig06342cf2009-10-30 09:09:15 +0000504 xfs_submit_ioend_bio(wbc, ioend, bio);
David Chinnere927af92007-06-05 16:24:36 +1000505 xfs_finish_ioend(ioend, 0);
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100506 } while ((ioend = next) != NULL);
507}
508
509/*
510 * Cancel submission of all buffer_heads so far in this endio.
511 * Toss the endio too. Only ever called for the initial page
512 * in a writepage request, so only ever one page.
513 */
514STATIC void
515xfs_cancel_ioend(
516 xfs_ioend_t *ioend)
517{
518 xfs_ioend_t *next;
519 struct buffer_head *bh, *next_bh;
520
521 do {
522 next = ioend->io_list;
523 bh = ioend->io_buffer_head;
524 do {
525 next_bh = bh->b_private;
526 clear_buffer_async_write(bh);
527 unlock_buffer(bh);
528 } while ((bh = next_bh) != NULL);
529
Christoph Hellwig25e41b32008-12-03 12:20:39 +0100530 xfs_ioend_wake(XFS_I(ioend->io_inode));
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100531 mempool_free(ioend, xfs_ioend_pool);
532 } while ((ioend = next) != NULL);
533}
534
535/*
536 * Test to see if we've been building up a completion structure for
537 * earlier buffers -- if so, we try to append to this ioend if we
538 * can, otherwise we finish off any current ioend and start another.
539 * Return true if we've finished the given ioend.
540 */
541STATIC void
542xfs_add_to_ioend(
543 struct inode *inode,
544 struct buffer_head *bh,
Christoph Hellwig7336cea2006-01-11 20:49:16 +1100545 xfs_off_t offset,
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100546 unsigned int type,
547 xfs_ioend_t **result,
548 int need_ioend)
549{
550 xfs_ioend_t *ioend = *result;
551
552 if (!ioend || need_ioend || type != ioend->io_type) {
553 xfs_ioend_t *previous = *result;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100554
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100555 ioend = xfs_alloc_ioend(inode, type);
556 ioend->io_offset = offset;
557 ioend->io_buffer_head = bh;
558 ioend->io_buffer_tail = bh;
559 if (previous)
560 previous->io_list = ioend;
561 *result = ioend;
562 } else {
563 ioend->io_buffer_tail->b_private = bh;
564 ioend->io_buffer_tail = bh;
565 }
566
567 bh->b_private = NULL;
568 ioend->io_size += bh->b_size;
569}
570
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571STATIC void
Nathan Scott87cbc492006-03-14 13:26:43 +1100572xfs_map_buffer(
Christoph Hellwig046f1682010-04-28 12:28:52 +0000573 struct inode *inode,
Nathan Scott87cbc492006-03-14 13:26:43 +1100574 struct buffer_head *bh,
Christoph Hellwig207d0412010-04-28 12:28:56 +0000575 struct xfs_bmbt_irec *imap,
Christoph Hellwig046f1682010-04-28 12:28:52 +0000576 xfs_off_t offset)
Nathan Scott87cbc492006-03-14 13:26:43 +1100577{
578 sector_t bn;
Christoph Hellwig8699bb02010-04-28 12:28:54 +0000579 struct xfs_mount *m = XFS_I(inode)->i_mount;
Christoph Hellwig207d0412010-04-28 12:28:56 +0000580 xfs_off_t iomap_offset = XFS_FSB_TO_B(m, imap->br_startoff);
581 xfs_daddr_t iomap_bn = xfs_fsb_to_db(XFS_I(inode), imap->br_startblock);
Nathan Scott87cbc492006-03-14 13:26:43 +1100582
Christoph Hellwig207d0412010-04-28 12:28:56 +0000583 ASSERT(imap->br_startblock != HOLESTARTBLOCK);
584 ASSERT(imap->br_startblock != DELAYSTARTBLOCK);
Nathan Scott87cbc492006-03-14 13:26:43 +1100585
Christoph Hellwige5131822010-04-28 12:28:55 +0000586 bn = (iomap_bn >> (inode->i_blkbits - BBSHIFT)) +
Christoph Hellwig8699bb02010-04-28 12:28:54 +0000587 ((offset - iomap_offset) >> inode->i_blkbits);
Nathan Scott87cbc492006-03-14 13:26:43 +1100588
Christoph Hellwig046f1682010-04-28 12:28:52 +0000589 ASSERT(bn || XFS_IS_REALTIME_INODE(XFS_I(inode)));
Nathan Scott87cbc492006-03-14 13:26:43 +1100590
591 bh->b_blocknr = bn;
592 set_buffer_mapped(bh);
593}
594
595STATIC void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596xfs_map_at_offset(
Christoph Hellwig046f1682010-04-28 12:28:52 +0000597 struct inode *inode,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 struct buffer_head *bh,
Christoph Hellwig207d0412010-04-28 12:28:56 +0000599 struct xfs_bmbt_irec *imap,
Christoph Hellwig046f1682010-04-28 12:28:52 +0000600 xfs_off_t offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601{
Christoph Hellwig207d0412010-04-28 12:28:56 +0000602 ASSERT(imap->br_startblock != HOLESTARTBLOCK);
603 ASSERT(imap->br_startblock != DELAYSTARTBLOCK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604
605 lock_buffer(bh);
Christoph Hellwig207d0412010-04-28 12:28:56 +0000606 xfs_map_buffer(inode, bh, imap, offset);
Christoph Hellwig046f1682010-04-28 12:28:52 +0000607 bh->b_bdev = xfs_find_bdev_for_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 set_buffer_mapped(bh);
609 clear_buffer_delay(bh);
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100610 clear_buffer_unwritten(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611}
612
613/*
Christoph Hellwig6c4fe192006-01-11 20:49:28 +1100614 * Look for a page at index that is suitable for clustering.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 */
616STATIC unsigned int
Christoph Hellwig6c4fe192006-01-11 20:49:28 +1100617xfs_probe_page(
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100618 struct page *page,
Christoph Hellwig6c4fe192006-01-11 20:49:28 +1100619 unsigned int pg_offset,
620 int mapped)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 int ret = 0;
623
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 if (PageWriteback(page))
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100625 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626
627 if (page->mapping && PageDirty(page)) {
628 if (page_has_buffers(page)) {
629 struct buffer_head *bh, *head;
630
631 bh = head = page_buffers(page);
632 do {
Christoph Hellwig6c4fe192006-01-11 20:49:28 +1100633 if (!buffer_uptodate(bh))
634 break;
635 if (mapped != buffer_mapped(bh))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 break;
637 ret += bh->b_size;
638 if (ret >= pg_offset)
639 break;
640 } while ((bh = bh->b_this_page) != head);
641 } else
Christoph Hellwig6c4fe192006-01-11 20:49:28 +1100642 ret = mapped ? 0 : PAGE_CACHE_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 }
644
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 return ret;
646}
647
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100648STATIC size_t
Christoph Hellwig6c4fe192006-01-11 20:49:28 +1100649xfs_probe_cluster(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 struct inode *inode,
651 struct page *startpage,
652 struct buffer_head *bh,
Christoph Hellwig6c4fe192006-01-11 20:49:28 +1100653 struct buffer_head *head,
654 int mapped)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655{
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100656 struct pagevec pvec;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 pgoff_t tindex, tlast, tloff;
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100658 size_t total = 0;
659 int done = 0, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660
661 /* First sum forwards in this page */
662 do {
Eric Sandeen2353e8e2006-02-28 12:30:30 +1100663 if (!buffer_uptodate(bh) || (mapped != buffer_mapped(bh)))
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100664 return total;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 total += bh->b_size;
666 } while ((bh = bh->b_this_page) != head);
667
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100668 /* if we reached the end of the page, sum forwards in following pages */
669 tlast = i_size_read(inode) >> PAGE_CACHE_SHIFT;
670 tindex = startpage->index + 1;
671
672 /* Prune this back to avoid pathological behavior */
673 tloff = min(tlast, startpage->index + 64);
674
675 pagevec_init(&pvec, 0);
676 while (!done && tindex <= tloff) {
677 unsigned len = min_t(pgoff_t, PAGEVEC_SIZE, tlast - tindex + 1);
678
679 if (!pagevec_lookup(&pvec, inode->i_mapping, tindex, len))
680 break;
681
682 for (i = 0; i < pagevec_count(&pvec); i++) {
683 struct page *page = pvec.pages[i];
Christoph Hellwig265c1fa2007-08-16 15:38:19 +1000684 size_t pg_offset, pg_len = 0;
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100685
686 if (tindex == tlast) {
687 pg_offset =
688 i_size_read(inode) & (PAGE_CACHE_SIZE - 1);
Christoph Hellwig1defeac2006-01-11 20:48:33 +1100689 if (!pg_offset) {
690 done = 1;
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100691 break;
Christoph Hellwig1defeac2006-01-11 20:48:33 +1100692 }
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100693 } else
694 pg_offset = PAGE_CACHE_SIZE;
695
Nick Piggin529ae9a2008-08-02 12:01:03 +0200696 if (page->index == tindex && trylock_page(page)) {
Christoph Hellwig265c1fa2007-08-16 15:38:19 +1000697 pg_len = xfs_probe_page(page, pg_offset, mapped);
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100698 unlock_page(page);
699 }
700
Christoph Hellwig265c1fa2007-08-16 15:38:19 +1000701 if (!pg_len) {
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100702 done = 1;
703 break;
704 }
705
Christoph Hellwig265c1fa2007-08-16 15:38:19 +1000706 total += pg_len;
Christoph Hellwig1defeac2006-01-11 20:48:33 +1100707 tindex++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 }
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100709
710 pagevec_release(&pvec);
711 cond_resched();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 }
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100713
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 return total;
715}
716
717/*
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100718 * Test if a given page is suitable for writing as part of an unwritten
719 * or delayed allocate extent.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 */
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100721STATIC int
722xfs_is_delayed_page(
723 struct page *page,
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100724 unsigned int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 if (PageWriteback(page))
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100727 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728
729 if (page->mapping && page_has_buffers(page)) {
730 struct buffer_head *bh, *head;
731 int acceptable = 0;
732
733 bh = head = page_buffers(page);
734 do {
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100735 if (buffer_unwritten(bh))
Christoph Hellwig34a52c62010-04-28 12:28:57 +0000736 acceptable = (type == IO_UNWRITTEN);
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100737 else if (buffer_delay(bh))
Christoph Hellwig34a52c62010-04-28 12:28:57 +0000738 acceptable = (type == IO_DELAY);
David Chinner2ddee842006-03-22 12:47:40 +1100739 else if (buffer_dirty(bh) && buffer_mapped(bh))
Christoph Hellwig34a52c62010-04-28 12:28:57 +0000740 acceptable = (type == IO_NEW);
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100741 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 } while ((bh = bh->b_this_page) != head);
744
745 if (acceptable)
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100746 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 }
748
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100749 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750}
751
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752/*
753 * Allocate & map buffers for page given the extent map. Write it out.
754 * except for the original page of a writepage, this is called on
755 * delalloc/unwritten pages only, for the original page it is possible
756 * that the page has no mapping at all.
757 */
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100758STATIC int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759xfs_convert_page(
760 struct inode *inode,
761 struct page *page,
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100762 loff_t tindex,
Christoph Hellwig207d0412010-04-28 12:28:56 +0000763 struct xfs_bmbt_irec *imap,
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100764 xfs_ioend_t **ioendp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 struct writeback_control *wbc,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 int startio,
767 int all_bh)
768{
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100769 struct buffer_head *bh, *head;
Christoph Hellwig9260dc62006-01-11 20:48:47 +1100770 xfs_off_t end_offset;
771 unsigned long p_offset;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100772 unsigned int type;
Nathan Scott24e17b52005-05-05 13:33:20 -0700773 int len, page_dirty;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100774 int count = 0, done = 0, uptodate = 1;
Christoph Hellwig9260dc62006-01-11 20:48:47 +1100775 xfs_off_t offset = page_offset(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100777 if (page->index != tindex)
778 goto fail;
Nick Piggin529ae9a2008-08-02 12:01:03 +0200779 if (!trylock_page(page))
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100780 goto fail;
781 if (PageWriteback(page))
782 goto fail_unlock_page;
783 if (page->mapping != inode->i_mapping)
784 goto fail_unlock_page;
785 if (!xfs_is_delayed_page(page, (*ioendp)->io_type))
786 goto fail_unlock_page;
787
Nathan Scott24e17b52005-05-05 13:33:20 -0700788 /*
789 * page_dirty is initially a count of buffers on the page before
Nathan Scottc41564b2006-03-29 08:55:14 +1000790 * EOF and is decremented as we move each into a cleanable state.
Christoph Hellwig9260dc62006-01-11 20:48:47 +1100791 *
792 * Derivation:
793 *
794 * End offset is the highest offset that this page should represent.
795 * If we are on the last page, (end_offset & (PAGE_CACHE_SIZE - 1))
796 * will evaluate non-zero and be less than PAGE_CACHE_SIZE and
797 * hence give us the correct page_dirty count. On any other page,
798 * it will be zero and in that case we need page_dirty to be the
799 * count of buffers on the page.
Nathan Scott24e17b52005-05-05 13:33:20 -0700800 */
Christoph Hellwig9260dc62006-01-11 20:48:47 +1100801 end_offset = min_t(unsigned long long,
802 (xfs_off_t)(page->index + 1) << PAGE_CACHE_SHIFT,
803 i_size_read(inode));
804
Nathan Scott24e17b52005-05-05 13:33:20 -0700805 len = 1 << inode->i_blkbits;
Christoph Hellwig9260dc62006-01-11 20:48:47 +1100806 p_offset = min_t(unsigned long, end_offset & (PAGE_CACHE_SIZE - 1),
807 PAGE_CACHE_SIZE);
808 p_offset = p_offset ? roundup(p_offset, len) : PAGE_CACHE_SIZE;
809 page_dirty = p_offset / len;
Nathan Scott24e17b52005-05-05 13:33:20 -0700810
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 bh = head = page_buffers(page);
812 do {
Christoph Hellwig9260dc62006-01-11 20:48:47 +1100813 if (offset >= end_offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 break;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100815 if (!buffer_uptodate(bh))
816 uptodate = 0;
817 if (!(PageUptodate(page) || buffer_uptodate(bh))) {
818 done = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 continue;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100820 }
821
Christoph Hellwig9260dc62006-01-11 20:48:47 +1100822 if (buffer_unwritten(bh) || buffer_delay(bh)) {
823 if (buffer_unwritten(bh))
Christoph Hellwig34a52c62010-04-28 12:28:57 +0000824 type = IO_UNWRITTEN;
Christoph Hellwig9260dc62006-01-11 20:48:47 +1100825 else
Christoph Hellwig34a52c62010-04-28 12:28:57 +0000826 type = IO_DELAY;
Christoph Hellwig9260dc62006-01-11 20:48:47 +1100827
Christoph Hellwig207d0412010-04-28 12:28:56 +0000828 if (!xfs_iomap_valid(inode, imap, offset)) {
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100829 done = 1;
Christoph Hellwig9260dc62006-01-11 20:48:47 +1100830 continue;
831 }
832
Christoph Hellwig207d0412010-04-28 12:28:56 +0000833 ASSERT(imap->br_startblock != HOLESTARTBLOCK);
834 ASSERT(imap->br_startblock != DELAYSTARTBLOCK);
Christoph Hellwig9260dc62006-01-11 20:48:47 +1100835
Christoph Hellwig207d0412010-04-28 12:28:56 +0000836 xfs_map_at_offset(inode, bh, imap, offset);
Christoph Hellwig9260dc62006-01-11 20:48:47 +1100837 if (startio) {
Christoph Hellwig7336cea2006-01-11 20:49:16 +1100838 xfs_add_to_ioend(inode, bh, offset,
Christoph Hellwig9260dc62006-01-11 20:48:47 +1100839 type, ioendp, done);
840 } else {
841 set_buffer_dirty(bh);
842 unlock_buffer(bh);
843 mark_buffer_dirty(bh);
844 }
845 page_dirty--;
846 count++;
847 } else {
Christoph Hellwig34a52c62010-04-28 12:28:57 +0000848 type = IO_NEW;
Christoph Hellwig9260dc62006-01-11 20:48:47 +1100849 if (buffer_mapped(bh) && all_bh && startio) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850 lock_buffer(bh);
Christoph Hellwig7336cea2006-01-11 20:49:16 +1100851 xfs_add_to_ioend(inode, bh, offset,
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100852 type, ioendp, done);
853 count++;
Nathan Scott24e17b52005-05-05 13:33:20 -0700854 page_dirty--;
Christoph Hellwig9260dc62006-01-11 20:48:47 +1100855 } else {
856 done = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 }
Christoph Hellwig7336cea2006-01-11 20:49:16 +1100859 } while (offset += len, (bh = bh->b_this_page) != head);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100861 if (uptodate && bh == head)
862 SetPageUptodate(page);
863
864 if (startio) {
Christoph Hellwigf5e596b2006-01-11 20:49:42 +1100865 if (count) {
David Chinner9fddaca2006-02-07 20:27:24 +1100866 wbc->nr_to_write--;
Wu Fengguang0d995192009-12-03 13:54:25 +0100867 if (wbc->nr_to_write <= 0)
Christoph Hellwigf5e596b2006-01-11 20:49:42 +1100868 done = 1;
Christoph Hellwigf5e596b2006-01-11 20:49:42 +1100869 }
Denys Vlasenkob41759c2008-05-19 16:34:11 +1000870 xfs_start_page_writeback(page, !page_dirty, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 }
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100872
873 return done;
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100874 fail_unlock_page:
875 unlock_page(page);
876 fail:
877 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878}
879
880/*
881 * Convert & write out a cluster of pages in the same extent as defined
882 * by mp and following the start page.
883 */
884STATIC void
885xfs_cluster_write(
886 struct inode *inode,
887 pgoff_t tindex,
Christoph Hellwig207d0412010-04-28 12:28:56 +0000888 struct xfs_bmbt_irec *imap,
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100889 xfs_ioend_t **ioendp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890 struct writeback_control *wbc,
891 int startio,
892 int all_bh,
893 pgoff_t tlast)
894{
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100895 struct pagevec pvec;
896 int done = 0, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100898 pagevec_init(&pvec, 0);
899 while (!done && tindex <= tlast) {
900 unsigned len = min_t(pgoff_t, PAGEVEC_SIZE, tlast - tindex + 1);
901
902 if (!pagevec_lookup(&pvec, inode->i_mapping, tindex, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903 break;
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100904
905 for (i = 0; i < pagevec_count(&pvec); i++) {
906 done = xfs_convert_page(inode, pvec.pages[i], tindex++,
Christoph Hellwig207d0412010-04-28 12:28:56 +0000907 imap, ioendp, wbc, startio, all_bh);
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100908 if (done)
909 break;
910 }
911
912 pagevec_release(&pvec);
913 cond_resched();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914 }
915}
916
Dave Chinner3ed3a432010-03-05 02:00:42 +0000917STATIC void
918xfs_vm_invalidatepage(
919 struct page *page,
920 unsigned long offset)
921{
922 trace_xfs_invalidatepage(page->mapping->host, page, offset);
923 block_invalidatepage(page, offset);
924}
925
926/*
927 * If the page has delalloc buffers on it, we need to punch them out before we
928 * invalidate the page. If we don't, we leave a stale delalloc mapping on the
929 * inode that can trip a BUG() in xfs_get_blocks() later on if a direct IO read
930 * is done on that same region - the delalloc extent is returned when none is
931 * supposed to be there.
932 *
933 * We prevent this by truncating away the delalloc regions on the page before
934 * invalidating it. Because they are delalloc, we can do this without needing a
935 * transaction. Indeed - if we get ENOSPC errors, we have to be able to do this
936 * truncation without a transaction as there is no space left for block
937 * reservation (typically why we see a ENOSPC in writeback).
938 *
939 * This is not a performance critical path, so for now just do the punching a
940 * buffer head at a time.
941 */
942STATIC void
943xfs_aops_discard_page(
944 struct page *page)
945{
946 struct inode *inode = page->mapping->host;
947 struct xfs_inode *ip = XFS_I(inode);
948 struct buffer_head *bh, *head;
949 loff_t offset = page_offset(page);
950 ssize_t len = 1 << inode->i_blkbits;
951
Christoph Hellwig34a52c62010-04-28 12:28:57 +0000952 if (!xfs_is_delayed_page(page, IO_DELAY))
Dave Chinner3ed3a432010-03-05 02:00:42 +0000953 goto out_invalidate;
954
Dave Chinnere8c37532010-03-15 02:36:35 +0000955 if (XFS_FORCED_SHUTDOWN(ip->i_mount))
956 goto out_invalidate;
957
Dave Chinner3ed3a432010-03-05 02:00:42 +0000958 xfs_fs_cmn_err(CE_ALERT, ip->i_mount,
959 "page discard on page %p, inode 0x%llx, offset %llu.",
960 page, ip->i_ino, offset);
961
962 xfs_ilock(ip, XFS_ILOCK_EXCL);
963 bh = head = page_buffers(page);
964 do {
965 int done;
966 xfs_fileoff_t offset_fsb;
967 xfs_bmbt_irec_t imap;
968 int nimaps = 1;
969 int error;
970 xfs_fsblock_t firstblock;
971 xfs_bmap_free_t flist;
972
973 if (!buffer_delay(bh))
974 goto next_buffer;
975
976 offset_fsb = XFS_B_TO_FSBT(ip->i_mount, offset);
977
978 /*
979 * Map the range first and check that it is a delalloc extent
980 * before trying to unmap the range. Otherwise we will be
981 * trying to remove a real extent (which requires a
982 * transaction) or a hole, which is probably a bad idea...
983 */
984 error = xfs_bmapi(NULL, ip, offset_fsb, 1,
985 XFS_BMAPI_ENTIRE, NULL, 0, &imap,
986 &nimaps, NULL, NULL);
987
988 if (error) {
989 /* something screwed, just bail */
Dave Chinnere8c37532010-03-15 02:36:35 +0000990 if (!XFS_FORCED_SHUTDOWN(ip->i_mount)) {
991 xfs_fs_cmn_err(CE_ALERT, ip->i_mount,
992 "page discard failed delalloc mapping lookup.");
993 }
Dave Chinner3ed3a432010-03-05 02:00:42 +0000994 break;
995 }
996 if (!nimaps) {
997 /* nothing there */
998 goto next_buffer;
999 }
1000 if (imap.br_startblock != DELAYSTARTBLOCK) {
1001 /* been converted, ignore */
1002 goto next_buffer;
1003 }
1004 WARN_ON(imap.br_blockcount == 0);
1005
1006 /*
1007 * Note: while we initialise the firstblock/flist pair, they
1008 * should never be used because blocks should never be
1009 * allocated or freed for a delalloc extent and hence we need
1010 * don't cancel or finish them after the xfs_bunmapi() call.
1011 */
1012 xfs_bmap_init(&flist, &firstblock);
1013 error = xfs_bunmapi(NULL, ip, offset_fsb, 1, 0, 1, &firstblock,
1014 &flist, NULL, &done);
1015
1016 ASSERT(!flist.xbf_count && !flist.xbf_first);
1017 if (error) {
1018 /* something screwed, just bail */
Dave Chinnere8c37532010-03-15 02:36:35 +00001019 if (!XFS_FORCED_SHUTDOWN(ip->i_mount)) {
1020 xfs_fs_cmn_err(CE_ALERT, ip->i_mount,
Dave Chinner3ed3a432010-03-05 02:00:42 +00001021 "page discard unable to remove delalloc mapping.");
Dave Chinnere8c37532010-03-15 02:36:35 +00001022 }
Dave Chinner3ed3a432010-03-05 02:00:42 +00001023 break;
1024 }
1025next_buffer:
1026 offset += len;
1027
1028 } while ((bh = bh->b_this_page) != head);
1029
1030 xfs_iunlock(ip, XFS_ILOCK_EXCL);
1031out_invalidate:
1032 xfs_vm_invalidatepage(page, 0);
1033 return;
1034}
1035
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036/*
1037 * Calling this without startio set means we are being asked to make a dirty
1038 * page ready for freeing it's buffers. When called with startio set then
1039 * we are coming from writepage.
1040 *
1041 * When called with startio set it is important that we write the WHOLE
1042 * page if possible.
1043 * The bh->b_state's cannot know if any of the blocks or which block for
1044 * that matter are dirty due to mmap writes, and therefore bh uptodate is
Nathan Scottc41564b2006-03-29 08:55:14 +10001045 * only valid if the page itself isn't completely uptodate. Some layers
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046 * may clear the page dirty flag prior to calling write page, under the
1047 * assumption the entire page will be written out; by not writing out the
1048 * whole page the page can be reused before all valid dirty data is
1049 * written out. Note: in the case of a page that has been dirty'd by
1050 * mapwrite and but partially setup by block_prepare_write the
1051 * bh->b_states's will not agree and only ones setup by BPW/BCW will have
1052 * valid state, thus the whole page must be written out thing.
1053 */
1054
1055STATIC int
1056xfs_page_state_convert(
1057 struct inode *inode,
1058 struct page *page,
1059 struct writeback_control *wbc,
1060 int startio,
1061 int unmapped) /* also implies page uptodate */
1062{
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +11001063 struct buffer_head *bh, *head;
Christoph Hellwig207d0412010-04-28 12:28:56 +00001064 struct xfs_bmbt_irec imap;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +11001065 xfs_ioend_t *ioend = NULL, *iohead = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066 loff_t offset;
1067 unsigned long p_offset = 0;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +11001068 unsigned int type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069 __uint64_t end_offset;
1070 pgoff_t end_index, last_index, tlast;
Christoph Hellwigd5cb48a2006-01-11 20:49:02 +11001071 ssize_t size, len;
1072 int flags, err, iomap_valid = 0, uptodate = 1;
Nathan Scott82721452006-04-11 15:10:55 +10001073 int page_dirty, count = 0;
1074 int trylock = 0;
Christoph Hellwig6c4fe192006-01-11 20:49:28 +11001075 int all_bh = unmapped;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076
Nathan Scott82721452006-04-11 15:10:55 +10001077 if (startio) {
1078 if (wbc->sync_mode == WB_SYNC_NONE && wbc->nonblocking)
1079 trylock |= BMAPI_TRYLOCK;
1080 }
Daniel Moore3ba08152005-05-05 13:31:34 -07001081
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082 /* Is this page beyond the end of the file? */
1083 offset = i_size_read(inode);
1084 end_index = offset >> PAGE_CACHE_SHIFT;
1085 last_index = (offset - 1) >> PAGE_CACHE_SHIFT;
1086 if (page->index >= end_index) {
1087 if ((page->index >= end_index + 1) ||
1088 !(i_size_read(inode) & (PAGE_CACHE_SIZE - 1))) {
Nathan Scott19d5bcf2005-11-02 15:14:09 +11001089 if (startio)
1090 unlock_page(page);
1091 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092 }
1093 }
1094
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095 /*
Nathan Scott24e17b52005-05-05 13:33:20 -07001096 * page_dirty is initially a count of buffers on the page before
Nathan Scottc41564b2006-03-29 08:55:14 +10001097 * EOF and is decremented as we move each into a cleanable state.
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +11001098 *
1099 * Derivation:
1100 *
1101 * End offset is the highest offset that this page should represent.
1102 * If we are on the last page, (end_offset & (PAGE_CACHE_SIZE - 1))
1103 * will evaluate non-zero and be less than PAGE_CACHE_SIZE and
1104 * hence give us the correct page_dirty count. On any other page,
1105 * it will be zero and in that case we need page_dirty to be the
1106 * count of buffers on the page.
1107 */
1108 end_offset = min_t(unsigned long long,
1109 (xfs_off_t)(page->index + 1) << PAGE_CACHE_SHIFT, offset);
Nathan Scott24e17b52005-05-05 13:33:20 -07001110 len = 1 << inode->i_blkbits;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +11001111 p_offset = min_t(unsigned long, end_offset & (PAGE_CACHE_SIZE - 1),
1112 PAGE_CACHE_SIZE);
1113 p_offset = p_offset ? roundup(p_offset, len) : PAGE_CACHE_SIZE;
Nathan Scott24e17b52005-05-05 13:33:20 -07001114 page_dirty = p_offset / len;
1115
Nathan Scott24e17b52005-05-05 13:33:20 -07001116 bh = head = page_buffers(page);
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +11001117 offset = page_offset(page);
David Chinnerdf3c7242007-05-24 15:27:03 +10001118 flags = BMAPI_READ;
Christoph Hellwig34a52c62010-04-28 12:28:57 +00001119 type = IO_NEW;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +11001120
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +11001121 /* TODO: cleanup count and page_dirty */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122
1123 do {
1124 if (offset >= end_offset)
1125 break;
1126 if (!buffer_uptodate(bh))
1127 uptodate = 0;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +11001128 if (!(PageUptodate(page) || buffer_uptodate(bh)) && !startio) {
Christoph Hellwig1defeac2006-01-11 20:48:33 +11001129 /*
1130 * the iomap is actually still valid, but the ioend
1131 * isn't. shouldn't happen too often.
1132 */
1133 iomap_valid = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134 continue;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +11001135 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136
Christoph Hellwig1defeac2006-01-11 20:48:33 +11001137 if (iomap_valid)
Christoph Hellwig207d0412010-04-28 12:28:56 +00001138 iomap_valid = xfs_iomap_valid(inode, &imap, offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139
1140 /*
1141 * First case, map an unwritten extent and prepare for
1142 * extent state conversion transaction on completion.
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +11001143 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144 * Second case, allocate space for a delalloc buffer.
1145 * We can return EAGAIN here in the release page case.
Christoph Hellwigd5cb48a2006-01-11 20:49:02 +11001146 *
1147 * Third case, an unmapped buffer was found, and we are
1148 * in a path where we need to write the whole page out.
David Chinnerdf3c7242007-05-24 15:27:03 +10001149 */
Christoph Hellwigd5cb48a2006-01-11 20:49:02 +11001150 if (buffer_unwritten(bh) || buffer_delay(bh) ||
1151 ((buffer_uptodate(bh) || PageUptodate(page)) &&
1152 !buffer_mapped(bh) && (unmapped || startio))) {
David Chinnereffd1202007-06-18 16:49:58 +10001153 int new_ioend = 0;
1154
David Chinnerdf3c7242007-05-24 15:27:03 +10001155 /*
Christoph Hellwig6c4fe192006-01-11 20:49:28 +11001156 * Make sure we don't use a read-only iomap
1157 */
David Chinnerdf3c7242007-05-24 15:27:03 +10001158 if (flags == BMAPI_READ)
Christoph Hellwig6c4fe192006-01-11 20:49:28 +11001159 iomap_valid = 0;
1160
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +11001161 if (buffer_unwritten(bh)) {
Christoph Hellwig34a52c62010-04-28 12:28:57 +00001162 type = IO_UNWRITTEN;
Nathan Scott82721452006-04-11 15:10:55 +10001163 flags = BMAPI_WRITE | BMAPI_IGNSTATE;
Christoph Hellwigd5cb48a2006-01-11 20:49:02 +11001164 } else if (buffer_delay(bh)) {
Christoph Hellwig34a52c62010-04-28 12:28:57 +00001165 type = IO_DELAY;
Nathan Scott82721452006-04-11 15:10:55 +10001166 flags = BMAPI_ALLOCATE | trylock;
Christoph Hellwigd5cb48a2006-01-11 20:49:02 +11001167 } else {
Christoph Hellwig34a52c62010-04-28 12:28:57 +00001168 type = IO_NEW;
Nathan Scott82721452006-04-11 15:10:55 +10001169 flags = BMAPI_WRITE | BMAPI_MMAP;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +11001170 }
1171
Christoph Hellwig1defeac2006-01-11 20:48:33 +11001172 if (!iomap_valid) {
David Chinnereffd1202007-06-18 16:49:58 +10001173 /*
1174 * if we didn't have a valid mapping then we
1175 * need to ensure that we put the new mapping
1176 * in a new ioend structure. This needs to be
1177 * done to ensure that the ioends correctly
1178 * reflect the block mappings at io completion
1179 * for unwritten extent conversion.
1180 */
1181 new_ioend = 1;
Christoph Hellwig34a52c62010-04-28 12:28:57 +00001182 if (type == IO_NEW) {
Christoph Hellwig6c4fe192006-01-11 20:49:28 +11001183 size = xfs_probe_cluster(inode,
1184 page, bh, head, 0);
Christoph Hellwigd5cb48a2006-01-11 20:49:02 +11001185 } else {
1186 size = len;
1187 }
1188
1189 err = xfs_map_blocks(inode, offset, size,
Christoph Hellwig207d0412010-04-28 12:28:56 +00001190 &imap, flags);
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +11001191 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192 goto error;
Christoph Hellwig207d0412010-04-28 12:28:56 +00001193 iomap_valid = xfs_iomap_valid(inode, &imap, offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194 }
Christoph Hellwig1defeac2006-01-11 20:48:33 +11001195 if (iomap_valid) {
Christoph Hellwig207d0412010-04-28 12:28:56 +00001196 xfs_map_at_offset(inode, bh, &imap, offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197 if (startio) {
Christoph Hellwig7336cea2006-01-11 20:49:16 +11001198 xfs_add_to_ioend(inode, bh, offset,
Christoph Hellwig1defeac2006-01-11 20:48:33 +11001199 type, &ioend,
David Chinnereffd1202007-06-18 16:49:58 +10001200 new_ioend);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201 } else {
1202 set_buffer_dirty(bh);
1203 unlock_buffer(bh);
1204 mark_buffer_dirty(bh);
1205 }
1206 page_dirty--;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +11001207 count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208 }
Christoph Hellwigd5cb48a2006-01-11 20:49:02 +11001209 } else if (buffer_uptodate(bh) && startio) {
Christoph Hellwig6c4fe192006-01-11 20:49:28 +11001210 /*
1211 * we got here because the buffer is already mapped.
1212 * That means it must already have extents allocated
1213 * underneath it. Map the extent by reading it.
1214 */
David Chinnerdf3c7242007-05-24 15:27:03 +10001215 if (!iomap_valid || flags != BMAPI_READ) {
Christoph Hellwig6c4fe192006-01-11 20:49:28 +11001216 flags = BMAPI_READ;
1217 size = xfs_probe_cluster(inode, page, bh,
1218 head, 1);
1219 err = xfs_map_blocks(inode, offset, size,
Christoph Hellwig207d0412010-04-28 12:28:56 +00001220 &imap, flags);
Christoph Hellwig6c4fe192006-01-11 20:49:28 +11001221 if (err)
1222 goto error;
Christoph Hellwig207d0412010-04-28 12:28:56 +00001223 iomap_valid = xfs_iomap_valid(inode, &imap, offset);
Christoph Hellwig6c4fe192006-01-11 20:49:28 +11001224 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225
David Chinnerdf3c7242007-05-24 15:27:03 +10001226 /*
Christoph Hellwig34a52c62010-04-28 12:28:57 +00001227 * We set the type to IO_NEW in case we are doing a
David Chinnerdf3c7242007-05-24 15:27:03 +10001228 * small write at EOF that is extending the file but
1229 * without needing an allocation. We need to update the
1230 * file size on I/O completion in this case so it is
1231 * the same case as having just allocated a new extent
1232 * that we are writing into for the first time.
1233 */
Christoph Hellwig34a52c62010-04-28 12:28:57 +00001234 type = IO_NEW;
Nick Pigginca5de402008-08-02 12:02:13 +02001235 if (trylock_buffer(bh)) {
Christoph Hellwigd5cb48a2006-01-11 20:49:02 +11001236 ASSERT(buffer_mapped(bh));
Christoph Hellwig6c4fe192006-01-11 20:49:28 +11001237 if (iomap_valid)
1238 all_bh = 1;
Christoph Hellwig7336cea2006-01-11 20:49:16 +11001239 xfs_add_to_ioend(inode, bh, offset, type,
Christoph Hellwigd5cb48a2006-01-11 20:49:02 +11001240 &ioend, !iomap_valid);
1241 page_dirty--;
1242 count++;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +11001243 } else {
Christoph Hellwig1defeac2006-01-11 20:48:33 +11001244 iomap_valid = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245 }
Christoph Hellwigd5cb48a2006-01-11 20:49:02 +11001246 } else if ((buffer_uptodate(bh) || PageUptodate(page)) &&
1247 (unmapped || startio)) {
1248 iomap_valid = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249 }
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +11001250
1251 if (!iohead)
1252 iohead = ioend;
1253
1254 } while (offset += len, ((bh = bh->b_this_page) != head));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255
1256 if (uptodate && bh == head)
1257 SetPageUptodate(page);
1258
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +11001259 if (startio)
Denys Vlasenkob41759c2008-05-19 16:34:11 +10001260 xfs_start_page_writeback(page, 1, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261
Christoph Hellwig1defeac2006-01-11 20:48:33 +11001262 if (ioend && iomap_valid) {
Christoph Hellwig8699bb02010-04-28 12:28:54 +00001263 struct xfs_mount *m = XFS_I(inode)->i_mount;
Christoph Hellwig207d0412010-04-28 12:28:56 +00001264 xfs_off_t iomap_offset = XFS_FSB_TO_B(m, imap.br_startoff);
1265 xfs_off_t iomap_bsize = XFS_FSB_TO_B(m, imap.br_blockcount);
Christoph Hellwig8699bb02010-04-28 12:28:54 +00001266
1267 offset = (iomap_offset + iomap_bsize - 1) >>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268 PAGE_CACHE_SHIFT;
Nathan Scott775bf6c2005-05-05 13:33:01 -07001269 tlast = min_t(pgoff_t, offset, last_index);
Christoph Hellwig207d0412010-04-28 12:28:56 +00001270 xfs_cluster_write(inode, page->index + 1, &imap, &ioend,
Christoph Hellwig6c4fe192006-01-11 20:49:28 +11001271 wbc, startio, all_bh, tlast);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272 }
1273
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +11001274 if (iohead)
Christoph Hellwig06342cf2009-10-30 09:09:15 +00001275 xfs_submit_ioend(wbc, iohead);
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +11001276
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277 return page_dirty;
1278
1279error:
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +11001280 if (iohead)
1281 xfs_cancel_ioend(iohead);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282
1283 /*
1284 * If it's delalloc and we have nowhere to put it,
1285 * throw it away, unless the lower layers told
1286 * us to try again.
1287 */
1288 if (err != -EAGAIN) {
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +11001289 if (!unmapped)
Dave Chinner3ed3a432010-03-05 02:00:42 +00001290 xfs_aops_discard_page(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291 ClearPageUptodate(page);
1292 }
1293 return err;
1294}
1295
Nathan Scottf51623b2006-03-14 13:26:27 +11001296/*
1297 * writepage: Called from one of two places:
1298 *
1299 * 1. we are flushing a delalloc buffer head.
1300 *
1301 * 2. we are writing out a dirty page. Typically the page dirty
1302 * state is cleared before we get here. In this case is it
1303 * conceivable we have no buffer heads.
1304 *
1305 * For delalloc space on the page we need to allocate space and
1306 * flush it. For unmapped buffer heads on the page we should
1307 * allocate space if the page is uptodate. For any other dirty
1308 * buffer heads on the page we should flush them.
1309 *
1310 * If we detect that a transaction would be required to flush
1311 * the page, we have to check the process flags first, if we
1312 * are already in a transaction or disk I/O during allocations
1313 * is off, we need to fail the writepage and redirty the page.
1314 */
1315
1316STATIC int
Nathan Scotte4c573b2006-03-14 13:54:26 +11001317xfs_vm_writepage(
Nathan Scottf51623b2006-03-14 13:26:27 +11001318 struct page *page,
1319 struct writeback_control *wbc)
1320{
1321 int error;
1322 int need_trans;
1323 int delalloc, unmapped, unwritten;
1324 struct inode *inode = page->mapping->host;
1325
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001326 trace_xfs_writepage(inode, page, 0);
Nathan Scottf51623b2006-03-14 13:26:27 +11001327
1328 /*
1329 * We need a transaction if:
1330 * 1. There are delalloc buffers on the page
1331 * 2. The page is uptodate and we have unmapped buffers
1332 * 3. The page is uptodate and we have no buffers
1333 * 4. There are unwritten buffers on the page
1334 */
1335
1336 if (!page_has_buffers(page)) {
1337 unmapped = 1;
1338 need_trans = 1;
1339 } else {
1340 xfs_count_page_state(page, &delalloc, &unmapped, &unwritten);
1341 if (!PageUptodate(page))
1342 unmapped = 0;
1343 need_trans = delalloc + unmapped + unwritten;
1344 }
1345
1346 /*
1347 * If we need a transaction and the process flags say
1348 * we are already in a transaction, or no IO is allowed
1349 * then mark the page dirty again and leave the page
1350 * as is.
1351 */
Nathan Scott59c1b082006-06-09 14:59:13 +10001352 if (current_test_flags(PF_FSTRANS) && need_trans)
Nathan Scottf51623b2006-03-14 13:26:27 +11001353 goto out_fail;
1354
1355 /*
1356 * Delay hooking up buffer heads until we have
1357 * made our go/no-go decision.
1358 */
1359 if (!page_has_buffers(page))
1360 create_empty_buffers(page, 1 << inode->i_blkbits, 0);
1361
Eric Sandeenc8a40512009-07-31 00:02:17 -05001362
1363 /*
1364 * VM calculation for nr_to_write seems off. Bump it way
1365 * up, this gets simple streaming writes zippy again.
1366 * To be reviewed again after Jens' writeback changes.
1367 */
1368 wbc->nr_to_write *= 4;
1369
Nathan Scottf51623b2006-03-14 13:26:27 +11001370 /*
1371 * Convert delayed allocate, unwritten or unmapped space
1372 * to real space and flush out to disk.
1373 */
1374 error = xfs_page_state_convert(inode, page, wbc, 1, unmapped);
1375 if (error == -EAGAIN)
1376 goto out_fail;
1377 if (unlikely(error < 0))
1378 goto out_unlock;
1379
1380 return 0;
1381
1382out_fail:
1383 redirty_page_for_writepage(wbc, page);
1384 unlock_page(page);
1385 return 0;
1386out_unlock:
1387 unlock_page(page);
1388 return error;
1389}
1390
Nathan Scott7d4fb402006-06-09 15:27:16 +10001391STATIC int
1392xfs_vm_writepages(
1393 struct address_space *mapping,
1394 struct writeback_control *wbc)
1395{
Christoph Hellwigb3aea4e2007-08-29 11:44:37 +10001396 xfs_iflags_clear(XFS_I(mapping->host), XFS_ITRUNCATED);
Nathan Scott7d4fb402006-06-09 15:27:16 +10001397 return generic_writepages(mapping, wbc);
1398}
1399
Nathan Scottf51623b2006-03-14 13:26:27 +11001400/*
1401 * Called to move a page into cleanable state - and from there
1402 * to be released. Possibly the page is already clean. We always
1403 * have buffer heads in this call.
1404 *
1405 * Returns 0 if the page is ok to release, 1 otherwise.
1406 *
1407 * Possible scenarios are:
1408 *
1409 * 1. We are being called to release a page which has been written
1410 * to via regular I/O. buffer heads will be dirty and possibly
1411 * delalloc. If no delalloc buffer heads in this case then we
1412 * can just return zero.
1413 *
1414 * 2. We are called to release a page which has been written via
1415 * mmap, all we need to do is ensure there is no delalloc
1416 * state in the buffer heads, if not we can let the caller
1417 * free them and we should come back later via writepage.
1418 */
1419STATIC int
Nathan Scott238f4c52006-03-17 17:26:25 +11001420xfs_vm_releasepage(
Nathan Scottf51623b2006-03-14 13:26:27 +11001421 struct page *page,
1422 gfp_t gfp_mask)
1423{
1424 struct inode *inode = page->mapping->host;
1425 int dirty, delalloc, unmapped, unwritten;
1426 struct writeback_control wbc = {
1427 .sync_mode = WB_SYNC_ALL,
1428 .nr_to_write = 1,
1429 };
1430
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001431 trace_xfs_releasepage(inode, page, 0);
Nathan Scottf51623b2006-03-14 13:26:27 +11001432
Nathan Scott238f4c52006-03-17 17:26:25 +11001433 if (!page_has_buffers(page))
1434 return 0;
1435
Nathan Scottf51623b2006-03-14 13:26:27 +11001436 xfs_count_page_state(page, &delalloc, &unmapped, &unwritten);
1437 if (!delalloc && !unwritten)
1438 goto free_buffers;
1439
1440 if (!(gfp_mask & __GFP_FS))
1441 return 0;
1442
1443 /* If we are already inside a transaction or the thread cannot
1444 * do I/O, we cannot release this page.
1445 */
Nathan Scott59c1b082006-06-09 14:59:13 +10001446 if (current_test_flags(PF_FSTRANS))
Nathan Scottf51623b2006-03-14 13:26:27 +11001447 return 0;
1448
1449 /*
1450 * Convert delalloc space to real space, do not flush the
1451 * data out to disk, that will be done by the caller.
1452 * Never need to allocate space here - we will always
1453 * come back to writepage in that case.
1454 */
1455 dirty = xfs_page_state_convert(inode, page, &wbc, 0, 0);
1456 if (dirty == 0 && !unwritten)
1457 goto free_buffers;
1458 return 0;
1459
1460free_buffers:
1461 return try_to_free_buffers(page);
1462}
1463
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464STATIC int
Nathan Scottc2536662006-03-29 10:44:40 +10001465__xfs_get_blocks(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466 struct inode *inode,
1467 sector_t iblock,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468 struct buffer_head *bh_result,
1469 int create,
1470 int direct,
1471 bmapi_flags_t flags)
1472{
Christoph Hellwig207d0412010-04-28 12:28:56 +00001473 struct xfs_bmbt_irec imap;
Nathan Scottfdc7ed72005-11-02 15:13:13 +11001474 xfs_off_t offset;
1475 ssize_t size;
Christoph Hellwig207d0412010-04-28 12:28:56 +00001476 int nimap = 1;
1477 int new = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479
Nathan Scottfdc7ed72005-11-02 15:13:13 +11001480 offset = (xfs_off_t)iblock << inode->i_blkbits;
Nathan Scottc2536662006-03-29 10:44:40 +10001481 ASSERT(bh_result->b_size >= (1 << inode->i_blkbits));
1482 size = bh_result->b_size;
Lachlan McIlroy364f3582008-09-17 16:50:14 +10001483
1484 if (!create && direct && offset >= i_size_read(inode))
1485 return 0;
1486
Lachlan McIlroy541d7d32007-10-11 17:34:33 +10001487 error = xfs_iomap(XFS_I(inode), offset, size,
Christoph Hellwig207d0412010-04-28 12:28:56 +00001488 create ? flags : BMAPI_READ, &imap, &nimap, &new);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489 if (error)
1490 return -error;
Christoph Hellwig207d0412010-04-28 12:28:56 +00001491 if (nimap == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492 return 0;
1493
Christoph Hellwig207d0412010-04-28 12:28:56 +00001494 if (imap.br_startblock != HOLESTARTBLOCK &&
1495 imap.br_startblock != DELAYSTARTBLOCK) {
Nathan Scott87cbc492006-03-14 13:26:43 +11001496 /*
1497 * For unwritten extents do not report a disk address on
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498 * the read case (treat as if we're reading into a hole).
1499 */
Christoph Hellwig207d0412010-04-28 12:28:56 +00001500 if (create || !ISUNWRITTEN(&imap))
1501 xfs_map_buffer(inode, bh_result, &imap, offset);
1502 if (create && ISUNWRITTEN(&imap)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503 if (direct)
1504 bh_result->b_private = inode;
1505 set_buffer_unwritten(bh_result);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506 }
1507 }
1508
Nathan Scottc2536662006-03-29 10:44:40 +10001509 /*
1510 * If this is a realtime file, data may be on a different device.
1511 * to that pointed to from the buffer_head b_bdev currently.
1512 */
Christoph Hellwig046f1682010-04-28 12:28:52 +00001513 bh_result->b_bdev = xfs_find_bdev_for_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514
Nathan Scottc2536662006-03-29 10:44:40 +10001515 /*
David Chinner549054a2007-02-10 18:36:35 +11001516 * If we previously allocated a block out beyond eof and we are now
1517 * coming back to use it then we will need to flag it as new even if it
1518 * has a disk address.
1519 *
1520 * With sub-block writes into unwritten extents we also need to mark
1521 * the buffer as new so that the unwritten parts of the buffer gets
1522 * correctly zeroed.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523 */
1524 if (create &&
1525 ((!buffer_mapped(bh_result) && !buffer_uptodate(bh_result)) ||
David Chinner549054a2007-02-10 18:36:35 +11001526 (offset >= i_size_read(inode)) ||
Christoph Hellwig207d0412010-04-28 12:28:56 +00001527 (new || ISUNWRITTEN(&imap))))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528 set_buffer_new(bh_result);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529
Christoph Hellwig207d0412010-04-28 12:28:56 +00001530 if (imap.br_startblock == DELAYSTARTBLOCK) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531 BUG_ON(direct);
1532 if (create) {
1533 set_buffer_uptodate(bh_result);
1534 set_buffer_mapped(bh_result);
1535 set_buffer_delay(bh_result);
1536 }
1537 }
1538
Nathan Scottc2536662006-03-29 10:44:40 +10001539 if (direct || size > (1 << inode->i_blkbits)) {
Christoph Hellwig8699bb02010-04-28 12:28:54 +00001540 struct xfs_mount *mp = XFS_I(inode)->i_mount;
Christoph Hellwig207d0412010-04-28 12:28:56 +00001541 xfs_off_t iomap_offset = XFS_FSB_TO_B(mp, imap.br_startoff);
Christoph Hellwig8699bb02010-04-28 12:28:54 +00001542 xfs_off_t iomap_delta = offset - iomap_offset;
Christoph Hellwig207d0412010-04-28 12:28:56 +00001543 xfs_off_t iomap_bsize = XFS_FSB_TO_B(mp, imap.br_blockcount);
Christoph Hellwig9563b3d2010-04-28 12:28:53 +00001544
Christoph Hellwig8699bb02010-04-28 12:28:54 +00001545 ASSERT(iomap_bsize - iomap_delta > 0);
Nathan Scottfdc7ed72005-11-02 15:13:13 +11001546 offset = min_t(xfs_off_t,
Christoph Hellwig8699bb02010-04-28 12:28:54 +00001547 iomap_bsize - iomap_delta, size);
Nathan Scottc2536662006-03-29 10:44:40 +10001548 bh_result->b_size = (ssize_t)min_t(xfs_off_t, LONG_MAX, offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549 }
1550
1551 return 0;
1552}
1553
1554int
Nathan Scottc2536662006-03-29 10:44:40 +10001555xfs_get_blocks(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556 struct inode *inode,
1557 sector_t iblock,
1558 struct buffer_head *bh_result,
1559 int create)
1560{
Nathan Scottc2536662006-03-29 10:44:40 +10001561 return __xfs_get_blocks(inode, iblock,
Badari Pulavartyfa30bd02006-03-26 01:38:01 -08001562 bh_result, create, 0, BMAPI_WRITE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563}
1564
1565STATIC int
Nathan Scotte4c573b2006-03-14 13:54:26 +11001566xfs_get_blocks_direct(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567 struct inode *inode,
1568 sector_t iblock,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569 struct buffer_head *bh_result,
1570 int create)
1571{
Nathan Scottc2536662006-03-29 10:44:40 +10001572 return __xfs_get_blocks(inode, iblock,
Badari Pulavarty1d8fa7a2006-03-26 01:38:02 -08001573 bh_result, create, 1, BMAPI_WRITE|BMAPI_DIRECT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574}
1575
Christoph Hellwigf0973862005-09-05 08:22:52 +10001576STATIC void
Nathan Scotte4c573b2006-03-14 13:54:26 +11001577xfs_end_io_direct(
Christoph Hellwigf0973862005-09-05 08:22:52 +10001578 struct kiocb *iocb,
1579 loff_t offset,
1580 ssize_t size,
1581 void *private)
1582{
1583 xfs_ioend_t *ioend = iocb->private;
1584
1585 /*
1586 * Non-NULL private data means we need to issue a transaction to
1587 * convert a range from unwritten to written extents. This needs
Nathan Scottc41564b2006-03-29 08:55:14 +10001588 * to happen from process context but aio+dio I/O completion
Christoph Hellwigf0973862005-09-05 08:22:52 +10001589 * happens from irq context so we need to defer it to a workqueue.
Nathan Scottc41564b2006-03-29 08:55:14 +10001590 * This is not necessary for synchronous direct I/O, but we do
Christoph Hellwigf0973862005-09-05 08:22:52 +10001591 * it anyway to keep the code uniform and simpler.
1592 *
David Chinnere927af92007-06-05 16:24:36 +10001593 * Well, if only it were that simple. Because synchronous direct I/O
1594 * requires extent conversion to occur *before* we return to userspace,
1595 * we have to wait for extent conversion to complete. Look at the
1596 * iocb that has been passed to us to determine if this is AIO or
1597 * not. If it is synchronous, tell xfs_finish_ioend() to kick the
1598 * workqueue and wait for it to complete.
1599 *
Christoph Hellwigf0973862005-09-05 08:22:52 +10001600 * The core direct I/O code might be changed to always call the
1601 * completion handler in the future, in which case all this can
1602 * go away.
1603 */
Lachlan McIlroyba87ea62007-05-08 13:49:46 +10001604 ioend->io_offset = offset;
1605 ioend->io_size = size;
Christoph Hellwig34a52c62010-04-28 12:28:57 +00001606 if (ioend->io_type == IO_READ) {
David Chinnere927af92007-06-05 16:24:36 +10001607 xfs_finish_ioend(ioend, 0);
Lachlan McIlroyba87ea62007-05-08 13:49:46 +10001608 } else if (private && size > 0) {
David Chinnere927af92007-06-05 16:24:36 +10001609 xfs_finish_ioend(ioend, is_sync_kiocb(iocb));
Christoph Hellwigf0973862005-09-05 08:22:52 +10001610 } else {
Lachlan McIlroyba87ea62007-05-08 13:49:46 +10001611 /*
1612 * A direct I/O write ioend starts it's life in unwritten
1613 * state in case they map an unwritten extent. This write
1614 * didn't map an unwritten extent so switch it's completion
1615 * handler.
1616 */
Christoph Hellwig34a52c62010-04-28 12:28:57 +00001617 ioend->io_type = IO_NEW;
David Chinnere927af92007-06-05 16:24:36 +10001618 xfs_finish_ioend(ioend, 0);
Christoph Hellwigf0973862005-09-05 08:22:52 +10001619 }
1620
1621 /*
Nathan Scottc41564b2006-03-29 08:55:14 +10001622 * blockdev_direct_IO can return an error even after the I/O
Christoph Hellwigf0973862005-09-05 08:22:52 +10001623 * completion handler was called. Thus we need to protect
1624 * against double-freeing.
1625 */
1626 iocb->private = NULL;
1627}
1628
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629STATIC ssize_t
Nathan Scotte4c573b2006-03-14 13:54:26 +11001630xfs_vm_direct_IO(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631 int rw,
1632 struct kiocb *iocb,
1633 const struct iovec *iov,
1634 loff_t offset,
1635 unsigned long nr_segs)
1636{
1637 struct file *file = iocb->ki_filp;
1638 struct inode *inode = file->f_mapping->host;
Christoph Hellwig6214ed42007-09-14 15:23:17 +10001639 struct block_device *bdev;
Christoph Hellwigf0973862005-09-05 08:22:52 +10001640 ssize_t ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641
Christoph Hellwig046f1682010-04-28 12:28:52 +00001642 bdev = xfs_find_bdev_for_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643
Christoph Hellwig5fe878a2009-12-15 16:47:50 -08001644 iocb->private = xfs_alloc_ioend(inode, rw == WRITE ?
Christoph Hellwig34a52c62010-04-28 12:28:57 +00001645 IO_UNWRITTEN : IO_READ);
Christoph Hellwig5fe878a2009-12-15 16:47:50 -08001646
1647 ret = blockdev_direct_IO_no_locking(rw, iocb, inode, bdev, iov,
1648 offset, nr_segs,
1649 xfs_get_blocks_direct,
1650 xfs_end_io_direct);
Christoph Hellwigf0973862005-09-05 08:22:52 +10001651
Zach Brown8459d862006-12-10 02:21:05 -08001652 if (unlikely(ret != -EIOCBQUEUED && iocb->private))
Christoph Hellwigf0973862005-09-05 08:22:52 +10001653 xfs_destroy_ioend(iocb->private);
1654 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655}
1656
Nathan Scottf51623b2006-03-14 13:26:27 +11001657STATIC int
Nick Piggind79689c2007-10-16 01:25:06 -07001658xfs_vm_write_begin(
Nathan Scottf51623b2006-03-14 13:26:27 +11001659 struct file *file,
Nick Piggind79689c2007-10-16 01:25:06 -07001660 struct address_space *mapping,
1661 loff_t pos,
1662 unsigned len,
1663 unsigned flags,
1664 struct page **pagep,
1665 void **fsdata)
Nathan Scottf51623b2006-03-14 13:26:27 +11001666{
Nick Piggind79689c2007-10-16 01:25:06 -07001667 *pagep = NULL;
1668 return block_write_begin(file, mapping, pos, len, flags, pagep, fsdata,
1669 xfs_get_blocks);
Nathan Scottf51623b2006-03-14 13:26:27 +11001670}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001671
1672STATIC sector_t
Nathan Scotte4c573b2006-03-14 13:54:26 +11001673xfs_vm_bmap(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674 struct address_space *mapping,
1675 sector_t block)
1676{
1677 struct inode *inode = (struct inode *)mapping->host;
Christoph Hellwig739bfb22007-08-29 10:58:01 +10001678 struct xfs_inode *ip = XFS_I(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679
Lachlan McIlroycf441ee2008-02-07 16:42:19 +11001680 xfs_itrace_entry(XFS_I(inode));
Christoph Hellwig126468b2008-03-06 13:44:57 +11001681 xfs_ilock(ip, XFS_IOLOCK_SHARED);
Christoph Hellwig739bfb22007-08-29 10:58:01 +10001682 xfs_flush_pages(ip, (xfs_off_t)0, -1, 0, FI_REMAPF);
Christoph Hellwig126468b2008-03-06 13:44:57 +11001683 xfs_iunlock(ip, XFS_IOLOCK_SHARED);
Nathan Scottc2536662006-03-29 10:44:40 +10001684 return generic_block_bmap(mapping, block, xfs_get_blocks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685}
1686
1687STATIC int
Nathan Scotte4c573b2006-03-14 13:54:26 +11001688xfs_vm_readpage(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689 struct file *unused,
1690 struct page *page)
1691{
Nathan Scottc2536662006-03-29 10:44:40 +10001692 return mpage_readpage(page, xfs_get_blocks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693}
1694
1695STATIC int
Nathan Scotte4c573b2006-03-14 13:54:26 +11001696xfs_vm_readpages(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697 struct file *unused,
1698 struct address_space *mapping,
1699 struct list_head *pages,
1700 unsigned nr_pages)
1701{
Nathan Scottc2536662006-03-29 10:44:40 +10001702 return mpage_readpages(mapping, pages, nr_pages, xfs_get_blocks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703}
1704
Christoph Hellwigf5e54d62006-06-28 04:26:44 -07001705const struct address_space_operations xfs_address_space_operations = {
Nathan Scotte4c573b2006-03-14 13:54:26 +11001706 .readpage = xfs_vm_readpage,
1707 .readpages = xfs_vm_readpages,
1708 .writepage = xfs_vm_writepage,
Nathan Scott7d4fb402006-06-09 15:27:16 +10001709 .writepages = xfs_vm_writepages,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001710 .sync_page = block_sync_page,
Nathan Scott238f4c52006-03-17 17:26:25 +11001711 .releasepage = xfs_vm_releasepage,
1712 .invalidatepage = xfs_vm_invalidatepage,
Nick Piggind79689c2007-10-16 01:25:06 -07001713 .write_begin = xfs_vm_write_begin,
1714 .write_end = generic_write_end,
Nathan Scotte4c573b2006-03-14 13:54:26 +11001715 .bmap = xfs_vm_bmap,
1716 .direct_IO = xfs_vm_direct_IO,
Christoph Lametere965f962006-02-01 03:05:41 -08001717 .migratepage = buffer_migrate_page,
Hisashi Hifumibddaafa2009-03-29 09:53:38 +02001718 .is_partially_uptodate = block_is_partially_uptodate,
Andi Kleenaa261f52009-09-16 11:50:16 +02001719 .error_remove_page = generic_error_remove_page,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720};