blob: 2b09cc34dd07546678b241d5429d88545f41a9de [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 Hellwig25e41b32008-12-03 12:20:39 +010048
49/*
50 * Prime number of hash buckets since address is used as the key.
51 */
52#define NVSYNC 37
53#define to_ioend_wq(v) (&xfs_ioend_wq[((unsigned long)v) % NVSYNC])
54static wait_queue_head_t xfs_ioend_wq[NVSYNC];
55
56void __init
57xfs_ioend_init(void)
58{
59 int i;
60
61 for (i = 0; i < NVSYNC; i++)
62 init_waitqueue_head(&xfs_ioend_wq[i]);
63}
64
65void
66xfs_ioend_wait(
67 xfs_inode_t *ip)
68{
69 wait_queue_head_t *wq = to_ioend_wq(ip);
70
71 wait_event(*wq, (atomic_read(&ip->i_iocount) == 0));
72}
73
74STATIC void
75xfs_ioend_wake(
76 xfs_inode_t *ip)
77{
78 if (atomic_dec_and_test(&ip->i_iocount))
79 wake_up(to_ioend_wq(ip));
80}
81
Christoph Hellwig0b1b2132009-12-14 23:14:59 +000082void
Nathan Scottf51623b2006-03-14 13:26:27 +110083xfs_count_page_state(
84 struct page *page,
85 int *delalloc,
86 int *unmapped,
87 int *unwritten)
88{
89 struct buffer_head *bh, *head;
90
91 *delalloc = *unmapped = *unwritten = 0;
92
93 bh = head = page_buffers(page);
94 do {
95 if (buffer_uptodate(bh) && !buffer_mapped(bh))
96 (*unmapped) = 1;
Nathan Scottf51623b2006-03-14 13:26:27 +110097 else if (buffer_unwritten(bh))
98 (*unwritten) = 1;
99 else if (buffer_delay(bh))
100 (*delalloc) = 1;
101 } while ((bh = bh->b_this_page) != head);
102}
103
Christoph Hellwig6214ed42007-09-14 15:23:17 +1000104STATIC struct block_device *
105xfs_find_bdev_for_inode(
Christoph Hellwig046f1682010-04-28 12:28:52 +0000106 struct inode *inode)
Christoph Hellwig6214ed42007-09-14 15:23:17 +1000107{
Christoph Hellwig046f1682010-04-28 12:28:52 +0000108 struct xfs_inode *ip = XFS_I(inode);
Christoph Hellwig6214ed42007-09-14 15:23:17 +1000109 struct xfs_mount *mp = ip->i_mount;
110
Eric Sandeen71ddabb2007-11-23 16:29:42 +1100111 if (XFS_IS_REALTIME_INODE(ip))
Christoph Hellwig6214ed42007-09-14 15:23:17 +1000112 return mp->m_rtdev_targp->bt_bdev;
113 else
114 return mp->m_ddev_targp->bt_bdev;
115}
116
Christoph Hellwig0829c362005-09-02 16:58:49 +1000117/*
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100118 * We're now finished for good with this ioend structure.
119 * Update the page state via the associated buffer_heads,
120 * release holds on the inode and bio, and finally free
121 * up memory. Do not use the ioend after this.
122 */
Christoph Hellwig0829c362005-09-02 16:58:49 +1000123STATIC void
124xfs_destroy_ioend(
125 xfs_ioend_t *ioend)
126{
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100127 struct buffer_head *bh, *next;
Christoph Hellwig583fa582008-12-03 12:20:38 +0100128 struct xfs_inode *ip = XFS_I(ioend->io_inode);
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100129
130 for (bh = ioend->io_buffer_head; bh; bh = next) {
131 next = bh->b_private;
Nathan Scott7d04a332006-06-09 14:58:38 +1000132 bh->b_end_io(bh, !ioend->io_error);
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100133 }
Christoph Hellwig583fa582008-12-03 12:20:38 +0100134
135 /*
136 * Volume managers supporting multiple paths can send back ENODEV
137 * when the final path disappears. In this case continuing to fill
138 * the page cache with dirty data which cannot be written out is
139 * evil, so prevent that.
140 */
141 if (unlikely(ioend->io_error == -ENODEV)) {
142 xfs_do_force_shutdown(ip->i_mount, SHUTDOWN_DEVICE_REQ,
143 __FILE__, __LINE__);
Christoph Hellwigb677c212007-08-29 11:46:28 +1000144 }
Christoph Hellwig583fa582008-12-03 12:20:38 +0100145
Christoph Hellwig25e41b32008-12-03 12:20:39 +0100146 xfs_ioend_wake(ip);
Christoph Hellwig0829c362005-09-02 16:58:49 +1000147 mempool_free(ioend, xfs_ioend_pool);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148}
149
150/*
Dave Chinner932640e2009-10-06 20:29:29 +0000151 * If the end of the current ioend is beyond the current EOF,
152 * return the new EOF value, otherwise zero.
153 */
154STATIC xfs_fsize_t
155xfs_ioend_new_eof(
156 xfs_ioend_t *ioend)
157{
158 xfs_inode_t *ip = XFS_I(ioend->io_inode);
159 xfs_fsize_t isize;
160 xfs_fsize_t bsize;
161
162 bsize = ioend->io_offset + ioend->io_size;
163 isize = MAX(ip->i_size, ip->i_new_size);
164 isize = MIN(isize, bsize);
165 return isize > ip->i_d.di_size ? isize : 0;
166}
167
168/*
Dave Chinner77d7a0c2010-02-17 05:36:29 +0000169 * Update on-disk file size now that data has been written to disk. The
170 * current in-memory file size is i_size. If a write is beyond eof i_new_size
171 * will be the intended file size until i_size is updated. If this write does
172 * not extend all the way to the valid file size then restrict this update to
173 * the end of the write.
174 *
175 * This function does not block as blocking on the inode lock in IO completion
176 * can lead to IO completion order dependency deadlocks.. If it can't get the
177 * inode ilock it will return EAGAIN. Callers must handle this.
Lachlan McIlroyba87ea62007-05-08 13:49:46 +1000178 */
Dave Chinner77d7a0c2010-02-17 05:36:29 +0000179STATIC int
Lachlan McIlroyba87ea62007-05-08 13:49:46 +1000180xfs_setfilesize(
181 xfs_ioend_t *ioend)
182{
Christoph Hellwigb677c212007-08-29 11:46:28 +1000183 xfs_inode_t *ip = XFS_I(ioend->io_inode);
Lachlan McIlroyba87ea62007-05-08 13:49:46 +1000184 xfs_fsize_t isize;
Lachlan McIlroyba87ea62007-05-08 13:49:46 +1000185
Lachlan McIlroyba87ea62007-05-08 13:49:46 +1000186 ASSERT((ip->i_d.di_mode & S_IFMT) == S_IFREG);
187 ASSERT(ioend->io_type != IOMAP_READ);
188
189 if (unlikely(ioend->io_error))
Dave Chinner77d7a0c2010-02-17 05:36:29 +0000190 return 0;
Lachlan McIlroyba87ea62007-05-08 13:49:46 +1000191
Dave Chinner77d7a0c2010-02-17 05:36:29 +0000192 if (!xfs_ilock_nowait(ip, XFS_ILOCK_EXCL))
193 return EAGAIN;
194
Dave Chinner932640e2009-10-06 20:29:29 +0000195 isize = xfs_ioend_new_eof(ioend);
196 if (isize) {
Lachlan McIlroyba87ea62007-05-08 13:49:46 +1000197 ip->i_d.di_size = isize;
Christoph Hellwig66d834e2010-02-15 09:44:49 +0000198 xfs_mark_inode_dirty(ip);
Lachlan McIlroyba87ea62007-05-08 13:49:46 +1000199 }
200
201 xfs_iunlock(ip, XFS_ILOCK_EXCL);
Dave Chinner77d7a0c2010-02-17 05:36:29 +0000202 return 0;
Christoph Hellwig0829c362005-09-02 16:58:49 +1000203}
204
205/*
Dave Chinnerc626d172009-04-06 18:42:11 +0200206 * Schedule IO completion handling on a xfsdatad if this was
207 * the final hold on this ioend. If we are asked to wait,
208 * flush the workqueue.
209 */
210STATIC void
211xfs_finish_ioend(
212 xfs_ioend_t *ioend,
213 int wait)
214{
215 if (atomic_dec_and_test(&ioend->io_remaining)) {
Christoph Hellwig5ec4fab2009-10-30 09:11:47 +0000216 struct workqueue_struct *wq;
Dave Chinnerc626d172009-04-06 18:42:11 +0200217
Christoph Hellwig5ec4fab2009-10-30 09:11:47 +0000218 wq = (ioend->io_type == IOMAP_UNWRITTEN) ?
219 xfsconvertd_workqueue : xfsdatad_workqueue;
Dave Chinnerc626d172009-04-06 18:42:11 +0200220 queue_work(wq, &ioend->io_work);
221 if (wait)
222 flush_workqueue(wq);
223 }
224}
225
226/*
Dave Chinner77d7a0c2010-02-17 05:36:29 +0000227 * IO write completion.
228 */
229STATIC void
230xfs_end_io(
231 struct work_struct *work)
232{
233 xfs_ioend_t *ioend = container_of(work, xfs_ioend_t, io_work);
234 struct xfs_inode *ip = XFS_I(ioend->io_inode);
Dave Chinner69418932010-03-04 00:57:09 +0000235 int error = 0;
Dave Chinner77d7a0c2010-02-17 05:36:29 +0000236
237 /*
238 * For unwritten extents we need to issue transactions to convert a
239 * range to normal written extens after the data I/O has finished.
240 */
241 if (ioend->io_type == IOMAP_UNWRITTEN &&
242 likely(!ioend->io_error && !XFS_FORCED_SHUTDOWN(ip->i_mount))) {
243
244 error = xfs_iomap_write_unwritten(ip, ioend->io_offset,
245 ioend->io_size);
246 if (error)
247 ioend->io_error = error;
248 }
249
250 /*
251 * We might have to update the on-disk file size after extending
252 * writes.
253 */
254 if (ioend->io_type != IOMAP_READ) {
255 error = xfs_setfilesize(ioend);
256 ASSERT(!error || error == EAGAIN);
257 }
258
259 /*
260 * If we didn't complete processing of the ioend, requeue it to the
261 * tail of the workqueue for another attempt later. Otherwise destroy
262 * it.
263 */
264 if (error == EAGAIN) {
265 atomic_inc(&ioend->io_remaining);
266 xfs_finish_ioend(ioend, 0);
267 /* ensure we don't spin on blocked ioends */
268 delay(1);
269 } else
270 xfs_destroy_ioend(ioend);
271}
272
273/*
Christoph Hellwig0829c362005-09-02 16:58:49 +1000274 * Allocate and initialise an IO completion structure.
275 * We need to track unwritten extent write completion here initially.
276 * We'll need to extend this for updating the ondisk inode size later
277 * (vs. incore size).
278 */
279STATIC xfs_ioend_t *
280xfs_alloc_ioend(
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100281 struct inode *inode,
282 unsigned int type)
Christoph Hellwig0829c362005-09-02 16:58:49 +1000283{
284 xfs_ioend_t *ioend;
285
286 ioend = mempool_alloc(xfs_ioend_pool, GFP_NOFS);
287
288 /*
289 * Set the count to 1 initially, which will prevent an I/O
290 * completion callback from happening before we have started
291 * all the I/O from calling the completion routine too early.
292 */
293 atomic_set(&ioend->io_remaining, 1);
Nathan Scott7d04a332006-06-09 14:58:38 +1000294 ioend->io_error = 0;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100295 ioend->io_list = NULL;
296 ioend->io_type = type;
Christoph Hellwigb677c212007-08-29 11:46:28 +1000297 ioend->io_inode = inode;
Christoph Hellwigc1a073b2005-09-05 08:23:35 +1000298 ioend->io_buffer_head = NULL;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100299 ioend->io_buffer_tail = NULL;
Christoph Hellwigb677c212007-08-29 11:46:28 +1000300 atomic_inc(&XFS_I(ioend->io_inode)->i_iocount);
Christoph Hellwig0829c362005-09-02 16:58:49 +1000301 ioend->io_offset = 0;
302 ioend->io_size = 0;
303
Christoph Hellwig5ec4fab2009-10-30 09:11:47 +0000304 INIT_WORK(&ioend->io_work, xfs_end_io);
Christoph Hellwig0829c362005-09-02 16:58:49 +1000305 return ioend;
306}
307
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308STATIC int
309xfs_map_blocks(
310 struct inode *inode,
311 loff_t offset,
312 ssize_t count,
313 xfs_iomap_t *mapp,
314 int flags)
315{
Christoph Hellwig6bd16ff2008-12-03 12:20:32 +0100316 int nmaps = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317
Christoph Hellwig6bd16ff2008-12-03 12:20:32 +0100318 return -xfs_iomap(XFS_I(inode), offset, count, flags, mapp, &nmaps);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319}
320
Christoph Hellwigb8f82a42009-11-14 16:17:22 +0000321STATIC int
Christoph Hellwig1defeac2006-01-11 20:48:33 +1100322xfs_iomap_valid(
Christoph Hellwig8699bb02010-04-28 12:28:54 +0000323 struct inode *inode,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 xfs_iomap_t *iomapp,
Christoph Hellwig1defeac2006-01-11 20:48:33 +1100325 loff_t offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326{
Christoph Hellwig8699bb02010-04-28 12:28:54 +0000327 struct xfs_mount *mp = XFS_I(inode)->i_mount;
328 xfs_off_t iomap_offset = XFS_FSB_TO_B(mp, iomapp->iomap_offset);
329 xfs_off_t iomap_bsize = XFS_FSB_TO_B(mp, iomapp->iomap_bsize);
330
331 return offset >= iomap_offset &&
332 offset < iomap_offset + iomap_bsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333}
334
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100335/*
336 * BIO completion handler for buffered IO.
337 */
Al Viro782e3b32007-10-12 07:17:47 +0100338STATIC void
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100339xfs_end_bio(
340 struct bio *bio,
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100341 int error)
342{
343 xfs_ioend_t *ioend = bio->bi_private;
344
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100345 ASSERT(atomic_read(&bio->bi_cnt) >= 1);
Nathan Scott7d04a332006-06-09 14:58:38 +1000346 ioend->io_error = test_bit(BIO_UPTODATE, &bio->bi_flags) ? 0 : error;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100347
348 /* Toss bio and pass work off to an xfsdatad thread */
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100349 bio->bi_private = NULL;
350 bio->bi_end_io = NULL;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100351 bio_put(bio);
Nathan Scott7d04a332006-06-09 14:58:38 +1000352
David Chinnere927af92007-06-05 16:24:36 +1000353 xfs_finish_ioend(ioend, 0);
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100354}
355
356STATIC void
357xfs_submit_ioend_bio(
Christoph Hellwig06342cf2009-10-30 09:09:15 +0000358 struct writeback_control *wbc,
359 xfs_ioend_t *ioend,
360 struct bio *bio)
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100361{
362 atomic_inc(&ioend->io_remaining);
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100363 bio->bi_private = ioend;
364 bio->bi_end_io = xfs_end_bio;
365
Dave Chinner932640e2009-10-06 20:29:29 +0000366 /*
367 * If the I/O is beyond EOF we mark the inode dirty immediately
368 * but don't update the inode size until I/O completion.
369 */
370 if (xfs_ioend_new_eof(ioend))
Christoph Hellwig66d834e2010-02-15 09:44:49 +0000371 xfs_mark_inode_dirty(XFS_I(ioend->io_inode));
Dave Chinner932640e2009-10-06 20:29:29 +0000372
Christoph Hellwig06342cf2009-10-30 09:09:15 +0000373 submit_bio(wbc->sync_mode == WB_SYNC_ALL ?
374 WRITE_SYNC_PLUG : WRITE, bio);
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100375 ASSERT(!bio_flagged(bio, BIO_EOPNOTSUPP));
376 bio_put(bio);
377}
378
379STATIC struct bio *
380xfs_alloc_ioend_bio(
381 struct buffer_head *bh)
382{
383 struct bio *bio;
384 int nvecs = bio_get_nr_vecs(bh->b_bdev);
385
386 do {
387 bio = bio_alloc(GFP_NOIO, nvecs);
388 nvecs >>= 1;
389 } while (!bio);
390
391 ASSERT(bio->bi_private == NULL);
392 bio->bi_sector = bh->b_blocknr * (bh->b_size >> 9);
393 bio->bi_bdev = bh->b_bdev;
394 bio_get(bio);
395 return bio;
396}
397
398STATIC void
399xfs_start_buffer_writeback(
400 struct buffer_head *bh)
401{
402 ASSERT(buffer_mapped(bh));
403 ASSERT(buffer_locked(bh));
404 ASSERT(!buffer_delay(bh));
405 ASSERT(!buffer_unwritten(bh));
406
407 mark_buffer_async_write(bh);
408 set_buffer_uptodate(bh);
409 clear_buffer_dirty(bh);
410}
411
412STATIC void
413xfs_start_page_writeback(
414 struct page *page,
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100415 int clear_dirty,
416 int buffers)
417{
418 ASSERT(PageLocked(page));
419 ASSERT(!PageWriteback(page));
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100420 if (clear_dirty)
David Chinner92132022006-12-21 10:24:01 +1100421 clear_page_dirty_for_io(page);
422 set_page_writeback(page);
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100423 unlock_page(page);
Fengguang Wu1f7decf2007-10-16 23:30:42 -0700424 /* If no buffers on the page are to be written, finish it here */
425 if (!buffers)
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100426 end_page_writeback(page);
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100427}
428
429static inline int bio_add_buffer(struct bio *bio, struct buffer_head *bh)
430{
431 return bio_add_page(bio, bh->b_page, bh->b_size, bh_offset(bh));
432}
433
434/*
David Chinnerd88992f2006-01-18 13:38:12 +1100435 * Submit all of the bios for all of the ioends we have saved up, covering the
436 * initial writepage page and also any probed pages.
437 *
438 * Because we may have multiple ioends spanning a page, we need to start
439 * writeback on all the buffers before we submit them for I/O. If we mark the
440 * buffers as we got, then we can end up with a page that only has buffers
441 * marked async write and I/O complete on can occur before we mark the other
442 * buffers async write.
443 *
444 * The end result of this is that we trip a bug in end_page_writeback() because
445 * we call it twice for the one page as the code in end_buffer_async_write()
446 * assumes that all buffers on the page are started at the same time.
447 *
448 * The fix is two passes across the ioend list - one to start writeback on the
Nathan Scottc41564b2006-03-29 08:55:14 +1000449 * buffer_heads, and then submit them for I/O on the second pass.
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100450 */
451STATIC void
452xfs_submit_ioend(
Christoph Hellwig06342cf2009-10-30 09:09:15 +0000453 struct writeback_control *wbc,
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100454 xfs_ioend_t *ioend)
455{
David Chinnerd88992f2006-01-18 13:38:12 +1100456 xfs_ioend_t *head = ioend;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100457 xfs_ioend_t *next;
458 struct buffer_head *bh;
459 struct bio *bio;
460 sector_t lastblock = 0;
461
David Chinnerd88992f2006-01-18 13:38:12 +1100462 /* Pass 1 - start writeback */
463 do {
464 next = ioend->io_list;
465 for (bh = ioend->io_buffer_head; bh; bh = bh->b_private) {
466 xfs_start_buffer_writeback(bh);
467 }
468 } while ((ioend = next) != NULL);
469
470 /* Pass 2 - submit I/O */
471 ioend = head;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100472 do {
473 next = ioend->io_list;
474 bio = NULL;
475
476 for (bh = ioend->io_buffer_head; bh; bh = bh->b_private) {
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100477
478 if (!bio) {
479 retry:
480 bio = xfs_alloc_ioend_bio(bh);
481 } else if (bh->b_blocknr != lastblock + 1) {
Christoph Hellwig06342cf2009-10-30 09:09:15 +0000482 xfs_submit_ioend_bio(wbc, ioend, bio);
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100483 goto retry;
484 }
485
486 if (bio_add_buffer(bio, bh) != bh->b_size) {
Christoph Hellwig06342cf2009-10-30 09:09:15 +0000487 xfs_submit_ioend_bio(wbc, ioend, bio);
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100488 goto retry;
489 }
490
491 lastblock = bh->b_blocknr;
492 }
493 if (bio)
Christoph Hellwig06342cf2009-10-30 09:09:15 +0000494 xfs_submit_ioend_bio(wbc, ioend, bio);
David Chinnere927af92007-06-05 16:24:36 +1000495 xfs_finish_ioend(ioend, 0);
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100496 } while ((ioend = next) != NULL);
497}
498
499/*
500 * Cancel submission of all buffer_heads so far in this endio.
501 * Toss the endio too. Only ever called for the initial page
502 * in a writepage request, so only ever one page.
503 */
504STATIC void
505xfs_cancel_ioend(
506 xfs_ioend_t *ioend)
507{
508 xfs_ioend_t *next;
509 struct buffer_head *bh, *next_bh;
510
511 do {
512 next = ioend->io_list;
513 bh = ioend->io_buffer_head;
514 do {
515 next_bh = bh->b_private;
516 clear_buffer_async_write(bh);
517 unlock_buffer(bh);
518 } while ((bh = next_bh) != NULL);
519
Christoph Hellwig25e41b32008-12-03 12:20:39 +0100520 xfs_ioend_wake(XFS_I(ioend->io_inode));
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100521 mempool_free(ioend, xfs_ioend_pool);
522 } while ((ioend = next) != NULL);
523}
524
525/*
526 * Test to see if we've been building up a completion structure for
527 * earlier buffers -- if so, we try to append to this ioend if we
528 * can, otherwise we finish off any current ioend and start another.
529 * Return true if we've finished the given ioend.
530 */
531STATIC void
532xfs_add_to_ioend(
533 struct inode *inode,
534 struct buffer_head *bh,
Christoph Hellwig7336cea2006-01-11 20:49:16 +1100535 xfs_off_t offset,
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100536 unsigned int type,
537 xfs_ioend_t **result,
538 int need_ioend)
539{
540 xfs_ioend_t *ioend = *result;
541
542 if (!ioend || need_ioend || type != ioend->io_type) {
543 xfs_ioend_t *previous = *result;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100544
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100545 ioend = xfs_alloc_ioend(inode, type);
546 ioend->io_offset = offset;
547 ioend->io_buffer_head = bh;
548 ioend->io_buffer_tail = bh;
549 if (previous)
550 previous->io_list = ioend;
551 *result = ioend;
552 } else {
553 ioend->io_buffer_tail->b_private = bh;
554 ioend->io_buffer_tail = bh;
555 }
556
557 bh->b_private = NULL;
558 ioend->io_size += bh->b_size;
559}
560
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561STATIC void
Nathan Scott87cbc492006-03-14 13:26:43 +1100562xfs_map_buffer(
Christoph Hellwig046f1682010-04-28 12:28:52 +0000563 struct inode *inode,
Nathan Scott87cbc492006-03-14 13:26:43 +1100564 struct buffer_head *bh,
565 xfs_iomap_t *mp,
Christoph Hellwig046f1682010-04-28 12:28:52 +0000566 xfs_off_t offset)
Nathan Scott87cbc492006-03-14 13:26:43 +1100567{
568 sector_t bn;
Christoph Hellwig8699bb02010-04-28 12:28:54 +0000569 struct xfs_mount *m = XFS_I(inode)->i_mount;
570 xfs_off_t iomap_offset = XFS_FSB_TO_B(m, mp->iomap_offset);
Christoph Hellwige5131822010-04-28 12:28:55 +0000571 xfs_daddr_t iomap_bn = xfs_fsb_to_db(XFS_I(inode), mp->iomap_bn);
Nathan Scott87cbc492006-03-14 13:26:43 +1100572
Christoph Hellwige5131822010-04-28 12:28:55 +0000573 ASSERT(mp->iomap_bn != HOLESTARTBLOCK);
574 ASSERT(mp->iomap_bn != DELAYSTARTBLOCK);
Nathan Scott87cbc492006-03-14 13:26:43 +1100575
Christoph Hellwige5131822010-04-28 12:28:55 +0000576 bn = (iomap_bn >> (inode->i_blkbits - BBSHIFT)) +
Christoph Hellwig8699bb02010-04-28 12:28:54 +0000577 ((offset - iomap_offset) >> inode->i_blkbits);
Nathan Scott87cbc492006-03-14 13:26:43 +1100578
Christoph Hellwig046f1682010-04-28 12:28:52 +0000579 ASSERT(bn || XFS_IS_REALTIME_INODE(XFS_I(inode)));
Nathan Scott87cbc492006-03-14 13:26:43 +1100580
581 bh->b_blocknr = bn;
582 set_buffer_mapped(bh);
583}
584
585STATIC void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586xfs_map_at_offset(
Christoph Hellwig046f1682010-04-28 12:28:52 +0000587 struct inode *inode,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 struct buffer_head *bh,
Christoph Hellwig046f1682010-04-28 12:28:52 +0000589 xfs_iomap_t *iomapp,
590 xfs_off_t offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591{
Christoph Hellwige5131822010-04-28 12:28:55 +0000592 ASSERT(iomapp->iomap_bn != HOLESTARTBLOCK);
593 ASSERT(iomapp->iomap_bn != DELAYSTARTBLOCK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594
595 lock_buffer(bh);
Christoph Hellwig046f1682010-04-28 12:28:52 +0000596 xfs_map_buffer(inode, bh, iomapp, offset);
597 bh->b_bdev = xfs_find_bdev_for_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 set_buffer_mapped(bh);
599 clear_buffer_delay(bh);
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100600 clear_buffer_unwritten(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601}
602
603/*
Christoph Hellwig6c4fe192006-01-11 20:49:28 +1100604 * Look for a page at index that is suitable for clustering.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 */
606STATIC unsigned int
Christoph Hellwig6c4fe192006-01-11 20:49:28 +1100607xfs_probe_page(
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100608 struct page *page,
Christoph Hellwig6c4fe192006-01-11 20:49:28 +1100609 unsigned int pg_offset,
610 int mapped)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 int ret = 0;
613
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 if (PageWriteback(page))
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100615 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616
617 if (page->mapping && PageDirty(page)) {
618 if (page_has_buffers(page)) {
619 struct buffer_head *bh, *head;
620
621 bh = head = page_buffers(page);
622 do {
Christoph Hellwig6c4fe192006-01-11 20:49:28 +1100623 if (!buffer_uptodate(bh))
624 break;
625 if (mapped != buffer_mapped(bh))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 break;
627 ret += bh->b_size;
628 if (ret >= pg_offset)
629 break;
630 } while ((bh = bh->b_this_page) != head);
631 } else
Christoph Hellwig6c4fe192006-01-11 20:49:28 +1100632 ret = mapped ? 0 : PAGE_CACHE_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 }
634
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 return ret;
636}
637
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100638STATIC size_t
Christoph Hellwig6c4fe192006-01-11 20:49:28 +1100639xfs_probe_cluster(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 struct inode *inode,
641 struct page *startpage,
642 struct buffer_head *bh,
Christoph Hellwig6c4fe192006-01-11 20:49:28 +1100643 struct buffer_head *head,
644 int mapped)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645{
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100646 struct pagevec pvec;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 pgoff_t tindex, tlast, tloff;
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100648 size_t total = 0;
649 int done = 0, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650
651 /* First sum forwards in this page */
652 do {
Eric Sandeen2353e8e2006-02-28 12:30:30 +1100653 if (!buffer_uptodate(bh) || (mapped != buffer_mapped(bh)))
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100654 return total;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 total += bh->b_size;
656 } while ((bh = bh->b_this_page) != head);
657
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100658 /* if we reached the end of the page, sum forwards in following pages */
659 tlast = i_size_read(inode) >> PAGE_CACHE_SHIFT;
660 tindex = startpage->index + 1;
661
662 /* Prune this back to avoid pathological behavior */
663 tloff = min(tlast, startpage->index + 64);
664
665 pagevec_init(&pvec, 0);
666 while (!done && tindex <= tloff) {
667 unsigned len = min_t(pgoff_t, PAGEVEC_SIZE, tlast - tindex + 1);
668
669 if (!pagevec_lookup(&pvec, inode->i_mapping, tindex, len))
670 break;
671
672 for (i = 0; i < pagevec_count(&pvec); i++) {
673 struct page *page = pvec.pages[i];
Christoph Hellwig265c1fa2007-08-16 15:38:19 +1000674 size_t pg_offset, pg_len = 0;
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100675
676 if (tindex == tlast) {
677 pg_offset =
678 i_size_read(inode) & (PAGE_CACHE_SIZE - 1);
Christoph Hellwig1defeac2006-01-11 20:48:33 +1100679 if (!pg_offset) {
680 done = 1;
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100681 break;
Christoph Hellwig1defeac2006-01-11 20:48:33 +1100682 }
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100683 } else
684 pg_offset = PAGE_CACHE_SIZE;
685
Nick Piggin529ae9a2008-08-02 12:01:03 +0200686 if (page->index == tindex && trylock_page(page)) {
Christoph Hellwig265c1fa2007-08-16 15:38:19 +1000687 pg_len = xfs_probe_page(page, pg_offset, mapped);
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100688 unlock_page(page);
689 }
690
Christoph Hellwig265c1fa2007-08-16 15:38:19 +1000691 if (!pg_len) {
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100692 done = 1;
693 break;
694 }
695
Christoph Hellwig265c1fa2007-08-16 15:38:19 +1000696 total += pg_len;
Christoph Hellwig1defeac2006-01-11 20:48:33 +1100697 tindex++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 }
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100699
700 pagevec_release(&pvec);
701 cond_resched();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 }
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100703
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 return total;
705}
706
707/*
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100708 * Test if a given page is suitable for writing as part of an unwritten
709 * or delayed allocate extent.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 */
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100711STATIC int
712xfs_is_delayed_page(
713 struct page *page,
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100714 unsigned int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 if (PageWriteback(page))
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100717 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718
719 if (page->mapping && page_has_buffers(page)) {
720 struct buffer_head *bh, *head;
721 int acceptable = 0;
722
723 bh = head = page_buffers(page);
724 do {
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100725 if (buffer_unwritten(bh))
726 acceptable = (type == IOMAP_UNWRITTEN);
727 else if (buffer_delay(bh))
728 acceptable = (type == IOMAP_DELAY);
David Chinner2ddee842006-03-22 12:47:40 +1100729 else if (buffer_dirty(bh) && buffer_mapped(bh))
David Chinnerdf3c7242007-05-24 15:27:03 +1000730 acceptable = (type == IOMAP_NEW);
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100731 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 } while ((bh = bh->b_this_page) != head);
734
735 if (acceptable)
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100736 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 }
738
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100739 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740}
741
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742/*
743 * Allocate & map buffers for page given the extent map. Write it out.
744 * except for the original page of a writepage, this is called on
745 * delalloc/unwritten pages only, for the original page it is possible
746 * that the page has no mapping at all.
747 */
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100748STATIC int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749xfs_convert_page(
750 struct inode *inode,
751 struct page *page,
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100752 loff_t tindex,
Christoph Hellwig1defeac2006-01-11 20:48:33 +1100753 xfs_iomap_t *mp,
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100754 xfs_ioend_t **ioendp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755 struct writeback_control *wbc,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 int startio,
757 int all_bh)
758{
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100759 struct buffer_head *bh, *head;
Christoph Hellwig9260dc62006-01-11 20:48:47 +1100760 xfs_off_t end_offset;
761 unsigned long p_offset;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100762 unsigned int type;
Nathan Scott24e17b52005-05-05 13:33:20 -0700763 int len, page_dirty;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100764 int count = 0, done = 0, uptodate = 1;
Christoph Hellwig9260dc62006-01-11 20:48:47 +1100765 xfs_off_t offset = page_offset(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100767 if (page->index != tindex)
768 goto fail;
Nick Piggin529ae9a2008-08-02 12:01:03 +0200769 if (!trylock_page(page))
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100770 goto fail;
771 if (PageWriteback(page))
772 goto fail_unlock_page;
773 if (page->mapping != inode->i_mapping)
774 goto fail_unlock_page;
775 if (!xfs_is_delayed_page(page, (*ioendp)->io_type))
776 goto fail_unlock_page;
777
Nathan Scott24e17b52005-05-05 13:33:20 -0700778 /*
779 * page_dirty is initially a count of buffers on the page before
Nathan Scottc41564b2006-03-29 08:55:14 +1000780 * EOF and is decremented as we move each into a cleanable state.
Christoph Hellwig9260dc62006-01-11 20:48:47 +1100781 *
782 * Derivation:
783 *
784 * End offset is the highest offset that this page should represent.
785 * If we are on the last page, (end_offset & (PAGE_CACHE_SIZE - 1))
786 * will evaluate non-zero and be less than PAGE_CACHE_SIZE and
787 * hence give us the correct page_dirty count. On any other page,
788 * it will be zero and in that case we need page_dirty to be the
789 * count of buffers on the page.
Nathan Scott24e17b52005-05-05 13:33:20 -0700790 */
Christoph Hellwig9260dc62006-01-11 20:48:47 +1100791 end_offset = min_t(unsigned long long,
792 (xfs_off_t)(page->index + 1) << PAGE_CACHE_SHIFT,
793 i_size_read(inode));
794
Nathan Scott24e17b52005-05-05 13:33:20 -0700795 len = 1 << inode->i_blkbits;
Christoph Hellwig9260dc62006-01-11 20:48:47 +1100796 p_offset = min_t(unsigned long, end_offset & (PAGE_CACHE_SIZE - 1),
797 PAGE_CACHE_SIZE);
798 p_offset = p_offset ? roundup(p_offset, len) : PAGE_CACHE_SIZE;
799 page_dirty = p_offset / len;
Nathan Scott24e17b52005-05-05 13:33:20 -0700800
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 bh = head = page_buffers(page);
802 do {
Christoph Hellwig9260dc62006-01-11 20:48:47 +1100803 if (offset >= end_offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 break;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100805 if (!buffer_uptodate(bh))
806 uptodate = 0;
807 if (!(PageUptodate(page) || buffer_uptodate(bh))) {
808 done = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 continue;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100810 }
811
Christoph Hellwig9260dc62006-01-11 20:48:47 +1100812 if (buffer_unwritten(bh) || buffer_delay(bh)) {
813 if (buffer_unwritten(bh))
814 type = IOMAP_UNWRITTEN;
815 else
816 type = IOMAP_DELAY;
817
Christoph Hellwig8699bb02010-04-28 12:28:54 +0000818 if (!xfs_iomap_valid(inode, mp, offset)) {
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100819 done = 1;
Christoph Hellwig9260dc62006-01-11 20:48:47 +1100820 continue;
821 }
822
Christoph Hellwige5131822010-04-28 12:28:55 +0000823 ASSERT(mp->iomap_bn != HOLESTARTBLOCK);
824 ASSERT(mp->iomap_bn != DELAYSTARTBLOCK);
Christoph Hellwig9260dc62006-01-11 20:48:47 +1100825
Christoph Hellwig046f1682010-04-28 12:28:52 +0000826 xfs_map_at_offset(inode, bh, mp, offset);
Christoph Hellwig9260dc62006-01-11 20:48:47 +1100827 if (startio) {
Christoph Hellwig7336cea2006-01-11 20:49:16 +1100828 xfs_add_to_ioend(inode, bh, offset,
Christoph Hellwig9260dc62006-01-11 20:48:47 +1100829 type, ioendp, done);
830 } else {
831 set_buffer_dirty(bh);
832 unlock_buffer(bh);
833 mark_buffer_dirty(bh);
834 }
835 page_dirty--;
836 count++;
837 } else {
David Chinnerdf3c7242007-05-24 15:27:03 +1000838 type = IOMAP_NEW;
Christoph Hellwig9260dc62006-01-11 20:48:47 +1100839 if (buffer_mapped(bh) && all_bh && startio) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840 lock_buffer(bh);
Christoph Hellwig7336cea2006-01-11 20:49:16 +1100841 xfs_add_to_ioend(inode, bh, offset,
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100842 type, ioendp, done);
843 count++;
Nathan Scott24e17b52005-05-05 13:33:20 -0700844 page_dirty--;
Christoph Hellwig9260dc62006-01-11 20:48:47 +1100845 } else {
846 done = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 }
Christoph Hellwig7336cea2006-01-11 20:49:16 +1100849 } while (offset += len, (bh = bh->b_this_page) != head);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100851 if (uptodate && bh == head)
852 SetPageUptodate(page);
853
854 if (startio) {
Christoph Hellwigf5e596b2006-01-11 20:49:42 +1100855 if (count) {
David Chinner9fddaca2006-02-07 20:27:24 +1100856 wbc->nr_to_write--;
Wu Fengguang0d995192009-12-03 13:54:25 +0100857 if (wbc->nr_to_write <= 0)
Christoph Hellwigf5e596b2006-01-11 20:49:42 +1100858 done = 1;
Christoph Hellwigf5e596b2006-01-11 20:49:42 +1100859 }
Denys Vlasenkob41759c2008-05-19 16:34:11 +1000860 xfs_start_page_writeback(page, !page_dirty, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861 }
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100862
863 return done;
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100864 fail_unlock_page:
865 unlock_page(page);
866 fail:
867 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868}
869
870/*
871 * Convert & write out a cluster of pages in the same extent as defined
872 * by mp and following the start page.
873 */
874STATIC void
875xfs_cluster_write(
876 struct inode *inode,
877 pgoff_t tindex,
878 xfs_iomap_t *iomapp,
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100879 xfs_ioend_t **ioendp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880 struct writeback_control *wbc,
881 int startio,
882 int all_bh,
883 pgoff_t tlast)
884{
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100885 struct pagevec pvec;
886 int done = 0, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100888 pagevec_init(&pvec, 0);
889 while (!done && tindex <= tlast) {
890 unsigned len = min_t(pgoff_t, PAGEVEC_SIZE, tlast - tindex + 1);
891
892 if (!pagevec_lookup(&pvec, inode->i_mapping, tindex, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893 break;
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100894
895 for (i = 0; i < pagevec_count(&pvec); i++) {
896 done = xfs_convert_page(inode, pvec.pages[i], tindex++,
897 iomapp, ioendp, wbc, startio, all_bh);
898 if (done)
899 break;
900 }
901
902 pagevec_release(&pvec);
903 cond_resched();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904 }
905}
906
Dave Chinner3ed3a432010-03-05 02:00:42 +0000907STATIC void
908xfs_vm_invalidatepage(
909 struct page *page,
910 unsigned long offset)
911{
912 trace_xfs_invalidatepage(page->mapping->host, page, offset);
913 block_invalidatepage(page, offset);
914}
915
916/*
917 * If the page has delalloc buffers on it, we need to punch them out before we
918 * invalidate the page. If we don't, we leave a stale delalloc mapping on the
919 * inode that can trip a BUG() in xfs_get_blocks() later on if a direct IO read
920 * is done on that same region - the delalloc extent is returned when none is
921 * supposed to be there.
922 *
923 * We prevent this by truncating away the delalloc regions on the page before
924 * invalidating it. Because they are delalloc, we can do this without needing a
925 * transaction. Indeed - if we get ENOSPC errors, we have to be able to do this
926 * truncation without a transaction as there is no space left for block
927 * reservation (typically why we see a ENOSPC in writeback).
928 *
929 * This is not a performance critical path, so for now just do the punching a
930 * buffer head at a time.
931 */
932STATIC void
933xfs_aops_discard_page(
934 struct page *page)
935{
936 struct inode *inode = page->mapping->host;
937 struct xfs_inode *ip = XFS_I(inode);
938 struct buffer_head *bh, *head;
939 loff_t offset = page_offset(page);
940 ssize_t len = 1 << inode->i_blkbits;
941
942 if (!xfs_is_delayed_page(page, IOMAP_DELAY))
943 goto out_invalidate;
944
Dave Chinnere8c37532010-03-15 02:36:35 +0000945 if (XFS_FORCED_SHUTDOWN(ip->i_mount))
946 goto out_invalidate;
947
Dave Chinner3ed3a432010-03-05 02:00:42 +0000948 xfs_fs_cmn_err(CE_ALERT, ip->i_mount,
949 "page discard on page %p, inode 0x%llx, offset %llu.",
950 page, ip->i_ino, offset);
951
952 xfs_ilock(ip, XFS_ILOCK_EXCL);
953 bh = head = page_buffers(page);
954 do {
955 int done;
956 xfs_fileoff_t offset_fsb;
957 xfs_bmbt_irec_t imap;
958 int nimaps = 1;
959 int error;
960 xfs_fsblock_t firstblock;
961 xfs_bmap_free_t flist;
962
963 if (!buffer_delay(bh))
964 goto next_buffer;
965
966 offset_fsb = XFS_B_TO_FSBT(ip->i_mount, offset);
967
968 /*
969 * Map the range first and check that it is a delalloc extent
970 * before trying to unmap the range. Otherwise we will be
971 * trying to remove a real extent (which requires a
972 * transaction) or a hole, which is probably a bad idea...
973 */
974 error = xfs_bmapi(NULL, ip, offset_fsb, 1,
975 XFS_BMAPI_ENTIRE, NULL, 0, &imap,
976 &nimaps, NULL, NULL);
977
978 if (error) {
979 /* something screwed, just bail */
Dave Chinnere8c37532010-03-15 02:36:35 +0000980 if (!XFS_FORCED_SHUTDOWN(ip->i_mount)) {
981 xfs_fs_cmn_err(CE_ALERT, ip->i_mount,
982 "page discard failed delalloc mapping lookup.");
983 }
Dave Chinner3ed3a432010-03-05 02:00:42 +0000984 break;
985 }
986 if (!nimaps) {
987 /* nothing there */
988 goto next_buffer;
989 }
990 if (imap.br_startblock != DELAYSTARTBLOCK) {
991 /* been converted, ignore */
992 goto next_buffer;
993 }
994 WARN_ON(imap.br_blockcount == 0);
995
996 /*
997 * Note: while we initialise the firstblock/flist pair, they
998 * should never be used because blocks should never be
999 * allocated or freed for a delalloc extent and hence we need
1000 * don't cancel or finish them after the xfs_bunmapi() call.
1001 */
1002 xfs_bmap_init(&flist, &firstblock);
1003 error = xfs_bunmapi(NULL, ip, offset_fsb, 1, 0, 1, &firstblock,
1004 &flist, NULL, &done);
1005
1006 ASSERT(!flist.xbf_count && !flist.xbf_first);
1007 if (error) {
1008 /* something screwed, just bail */
Dave Chinnere8c37532010-03-15 02:36:35 +00001009 if (!XFS_FORCED_SHUTDOWN(ip->i_mount)) {
1010 xfs_fs_cmn_err(CE_ALERT, ip->i_mount,
Dave Chinner3ed3a432010-03-05 02:00:42 +00001011 "page discard unable to remove delalloc mapping.");
Dave Chinnere8c37532010-03-15 02:36:35 +00001012 }
Dave Chinner3ed3a432010-03-05 02:00:42 +00001013 break;
1014 }
1015next_buffer:
1016 offset += len;
1017
1018 } while ((bh = bh->b_this_page) != head);
1019
1020 xfs_iunlock(ip, XFS_ILOCK_EXCL);
1021out_invalidate:
1022 xfs_vm_invalidatepage(page, 0);
1023 return;
1024}
1025
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026/*
1027 * Calling this without startio set means we are being asked to make a dirty
1028 * page ready for freeing it's buffers. When called with startio set then
1029 * we are coming from writepage.
1030 *
1031 * When called with startio set it is important that we write the WHOLE
1032 * page if possible.
1033 * The bh->b_state's cannot know if any of the blocks or which block for
1034 * that matter are dirty due to mmap writes, and therefore bh uptodate is
Nathan Scottc41564b2006-03-29 08:55:14 +10001035 * only valid if the page itself isn't completely uptodate. Some layers
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036 * may clear the page dirty flag prior to calling write page, under the
1037 * assumption the entire page will be written out; by not writing out the
1038 * whole page the page can be reused before all valid dirty data is
1039 * written out. Note: in the case of a page that has been dirty'd by
1040 * mapwrite and but partially setup by block_prepare_write the
1041 * bh->b_states's will not agree and only ones setup by BPW/BCW will have
1042 * valid state, thus the whole page must be written out thing.
1043 */
1044
1045STATIC int
1046xfs_page_state_convert(
1047 struct inode *inode,
1048 struct page *page,
1049 struct writeback_control *wbc,
1050 int startio,
1051 int unmapped) /* also implies page uptodate */
1052{
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +11001053 struct buffer_head *bh, *head;
Christoph Hellwig1defeac2006-01-11 20:48:33 +11001054 xfs_iomap_t iomap;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +11001055 xfs_ioend_t *ioend = NULL, *iohead = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056 loff_t offset;
1057 unsigned long p_offset = 0;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +11001058 unsigned int type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059 __uint64_t end_offset;
1060 pgoff_t end_index, last_index, tlast;
Christoph Hellwigd5cb48a2006-01-11 20:49:02 +11001061 ssize_t size, len;
1062 int flags, err, iomap_valid = 0, uptodate = 1;
Nathan Scott82721452006-04-11 15:10:55 +10001063 int page_dirty, count = 0;
1064 int trylock = 0;
Christoph Hellwig6c4fe192006-01-11 20:49:28 +11001065 int all_bh = unmapped;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066
Nathan Scott82721452006-04-11 15:10:55 +10001067 if (startio) {
1068 if (wbc->sync_mode == WB_SYNC_NONE && wbc->nonblocking)
1069 trylock |= BMAPI_TRYLOCK;
1070 }
Daniel Moore3ba08152005-05-05 13:31:34 -07001071
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072 /* Is this page beyond the end of the file? */
1073 offset = i_size_read(inode);
1074 end_index = offset >> PAGE_CACHE_SHIFT;
1075 last_index = (offset - 1) >> PAGE_CACHE_SHIFT;
1076 if (page->index >= end_index) {
1077 if ((page->index >= end_index + 1) ||
1078 !(i_size_read(inode) & (PAGE_CACHE_SIZE - 1))) {
Nathan Scott19d5bcf2005-11-02 15:14:09 +11001079 if (startio)
1080 unlock_page(page);
1081 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082 }
1083 }
1084
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085 /*
Nathan Scott24e17b52005-05-05 13:33:20 -07001086 * page_dirty is initially a count of buffers on the page before
Nathan Scottc41564b2006-03-29 08:55:14 +10001087 * EOF and is decremented as we move each into a cleanable state.
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +11001088 *
1089 * Derivation:
1090 *
1091 * End offset is the highest offset that this page should represent.
1092 * If we are on the last page, (end_offset & (PAGE_CACHE_SIZE - 1))
1093 * will evaluate non-zero and be less than PAGE_CACHE_SIZE and
1094 * hence give us the correct page_dirty count. On any other page,
1095 * it will be zero and in that case we need page_dirty to be the
1096 * count of buffers on the page.
1097 */
1098 end_offset = min_t(unsigned long long,
1099 (xfs_off_t)(page->index + 1) << PAGE_CACHE_SHIFT, offset);
Nathan Scott24e17b52005-05-05 13:33:20 -07001100 len = 1 << inode->i_blkbits;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +11001101 p_offset = min_t(unsigned long, end_offset & (PAGE_CACHE_SIZE - 1),
1102 PAGE_CACHE_SIZE);
1103 p_offset = p_offset ? roundup(p_offset, len) : PAGE_CACHE_SIZE;
Nathan Scott24e17b52005-05-05 13:33:20 -07001104 page_dirty = p_offset / len;
1105
Nathan Scott24e17b52005-05-05 13:33:20 -07001106 bh = head = page_buffers(page);
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +11001107 offset = page_offset(page);
David Chinnerdf3c7242007-05-24 15:27:03 +10001108 flags = BMAPI_READ;
1109 type = IOMAP_NEW;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +11001110
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +11001111 /* TODO: cleanup count and page_dirty */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112
1113 do {
1114 if (offset >= end_offset)
1115 break;
1116 if (!buffer_uptodate(bh))
1117 uptodate = 0;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +11001118 if (!(PageUptodate(page) || buffer_uptodate(bh)) && !startio) {
Christoph Hellwig1defeac2006-01-11 20:48:33 +11001119 /*
1120 * the iomap is actually still valid, but the ioend
1121 * isn't. shouldn't happen too often.
1122 */
1123 iomap_valid = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124 continue;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +11001125 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126
Christoph Hellwig1defeac2006-01-11 20:48:33 +11001127 if (iomap_valid)
Christoph Hellwig8699bb02010-04-28 12:28:54 +00001128 iomap_valid = xfs_iomap_valid(inode, &iomap, offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129
1130 /*
1131 * First case, map an unwritten extent and prepare for
1132 * extent state conversion transaction on completion.
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +11001133 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134 * Second case, allocate space for a delalloc buffer.
1135 * We can return EAGAIN here in the release page case.
Christoph Hellwigd5cb48a2006-01-11 20:49:02 +11001136 *
1137 * Third case, an unmapped buffer was found, and we are
1138 * in a path where we need to write the whole page out.
David Chinnerdf3c7242007-05-24 15:27:03 +10001139 */
Christoph Hellwigd5cb48a2006-01-11 20:49:02 +11001140 if (buffer_unwritten(bh) || buffer_delay(bh) ||
1141 ((buffer_uptodate(bh) || PageUptodate(page)) &&
1142 !buffer_mapped(bh) && (unmapped || startio))) {
David Chinnereffd1202007-06-18 16:49:58 +10001143 int new_ioend = 0;
1144
David Chinnerdf3c7242007-05-24 15:27:03 +10001145 /*
Christoph Hellwig6c4fe192006-01-11 20:49:28 +11001146 * Make sure we don't use a read-only iomap
1147 */
David Chinnerdf3c7242007-05-24 15:27:03 +10001148 if (flags == BMAPI_READ)
Christoph Hellwig6c4fe192006-01-11 20:49:28 +11001149 iomap_valid = 0;
1150
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +11001151 if (buffer_unwritten(bh)) {
1152 type = IOMAP_UNWRITTEN;
Nathan Scott82721452006-04-11 15:10:55 +10001153 flags = BMAPI_WRITE | BMAPI_IGNSTATE;
Christoph Hellwigd5cb48a2006-01-11 20:49:02 +11001154 } else if (buffer_delay(bh)) {
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +11001155 type = IOMAP_DELAY;
Nathan Scott82721452006-04-11 15:10:55 +10001156 flags = BMAPI_ALLOCATE | trylock;
Christoph Hellwigd5cb48a2006-01-11 20:49:02 +11001157 } else {
Christoph Hellwig6c4fe192006-01-11 20:49:28 +11001158 type = IOMAP_NEW;
Nathan Scott82721452006-04-11 15:10:55 +10001159 flags = BMAPI_WRITE | BMAPI_MMAP;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +11001160 }
1161
Christoph Hellwig1defeac2006-01-11 20:48:33 +11001162 if (!iomap_valid) {
David Chinnereffd1202007-06-18 16:49:58 +10001163 /*
1164 * if we didn't have a valid mapping then we
1165 * need to ensure that we put the new mapping
1166 * in a new ioend structure. This needs to be
1167 * done to ensure that the ioends correctly
1168 * reflect the block mappings at io completion
1169 * for unwritten extent conversion.
1170 */
1171 new_ioend = 1;
Christoph Hellwig6c4fe192006-01-11 20:49:28 +11001172 if (type == IOMAP_NEW) {
1173 size = xfs_probe_cluster(inode,
1174 page, bh, head, 0);
Christoph Hellwigd5cb48a2006-01-11 20:49:02 +11001175 } else {
1176 size = len;
1177 }
1178
1179 err = xfs_map_blocks(inode, offset, size,
1180 &iomap, flags);
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +11001181 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182 goto error;
Christoph Hellwig8699bb02010-04-28 12:28:54 +00001183 iomap_valid = xfs_iomap_valid(inode, &iomap, offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184 }
Christoph Hellwig1defeac2006-01-11 20:48:33 +11001185 if (iomap_valid) {
Christoph Hellwig046f1682010-04-28 12:28:52 +00001186 xfs_map_at_offset(inode, bh, &iomap, offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187 if (startio) {
Christoph Hellwig7336cea2006-01-11 20:49:16 +11001188 xfs_add_to_ioend(inode, bh, offset,
Christoph Hellwig1defeac2006-01-11 20:48:33 +11001189 type, &ioend,
David Chinnereffd1202007-06-18 16:49:58 +10001190 new_ioend);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191 } else {
1192 set_buffer_dirty(bh);
1193 unlock_buffer(bh);
1194 mark_buffer_dirty(bh);
1195 }
1196 page_dirty--;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +11001197 count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198 }
Christoph Hellwigd5cb48a2006-01-11 20:49:02 +11001199 } else if (buffer_uptodate(bh) && startio) {
Christoph Hellwig6c4fe192006-01-11 20:49:28 +11001200 /*
1201 * we got here because the buffer is already mapped.
1202 * That means it must already have extents allocated
1203 * underneath it. Map the extent by reading it.
1204 */
David Chinnerdf3c7242007-05-24 15:27:03 +10001205 if (!iomap_valid || flags != BMAPI_READ) {
Christoph Hellwig6c4fe192006-01-11 20:49:28 +11001206 flags = BMAPI_READ;
1207 size = xfs_probe_cluster(inode, page, bh,
1208 head, 1);
1209 err = xfs_map_blocks(inode, offset, size,
1210 &iomap, flags);
1211 if (err)
1212 goto error;
Christoph Hellwig8699bb02010-04-28 12:28:54 +00001213 iomap_valid = xfs_iomap_valid(inode, &iomap, offset);
Christoph Hellwig6c4fe192006-01-11 20:49:28 +11001214 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215
David Chinnerdf3c7242007-05-24 15:27:03 +10001216 /*
1217 * We set the type to IOMAP_NEW in case we are doing a
1218 * small write at EOF that is extending the file but
1219 * without needing an allocation. We need to update the
1220 * file size on I/O completion in this case so it is
1221 * the same case as having just allocated a new extent
1222 * that we are writing into for the first time.
1223 */
1224 type = IOMAP_NEW;
Nick Pigginca5de402008-08-02 12:02:13 +02001225 if (trylock_buffer(bh)) {
Christoph Hellwigd5cb48a2006-01-11 20:49:02 +11001226 ASSERT(buffer_mapped(bh));
Christoph Hellwig6c4fe192006-01-11 20:49:28 +11001227 if (iomap_valid)
1228 all_bh = 1;
Christoph Hellwig7336cea2006-01-11 20:49:16 +11001229 xfs_add_to_ioend(inode, bh, offset, type,
Christoph Hellwigd5cb48a2006-01-11 20:49:02 +11001230 &ioend, !iomap_valid);
1231 page_dirty--;
1232 count++;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +11001233 } else {
Christoph Hellwig1defeac2006-01-11 20:48:33 +11001234 iomap_valid = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235 }
Christoph Hellwigd5cb48a2006-01-11 20:49:02 +11001236 } else if ((buffer_uptodate(bh) || PageUptodate(page)) &&
1237 (unmapped || startio)) {
1238 iomap_valid = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239 }
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +11001240
1241 if (!iohead)
1242 iohead = ioend;
1243
1244 } while (offset += len, ((bh = bh->b_this_page) != head));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245
1246 if (uptodate && bh == head)
1247 SetPageUptodate(page);
1248
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +11001249 if (startio)
Denys Vlasenkob41759c2008-05-19 16:34:11 +10001250 xfs_start_page_writeback(page, 1, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251
Christoph Hellwig1defeac2006-01-11 20:48:33 +11001252 if (ioend && iomap_valid) {
Christoph Hellwig8699bb02010-04-28 12:28:54 +00001253 struct xfs_mount *m = XFS_I(inode)->i_mount;
1254 xfs_off_t iomap_offset = XFS_FSB_TO_B(m, iomap.iomap_offset);
1255 xfs_off_t iomap_bsize = XFS_FSB_TO_B(m, iomap.iomap_bsize);
1256
1257 offset = (iomap_offset + iomap_bsize - 1) >>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258 PAGE_CACHE_SHIFT;
Nathan Scott775bf6c2005-05-05 13:33:01 -07001259 tlast = min_t(pgoff_t, offset, last_index);
Christoph Hellwig1defeac2006-01-11 20:48:33 +11001260 xfs_cluster_write(inode, page->index + 1, &iomap, &ioend,
Christoph Hellwig6c4fe192006-01-11 20:49:28 +11001261 wbc, startio, all_bh, tlast);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262 }
1263
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +11001264 if (iohead)
Christoph Hellwig06342cf2009-10-30 09:09:15 +00001265 xfs_submit_ioend(wbc, iohead);
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +11001266
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267 return page_dirty;
1268
1269error:
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +11001270 if (iohead)
1271 xfs_cancel_ioend(iohead);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272
1273 /*
1274 * If it's delalloc and we have nowhere to put it,
1275 * throw it away, unless the lower layers told
1276 * us to try again.
1277 */
1278 if (err != -EAGAIN) {
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +11001279 if (!unmapped)
Dave Chinner3ed3a432010-03-05 02:00:42 +00001280 xfs_aops_discard_page(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281 ClearPageUptodate(page);
1282 }
1283 return err;
1284}
1285
Nathan Scottf51623b2006-03-14 13:26:27 +11001286/*
1287 * writepage: Called from one of two places:
1288 *
1289 * 1. we are flushing a delalloc buffer head.
1290 *
1291 * 2. we are writing out a dirty page. Typically the page dirty
1292 * state is cleared before we get here. In this case is it
1293 * conceivable we have no buffer heads.
1294 *
1295 * For delalloc space on the page we need to allocate space and
1296 * flush it. For unmapped buffer heads on the page we should
1297 * allocate space if the page is uptodate. For any other dirty
1298 * buffer heads on the page we should flush them.
1299 *
1300 * If we detect that a transaction would be required to flush
1301 * the page, we have to check the process flags first, if we
1302 * are already in a transaction or disk I/O during allocations
1303 * is off, we need to fail the writepage and redirty the page.
1304 */
1305
1306STATIC int
Nathan Scotte4c573b2006-03-14 13:54:26 +11001307xfs_vm_writepage(
Nathan Scottf51623b2006-03-14 13:26:27 +11001308 struct page *page,
1309 struct writeback_control *wbc)
1310{
1311 int error;
1312 int need_trans;
1313 int delalloc, unmapped, unwritten;
1314 struct inode *inode = page->mapping->host;
1315
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001316 trace_xfs_writepage(inode, page, 0);
Nathan Scottf51623b2006-03-14 13:26:27 +11001317
1318 /*
1319 * We need a transaction if:
1320 * 1. There are delalloc buffers on the page
1321 * 2. The page is uptodate and we have unmapped buffers
1322 * 3. The page is uptodate and we have no buffers
1323 * 4. There are unwritten buffers on the page
1324 */
1325
1326 if (!page_has_buffers(page)) {
1327 unmapped = 1;
1328 need_trans = 1;
1329 } else {
1330 xfs_count_page_state(page, &delalloc, &unmapped, &unwritten);
1331 if (!PageUptodate(page))
1332 unmapped = 0;
1333 need_trans = delalloc + unmapped + unwritten;
1334 }
1335
1336 /*
1337 * If we need a transaction and the process flags say
1338 * we are already in a transaction, or no IO is allowed
1339 * then mark the page dirty again and leave the page
1340 * as is.
1341 */
Nathan Scott59c1b082006-06-09 14:59:13 +10001342 if (current_test_flags(PF_FSTRANS) && need_trans)
Nathan Scottf51623b2006-03-14 13:26:27 +11001343 goto out_fail;
1344
1345 /*
1346 * Delay hooking up buffer heads until we have
1347 * made our go/no-go decision.
1348 */
1349 if (!page_has_buffers(page))
1350 create_empty_buffers(page, 1 << inode->i_blkbits, 0);
1351
Eric Sandeenc8a40512009-07-31 00:02:17 -05001352
1353 /*
1354 * VM calculation for nr_to_write seems off. Bump it way
1355 * up, this gets simple streaming writes zippy again.
1356 * To be reviewed again after Jens' writeback changes.
1357 */
1358 wbc->nr_to_write *= 4;
1359
Nathan Scottf51623b2006-03-14 13:26:27 +11001360 /*
1361 * Convert delayed allocate, unwritten or unmapped space
1362 * to real space and flush out to disk.
1363 */
1364 error = xfs_page_state_convert(inode, page, wbc, 1, unmapped);
1365 if (error == -EAGAIN)
1366 goto out_fail;
1367 if (unlikely(error < 0))
1368 goto out_unlock;
1369
1370 return 0;
1371
1372out_fail:
1373 redirty_page_for_writepage(wbc, page);
1374 unlock_page(page);
1375 return 0;
1376out_unlock:
1377 unlock_page(page);
1378 return error;
1379}
1380
Nathan Scott7d4fb402006-06-09 15:27:16 +10001381STATIC int
1382xfs_vm_writepages(
1383 struct address_space *mapping,
1384 struct writeback_control *wbc)
1385{
Christoph Hellwigb3aea4e2007-08-29 11:44:37 +10001386 xfs_iflags_clear(XFS_I(mapping->host), XFS_ITRUNCATED);
Nathan Scott7d4fb402006-06-09 15:27:16 +10001387 return generic_writepages(mapping, wbc);
1388}
1389
Nathan Scottf51623b2006-03-14 13:26:27 +11001390/*
1391 * Called to move a page into cleanable state - and from there
1392 * to be released. Possibly the page is already clean. We always
1393 * have buffer heads in this call.
1394 *
1395 * Returns 0 if the page is ok to release, 1 otherwise.
1396 *
1397 * Possible scenarios are:
1398 *
1399 * 1. We are being called to release a page which has been written
1400 * to via regular I/O. buffer heads will be dirty and possibly
1401 * delalloc. If no delalloc buffer heads in this case then we
1402 * can just return zero.
1403 *
1404 * 2. We are called to release a page which has been written via
1405 * mmap, all we need to do is ensure there is no delalloc
1406 * state in the buffer heads, if not we can let the caller
1407 * free them and we should come back later via writepage.
1408 */
1409STATIC int
Nathan Scott238f4c52006-03-17 17:26:25 +11001410xfs_vm_releasepage(
Nathan Scottf51623b2006-03-14 13:26:27 +11001411 struct page *page,
1412 gfp_t gfp_mask)
1413{
1414 struct inode *inode = page->mapping->host;
1415 int dirty, delalloc, unmapped, unwritten;
1416 struct writeback_control wbc = {
1417 .sync_mode = WB_SYNC_ALL,
1418 .nr_to_write = 1,
1419 };
1420
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001421 trace_xfs_releasepage(inode, page, 0);
Nathan Scottf51623b2006-03-14 13:26:27 +11001422
Nathan Scott238f4c52006-03-17 17:26:25 +11001423 if (!page_has_buffers(page))
1424 return 0;
1425
Nathan Scottf51623b2006-03-14 13:26:27 +11001426 xfs_count_page_state(page, &delalloc, &unmapped, &unwritten);
1427 if (!delalloc && !unwritten)
1428 goto free_buffers;
1429
1430 if (!(gfp_mask & __GFP_FS))
1431 return 0;
1432
1433 /* If we are already inside a transaction or the thread cannot
1434 * do I/O, we cannot release this page.
1435 */
Nathan Scott59c1b082006-06-09 14:59:13 +10001436 if (current_test_flags(PF_FSTRANS))
Nathan Scottf51623b2006-03-14 13:26:27 +11001437 return 0;
1438
1439 /*
1440 * Convert delalloc space to real space, do not flush the
1441 * data out to disk, that will be done by the caller.
1442 * Never need to allocate space here - we will always
1443 * come back to writepage in that case.
1444 */
1445 dirty = xfs_page_state_convert(inode, page, &wbc, 0, 0);
1446 if (dirty == 0 && !unwritten)
1447 goto free_buffers;
1448 return 0;
1449
1450free_buffers:
1451 return try_to_free_buffers(page);
1452}
1453
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454STATIC int
Nathan Scottc2536662006-03-29 10:44:40 +10001455__xfs_get_blocks(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456 struct inode *inode,
1457 sector_t iblock,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458 struct buffer_head *bh_result,
1459 int create,
1460 int direct,
1461 bmapi_flags_t flags)
1462{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463 xfs_iomap_t iomap;
Nathan Scottfdc7ed72005-11-02 15:13:13 +11001464 xfs_off_t offset;
1465 ssize_t size;
Nathan Scottc2536662006-03-29 10:44:40 +10001466 int niomap = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468
Nathan Scottfdc7ed72005-11-02 15:13:13 +11001469 offset = (xfs_off_t)iblock << inode->i_blkbits;
Nathan Scottc2536662006-03-29 10:44:40 +10001470 ASSERT(bh_result->b_size >= (1 << inode->i_blkbits));
1471 size = bh_result->b_size;
Lachlan McIlroy364f3582008-09-17 16:50:14 +10001472
1473 if (!create && direct && offset >= i_size_read(inode))
1474 return 0;
1475
Lachlan McIlroy541d7d32007-10-11 17:34:33 +10001476 error = xfs_iomap(XFS_I(inode), offset, size,
Nathan Scott67fcaa72006-06-09 17:00:52 +10001477 create ? flags : BMAPI_READ, &iomap, &niomap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478 if (error)
1479 return -error;
Nathan Scottc2536662006-03-29 10:44:40 +10001480 if (niomap == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481 return 0;
1482
Christoph Hellwige5131822010-04-28 12:28:55 +00001483 if (iomap.iomap_bn != HOLESTARTBLOCK &&
1484 iomap.iomap_bn != DELAYSTARTBLOCK) {
Nathan Scott87cbc492006-03-14 13:26:43 +11001485 /*
1486 * For unwritten extents do not report a disk address on
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487 * the read case (treat as if we're reading into a hole).
1488 */
Christoph Hellwig046f1682010-04-28 12:28:52 +00001489 if (create || !(iomap.iomap_flags & IOMAP_UNWRITTEN))
1490 xfs_map_buffer(inode, bh_result, &iomap, offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491 if (create && (iomap.iomap_flags & IOMAP_UNWRITTEN)) {
1492 if (direct)
1493 bh_result->b_private = inode;
1494 set_buffer_unwritten(bh_result);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495 }
1496 }
1497
Nathan Scottc2536662006-03-29 10:44:40 +10001498 /*
1499 * If this is a realtime file, data may be on a different device.
1500 * to that pointed to from the buffer_head b_bdev currently.
1501 */
Christoph Hellwig046f1682010-04-28 12:28:52 +00001502 bh_result->b_bdev = xfs_find_bdev_for_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503
Nathan Scottc2536662006-03-29 10:44:40 +10001504 /*
David Chinner549054a2007-02-10 18:36:35 +11001505 * If we previously allocated a block out beyond eof and we are now
1506 * coming back to use it then we will need to flag it as new even if it
1507 * has a disk address.
1508 *
1509 * With sub-block writes into unwritten extents we also need to mark
1510 * the buffer as new so that the unwritten parts of the buffer gets
1511 * correctly zeroed.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512 */
1513 if (create &&
1514 ((!buffer_mapped(bh_result) && !buffer_uptodate(bh_result)) ||
David Chinner549054a2007-02-10 18:36:35 +11001515 (offset >= i_size_read(inode)) ||
1516 (iomap.iomap_flags & (IOMAP_NEW|IOMAP_UNWRITTEN))))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517 set_buffer_new(bh_result);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518
Christoph Hellwige5131822010-04-28 12:28:55 +00001519 if (iomap.iomap_bn == DELAYSTARTBLOCK) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520 BUG_ON(direct);
1521 if (create) {
1522 set_buffer_uptodate(bh_result);
1523 set_buffer_mapped(bh_result);
1524 set_buffer_delay(bh_result);
1525 }
1526 }
1527
Nathan Scottc2536662006-03-29 10:44:40 +10001528 if (direct || size > (1 << inode->i_blkbits)) {
Christoph Hellwig8699bb02010-04-28 12:28:54 +00001529 struct xfs_mount *mp = XFS_I(inode)->i_mount;
1530 xfs_off_t iomap_offset = XFS_FSB_TO_B(mp, iomap.iomap_offset);
1531 xfs_off_t iomap_delta = offset - iomap_offset;
1532 xfs_off_t iomap_bsize = XFS_FSB_TO_B(mp, iomap.iomap_bsize);
Christoph Hellwig9563b3d2010-04-28 12:28:53 +00001533
Christoph Hellwig8699bb02010-04-28 12:28:54 +00001534 ASSERT(iomap_bsize - iomap_delta > 0);
Nathan Scottfdc7ed72005-11-02 15:13:13 +11001535 offset = min_t(xfs_off_t,
Christoph Hellwig8699bb02010-04-28 12:28:54 +00001536 iomap_bsize - iomap_delta, size);
Nathan Scottc2536662006-03-29 10:44:40 +10001537 bh_result->b_size = (ssize_t)min_t(xfs_off_t, LONG_MAX, offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538 }
1539
1540 return 0;
1541}
1542
1543int
Nathan Scottc2536662006-03-29 10:44:40 +10001544xfs_get_blocks(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545 struct inode *inode,
1546 sector_t iblock,
1547 struct buffer_head *bh_result,
1548 int create)
1549{
Nathan Scottc2536662006-03-29 10:44:40 +10001550 return __xfs_get_blocks(inode, iblock,
Badari Pulavartyfa30bd02006-03-26 01:38:01 -08001551 bh_result, create, 0, BMAPI_WRITE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552}
1553
1554STATIC int
Nathan Scotte4c573b2006-03-14 13:54:26 +11001555xfs_get_blocks_direct(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556 struct inode *inode,
1557 sector_t iblock,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558 struct buffer_head *bh_result,
1559 int create)
1560{
Nathan Scottc2536662006-03-29 10:44:40 +10001561 return __xfs_get_blocks(inode, iblock,
Badari Pulavarty1d8fa7a2006-03-26 01:38:02 -08001562 bh_result, create, 1, BMAPI_WRITE|BMAPI_DIRECT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563}
1564
Christoph Hellwigf0973862005-09-05 08:22:52 +10001565STATIC void
Nathan Scotte4c573b2006-03-14 13:54:26 +11001566xfs_end_io_direct(
Christoph Hellwigf0973862005-09-05 08:22:52 +10001567 struct kiocb *iocb,
1568 loff_t offset,
1569 ssize_t size,
1570 void *private)
1571{
1572 xfs_ioend_t *ioend = iocb->private;
1573
1574 /*
1575 * Non-NULL private data means we need to issue a transaction to
1576 * convert a range from unwritten to written extents. This needs
Nathan Scottc41564b2006-03-29 08:55:14 +10001577 * to happen from process context but aio+dio I/O completion
Christoph Hellwigf0973862005-09-05 08:22:52 +10001578 * happens from irq context so we need to defer it to a workqueue.
Nathan Scottc41564b2006-03-29 08:55:14 +10001579 * This is not necessary for synchronous direct I/O, but we do
Christoph Hellwigf0973862005-09-05 08:22:52 +10001580 * it anyway to keep the code uniform and simpler.
1581 *
David Chinnere927af92007-06-05 16:24:36 +10001582 * Well, if only it were that simple. Because synchronous direct I/O
1583 * requires extent conversion to occur *before* we return to userspace,
1584 * we have to wait for extent conversion to complete. Look at the
1585 * iocb that has been passed to us to determine if this is AIO or
1586 * not. If it is synchronous, tell xfs_finish_ioend() to kick the
1587 * workqueue and wait for it to complete.
1588 *
Christoph Hellwigf0973862005-09-05 08:22:52 +10001589 * The core direct I/O code might be changed to always call the
1590 * completion handler in the future, in which case all this can
1591 * go away.
1592 */
Lachlan McIlroyba87ea62007-05-08 13:49:46 +10001593 ioend->io_offset = offset;
1594 ioend->io_size = size;
1595 if (ioend->io_type == IOMAP_READ) {
David Chinnere927af92007-06-05 16:24:36 +10001596 xfs_finish_ioend(ioend, 0);
Lachlan McIlroyba87ea62007-05-08 13:49:46 +10001597 } else if (private && size > 0) {
David Chinnere927af92007-06-05 16:24:36 +10001598 xfs_finish_ioend(ioend, is_sync_kiocb(iocb));
Christoph Hellwigf0973862005-09-05 08:22:52 +10001599 } else {
Lachlan McIlroyba87ea62007-05-08 13:49:46 +10001600 /*
1601 * A direct I/O write ioend starts it's life in unwritten
1602 * state in case they map an unwritten extent. This write
1603 * didn't map an unwritten extent so switch it's completion
1604 * handler.
1605 */
Christoph Hellwig5ec4fab2009-10-30 09:11:47 +00001606 ioend->io_type = IOMAP_NEW;
David Chinnere927af92007-06-05 16:24:36 +10001607 xfs_finish_ioend(ioend, 0);
Christoph Hellwigf0973862005-09-05 08:22:52 +10001608 }
1609
1610 /*
Nathan Scottc41564b2006-03-29 08:55:14 +10001611 * blockdev_direct_IO can return an error even after the I/O
Christoph Hellwigf0973862005-09-05 08:22:52 +10001612 * completion handler was called. Thus we need to protect
1613 * against double-freeing.
1614 */
1615 iocb->private = NULL;
1616}
1617
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618STATIC ssize_t
Nathan Scotte4c573b2006-03-14 13:54:26 +11001619xfs_vm_direct_IO(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620 int rw,
1621 struct kiocb *iocb,
1622 const struct iovec *iov,
1623 loff_t offset,
1624 unsigned long nr_segs)
1625{
1626 struct file *file = iocb->ki_filp;
1627 struct inode *inode = file->f_mapping->host;
Christoph Hellwig6214ed42007-09-14 15:23:17 +10001628 struct block_device *bdev;
Christoph Hellwigf0973862005-09-05 08:22:52 +10001629 ssize_t ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630
Christoph Hellwig046f1682010-04-28 12:28:52 +00001631 bdev = xfs_find_bdev_for_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632
Christoph Hellwig5fe878a2009-12-15 16:47:50 -08001633 iocb->private = xfs_alloc_ioend(inode, rw == WRITE ?
1634 IOMAP_UNWRITTEN : IOMAP_READ);
1635
1636 ret = blockdev_direct_IO_no_locking(rw, iocb, inode, bdev, iov,
1637 offset, nr_segs,
1638 xfs_get_blocks_direct,
1639 xfs_end_io_direct);
Christoph Hellwigf0973862005-09-05 08:22:52 +10001640
Zach Brown8459d862006-12-10 02:21:05 -08001641 if (unlikely(ret != -EIOCBQUEUED && iocb->private))
Christoph Hellwigf0973862005-09-05 08:22:52 +10001642 xfs_destroy_ioend(iocb->private);
1643 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644}
1645
Nathan Scottf51623b2006-03-14 13:26:27 +11001646STATIC int
Nick Piggind79689c2007-10-16 01:25:06 -07001647xfs_vm_write_begin(
Nathan Scottf51623b2006-03-14 13:26:27 +11001648 struct file *file,
Nick Piggind79689c2007-10-16 01:25:06 -07001649 struct address_space *mapping,
1650 loff_t pos,
1651 unsigned len,
1652 unsigned flags,
1653 struct page **pagep,
1654 void **fsdata)
Nathan Scottf51623b2006-03-14 13:26:27 +11001655{
Nick Piggind79689c2007-10-16 01:25:06 -07001656 *pagep = NULL;
1657 return block_write_begin(file, mapping, pos, len, flags, pagep, fsdata,
1658 xfs_get_blocks);
Nathan Scottf51623b2006-03-14 13:26:27 +11001659}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660
1661STATIC sector_t
Nathan Scotte4c573b2006-03-14 13:54:26 +11001662xfs_vm_bmap(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663 struct address_space *mapping,
1664 sector_t block)
1665{
1666 struct inode *inode = (struct inode *)mapping->host;
Christoph Hellwig739bfb22007-08-29 10:58:01 +10001667 struct xfs_inode *ip = XFS_I(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668
Lachlan McIlroycf441ee2008-02-07 16:42:19 +11001669 xfs_itrace_entry(XFS_I(inode));
Christoph Hellwig126468b2008-03-06 13:44:57 +11001670 xfs_ilock(ip, XFS_IOLOCK_SHARED);
Christoph Hellwig739bfb22007-08-29 10:58:01 +10001671 xfs_flush_pages(ip, (xfs_off_t)0, -1, 0, FI_REMAPF);
Christoph Hellwig126468b2008-03-06 13:44:57 +11001672 xfs_iunlock(ip, XFS_IOLOCK_SHARED);
Nathan Scottc2536662006-03-29 10:44:40 +10001673 return generic_block_bmap(mapping, block, xfs_get_blocks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674}
1675
1676STATIC int
Nathan Scotte4c573b2006-03-14 13:54:26 +11001677xfs_vm_readpage(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678 struct file *unused,
1679 struct page *page)
1680{
Nathan Scottc2536662006-03-29 10:44:40 +10001681 return mpage_readpage(page, xfs_get_blocks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001682}
1683
1684STATIC int
Nathan Scotte4c573b2006-03-14 13:54:26 +11001685xfs_vm_readpages(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001686 struct file *unused,
1687 struct address_space *mapping,
1688 struct list_head *pages,
1689 unsigned nr_pages)
1690{
Nathan Scottc2536662006-03-29 10:44:40 +10001691 return mpage_readpages(mapping, pages, nr_pages, xfs_get_blocks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692}
1693
Christoph Hellwigf5e54d62006-06-28 04:26:44 -07001694const struct address_space_operations xfs_address_space_operations = {
Nathan Scotte4c573b2006-03-14 13:54:26 +11001695 .readpage = xfs_vm_readpage,
1696 .readpages = xfs_vm_readpages,
1697 .writepage = xfs_vm_writepage,
Nathan Scott7d4fb402006-06-09 15:27:16 +10001698 .writepages = xfs_vm_writepages,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699 .sync_page = block_sync_page,
Nathan Scott238f4c52006-03-17 17:26:25 +11001700 .releasepage = xfs_vm_releasepage,
1701 .invalidatepage = xfs_vm_invalidatepage,
Nick Piggind79689c2007-10-16 01:25:06 -07001702 .write_begin = xfs_vm_write_begin,
1703 .write_end = generic_write_end,
Nathan Scotte4c573b2006-03-14 13:54:26 +11001704 .bmap = xfs_vm_bmap,
1705 .direct_IO = xfs_vm_direct_IO,
Christoph Lametere965f962006-02-01 03:05:41 -08001706 .migratepage = buffer_migrate_page,
Hisashi Hifumibddaafa2009-03-29 09:53:38 +02001707 .is_partially_uptodate = block_is_partially_uptodate,
Andi Kleenaa261f52009-09-16 11:50:16 +02001708 .error_remove_page = generic_error_remove_page,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709};