blob: 88ce1c6efff0aacb5c436066a8025625f1b059cd [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_trans.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include "xfs_mount.h"
26#include "xfs_bmap_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include "xfs_dinode.h"
28#include "xfs_inode.h"
Nathan Scotta844f452005-11-02 14:38:42 +110029#include "xfs_alloc.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include "xfs_error.h"
31#include "xfs_rw.h"
32#include "xfs_iomap.h"
Christoph Hellwig739bfb22007-08-29 10:58:01 +100033#include "xfs_vnodeops.h"
Christoph Hellwig0b1b2132009-12-14 23:14:59 +000034#include "xfs_trace.h"
Dave Chinner3ed3a432010-03-05 02:00:42 +000035#include "xfs_bmap.h"
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090036#include <linux/gfp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#include <linux/mpage.h>
Christoph Hellwig10ce4442006-01-11 20:48:14 +110038#include <linux/pagevec.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#include <linux/writeback.h>
40
Christoph Hellwig34a52c62010-04-28 12:28:57 +000041/*
42 * Types of I/O for bmap clustering and I/O completion tracking.
43 */
44enum {
45 IO_READ, /* mapping for a read */
46 IO_DELAY, /* mapping covers delalloc region */
47 IO_UNWRITTEN, /* mapping covers allocated but uninitialized data */
48 IO_NEW /* just allocated */
49};
Christoph Hellwig25e41b32008-12-03 12:20:39 +010050
51/*
52 * Prime number of hash buckets since address is used as the key.
53 */
54#define NVSYNC 37
55#define to_ioend_wq(v) (&xfs_ioend_wq[((unsigned long)v) % NVSYNC])
56static wait_queue_head_t xfs_ioend_wq[NVSYNC];
57
58void __init
59xfs_ioend_init(void)
60{
61 int i;
62
63 for (i = 0; i < NVSYNC; i++)
64 init_waitqueue_head(&xfs_ioend_wq[i]);
65}
66
67void
68xfs_ioend_wait(
69 xfs_inode_t *ip)
70{
71 wait_queue_head_t *wq = to_ioend_wq(ip);
72
73 wait_event(*wq, (atomic_read(&ip->i_iocount) == 0));
74}
75
76STATIC void
77xfs_ioend_wake(
78 xfs_inode_t *ip)
79{
80 if (atomic_dec_and_test(&ip->i_iocount))
81 wake_up(to_ioend_wq(ip));
82}
83
Christoph Hellwig0b1b2132009-12-14 23:14:59 +000084void
Nathan Scottf51623b2006-03-14 13:26:27 +110085xfs_count_page_state(
86 struct page *page,
87 int *delalloc,
Nathan Scottf51623b2006-03-14 13:26:27 +110088 int *unwritten)
89{
90 struct buffer_head *bh, *head;
91
Christoph Hellwig20cb52e2010-06-24 09:46:01 +100092 *delalloc = *unwritten = 0;
Nathan Scottf51623b2006-03-14 13:26:27 +110093
94 bh = head = page_buffers(page);
95 do {
Christoph Hellwig20cb52e2010-06-24 09:46:01 +100096 if (buffer_unwritten(bh))
Nathan Scottf51623b2006-03-14 13:26:27 +110097 (*unwritten) = 1;
98 else if (buffer_delay(bh))
99 (*delalloc) = 1;
100 } while ((bh = bh->b_this_page) != head);
101}
102
Christoph Hellwig6214ed42007-09-14 15:23:17 +1000103STATIC struct block_device *
104xfs_find_bdev_for_inode(
Christoph Hellwig046f1682010-04-28 12:28:52 +0000105 struct inode *inode)
Christoph Hellwig6214ed42007-09-14 15:23:17 +1000106{
Christoph Hellwig046f1682010-04-28 12:28:52 +0000107 struct xfs_inode *ip = XFS_I(inode);
Christoph Hellwig6214ed42007-09-14 15:23:17 +1000108 struct xfs_mount *mp = ip->i_mount;
109
Eric Sandeen71ddabb2007-11-23 16:29:42 +1100110 if (XFS_IS_REALTIME_INODE(ip))
Christoph Hellwig6214ed42007-09-14 15:23:17 +1000111 return mp->m_rtdev_targp->bt_bdev;
112 else
113 return mp->m_ddev_targp->bt_bdev;
114}
115
Christoph Hellwig0829c362005-09-02 16:58:49 +1000116/*
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100117 * We're now finished for good with this ioend structure.
118 * Update the page state via the associated buffer_heads,
119 * release holds on the inode and bio, and finally free
120 * up memory. Do not use the ioend after this.
121 */
Christoph Hellwig0829c362005-09-02 16:58:49 +1000122STATIC void
123xfs_destroy_ioend(
124 xfs_ioend_t *ioend)
125{
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100126 struct buffer_head *bh, *next;
Christoph Hellwig583fa582008-12-03 12:20:38 +0100127 struct xfs_inode *ip = XFS_I(ioend->io_inode);
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100128
129 for (bh = ioend->io_buffer_head; bh; bh = next) {
130 next = bh->b_private;
Nathan Scott7d04a332006-06-09 14:58:38 +1000131 bh->b_end_io(bh, !ioend->io_error);
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100132 }
Christoph Hellwig583fa582008-12-03 12:20:38 +0100133
134 /*
135 * Volume managers supporting multiple paths can send back ENODEV
136 * when the final path disappears. In this case continuing to fill
137 * the page cache with dirty data which cannot be written out is
138 * evil, so prevent that.
139 */
140 if (unlikely(ioend->io_error == -ENODEV)) {
141 xfs_do_force_shutdown(ip->i_mount, SHUTDOWN_DEVICE_REQ,
142 __FILE__, __LINE__);
Christoph Hellwigb677c212007-08-29 11:46:28 +1000143 }
Christoph Hellwig583fa582008-12-03 12:20:38 +0100144
Christoph Hellwig25e41b32008-12-03 12:20:39 +0100145 xfs_ioend_wake(ip);
Christoph Hellwig0829c362005-09-02 16:58:49 +1000146 mempool_free(ioend, xfs_ioend_pool);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147}
148
149/*
Dave Chinner932640e2009-10-06 20:29:29 +0000150 * If the end of the current ioend is beyond the current EOF,
151 * return the new EOF value, otherwise zero.
152 */
153STATIC xfs_fsize_t
154xfs_ioend_new_eof(
155 xfs_ioend_t *ioend)
156{
157 xfs_inode_t *ip = XFS_I(ioend->io_inode);
158 xfs_fsize_t isize;
159 xfs_fsize_t bsize;
160
161 bsize = ioend->io_offset + ioend->io_size;
162 isize = MAX(ip->i_size, ip->i_new_size);
163 isize = MIN(isize, bsize);
164 return isize > ip->i_d.di_size ? isize : 0;
165}
166
167/*
Dave Chinner77d7a0c2010-02-17 05:36:29 +0000168 * Update on-disk file size now that data has been written to disk. The
169 * current in-memory file size is i_size. If a write is beyond eof i_new_size
170 * will be the intended file size until i_size is updated. If this write does
171 * not extend all the way to the valid file size then restrict this update to
172 * the end of the write.
173 *
174 * This function does not block as blocking on the inode lock in IO completion
175 * can lead to IO completion order dependency deadlocks.. If it can't get the
176 * inode ilock it will return EAGAIN. Callers must handle this.
Lachlan McIlroyba87ea62007-05-08 13:49:46 +1000177 */
Dave Chinner77d7a0c2010-02-17 05:36:29 +0000178STATIC int
Lachlan McIlroyba87ea62007-05-08 13:49:46 +1000179xfs_setfilesize(
180 xfs_ioend_t *ioend)
181{
Christoph Hellwigb677c212007-08-29 11:46:28 +1000182 xfs_inode_t *ip = XFS_I(ioend->io_inode);
Lachlan McIlroyba87ea62007-05-08 13:49:46 +1000183 xfs_fsize_t isize;
Lachlan McIlroyba87ea62007-05-08 13:49:46 +1000184
Lachlan McIlroyba87ea62007-05-08 13:49:46 +1000185 ASSERT((ip->i_d.di_mode & S_IFMT) == S_IFREG);
Christoph Hellwig34a52c62010-04-28 12:28:57 +0000186 ASSERT(ioend->io_type != IO_READ);
Lachlan McIlroyba87ea62007-05-08 13:49:46 +1000187
188 if (unlikely(ioend->io_error))
Dave Chinner77d7a0c2010-02-17 05:36:29 +0000189 return 0;
Lachlan McIlroyba87ea62007-05-08 13:49:46 +1000190
Dave Chinner77d7a0c2010-02-17 05:36:29 +0000191 if (!xfs_ilock_nowait(ip, XFS_ILOCK_EXCL))
192 return EAGAIN;
193
Dave Chinner932640e2009-10-06 20:29:29 +0000194 isize = xfs_ioend_new_eof(ioend);
195 if (isize) {
Lachlan McIlroyba87ea62007-05-08 13:49:46 +1000196 ip->i_d.di_size = isize;
Christoph Hellwig66d834e2010-02-15 09:44:49 +0000197 xfs_mark_inode_dirty(ip);
Lachlan McIlroyba87ea62007-05-08 13:49:46 +1000198 }
199
200 xfs_iunlock(ip, XFS_ILOCK_EXCL);
Dave Chinner77d7a0c2010-02-17 05:36:29 +0000201 return 0;
Christoph Hellwig0829c362005-09-02 16:58:49 +1000202}
203
204/*
Dave Chinnerc626d172009-04-06 18:42:11 +0200205 * Schedule IO completion handling on a xfsdatad if this was
206 * the final hold on this ioend. If we are asked to wait,
207 * flush the workqueue.
208 */
209STATIC void
210xfs_finish_ioend(
211 xfs_ioend_t *ioend,
212 int wait)
213{
214 if (atomic_dec_and_test(&ioend->io_remaining)) {
Christoph Hellwig5ec4fab2009-10-30 09:11:47 +0000215 struct workqueue_struct *wq;
Dave Chinnerc626d172009-04-06 18:42:11 +0200216
Christoph Hellwig34a52c62010-04-28 12:28:57 +0000217 wq = (ioend->io_type == IO_UNWRITTEN) ?
Christoph Hellwig5ec4fab2009-10-30 09:11:47 +0000218 xfsconvertd_workqueue : xfsdatad_workqueue;
Dave Chinnerc626d172009-04-06 18:42:11 +0200219 queue_work(wq, &ioend->io_work);
220 if (wait)
221 flush_workqueue(wq);
222 }
223}
224
225/*
Dave Chinner77d7a0c2010-02-17 05:36:29 +0000226 * IO write completion.
227 */
228STATIC void
229xfs_end_io(
230 struct work_struct *work)
231{
232 xfs_ioend_t *ioend = container_of(work, xfs_ioend_t, io_work);
233 struct xfs_inode *ip = XFS_I(ioend->io_inode);
Dave Chinner69418932010-03-04 00:57:09 +0000234 int error = 0;
Dave Chinner77d7a0c2010-02-17 05:36:29 +0000235
236 /*
237 * For unwritten extents we need to issue transactions to convert a
238 * range to normal written extens after the data I/O has finished.
239 */
Christoph Hellwig34a52c62010-04-28 12:28:57 +0000240 if (ioend->io_type == IO_UNWRITTEN &&
Dave Chinner77d7a0c2010-02-17 05:36:29 +0000241 likely(!ioend->io_error && !XFS_FORCED_SHUTDOWN(ip->i_mount))) {
242
243 error = xfs_iomap_write_unwritten(ip, ioend->io_offset,
244 ioend->io_size);
245 if (error)
246 ioend->io_error = error;
247 }
248
249 /*
250 * We might have to update the on-disk file size after extending
251 * writes.
252 */
Christoph Hellwig34a52c62010-04-28 12:28:57 +0000253 if (ioend->io_type != IO_READ) {
Dave Chinner77d7a0c2010-02-17 05:36:29 +0000254 error = xfs_setfilesize(ioend);
255 ASSERT(!error || error == EAGAIN);
256 }
257
258 /*
259 * If we didn't complete processing of the ioend, requeue it to the
260 * tail of the workqueue for another attempt later. Otherwise destroy
261 * it.
262 */
263 if (error == EAGAIN) {
264 atomic_inc(&ioend->io_remaining);
265 xfs_finish_ioend(ioend, 0);
266 /* ensure we don't spin on blocked ioends */
267 delay(1);
268 } else
269 xfs_destroy_ioend(ioend);
270}
271
272/*
Christoph Hellwig0829c362005-09-02 16:58:49 +1000273 * Allocate and initialise an IO completion structure.
274 * We need to track unwritten extent write completion here initially.
275 * We'll need to extend this for updating the ondisk inode size later
276 * (vs. incore size).
277 */
278STATIC xfs_ioend_t *
279xfs_alloc_ioend(
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100280 struct inode *inode,
281 unsigned int type)
Christoph Hellwig0829c362005-09-02 16:58:49 +1000282{
283 xfs_ioend_t *ioend;
284
285 ioend = mempool_alloc(xfs_ioend_pool, GFP_NOFS);
286
287 /*
288 * Set the count to 1 initially, which will prevent an I/O
289 * completion callback from happening before we have started
290 * all the I/O from calling the completion routine too early.
291 */
292 atomic_set(&ioend->io_remaining, 1);
Nathan Scott7d04a332006-06-09 14:58:38 +1000293 ioend->io_error = 0;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100294 ioend->io_list = NULL;
295 ioend->io_type = type;
Christoph Hellwigb677c212007-08-29 11:46:28 +1000296 ioend->io_inode = inode;
Christoph Hellwigc1a073b2005-09-05 08:23:35 +1000297 ioend->io_buffer_head = NULL;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100298 ioend->io_buffer_tail = NULL;
Christoph Hellwigb677c212007-08-29 11:46:28 +1000299 atomic_inc(&XFS_I(ioend->io_inode)->i_iocount);
Christoph Hellwig0829c362005-09-02 16:58:49 +1000300 ioend->io_offset = 0;
301 ioend->io_size = 0;
302
Christoph Hellwig5ec4fab2009-10-30 09:11:47 +0000303 INIT_WORK(&ioend->io_work, xfs_end_io);
Christoph Hellwig0829c362005-09-02 16:58:49 +1000304 return ioend;
305}
306
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307STATIC int
308xfs_map_blocks(
309 struct inode *inode,
310 loff_t offset,
311 ssize_t count,
Christoph Hellwig207d0412010-04-28 12:28:56 +0000312 struct xfs_bmbt_irec *imap,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 int flags)
314{
Christoph Hellwig6bd16ff2008-12-03 12:20:32 +0100315 int nmaps = 1;
Christoph Hellwig207d0412010-04-28 12:28:56 +0000316 int new = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317
Christoph Hellwig207d0412010-04-28 12:28:56 +0000318 return -xfs_iomap(XFS_I(inode), offset, count, flags, imap, &nmaps, &new);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319}
320
Christoph Hellwigb8f82a42009-11-14 16:17:22 +0000321STATIC int
Christoph Hellwig558e6892010-04-28 12:28:58 +0000322xfs_imap_valid(
Christoph Hellwig8699bb02010-04-28 12:28:54 +0000323 struct inode *inode,
Christoph Hellwig207d0412010-04-28 12:28:56 +0000324 struct xfs_bmbt_irec *imap,
Christoph Hellwig558e6892010-04-28 12:28:58 +0000325 xfs_off_t offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326{
Christoph Hellwig558e6892010-04-28 12:28:58 +0000327 offset >>= inode->i_blkbits;
Christoph Hellwig8699bb02010-04-28 12:28:54 +0000328
Christoph Hellwig558e6892010-04-28 12:28:58 +0000329 return offset >= imap->br_startoff &&
330 offset < imap->br_startoff + imap->br_blockcount;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331}
332
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100333/*
334 * BIO completion handler for buffered IO.
335 */
Al Viro782e3b32007-10-12 07:17:47 +0100336STATIC void
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100337xfs_end_bio(
338 struct bio *bio,
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100339 int error)
340{
341 xfs_ioend_t *ioend = bio->bi_private;
342
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100343 ASSERT(atomic_read(&bio->bi_cnt) >= 1);
Nathan Scott7d04a332006-06-09 14:58:38 +1000344 ioend->io_error = test_bit(BIO_UPTODATE, &bio->bi_flags) ? 0 : error;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100345
346 /* Toss bio and pass work off to an xfsdatad thread */
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100347 bio->bi_private = NULL;
348 bio->bi_end_io = NULL;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100349 bio_put(bio);
Nathan Scott7d04a332006-06-09 14:58:38 +1000350
David Chinnere927af92007-06-05 16:24:36 +1000351 xfs_finish_ioend(ioend, 0);
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100352}
353
354STATIC void
355xfs_submit_ioend_bio(
Christoph Hellwig06342cf2009-10-30 09:09:15 +0000356 struct writeback_control *wbc,
357 xfs_ioend_t *ioend,
358 struct bio *bio)
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100359{
360 atomic_inc(&ioend->io_remaining);
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100361 bio->bi_private = ioend;
362 bio->bi_end_io = xfs_end_bio;
363
Dave Chinner932640e2009-10-06 20:29:29 +0000364 /*
365 * If the I/O is beyond EOF we mark the inode dirty immediately
366 * but don't update the inode size until I/O completion.
367 */
368 if (xfs_ioend_new_eof(ioend))
Christoph Hellwig66d834e2010-02-15 09:44:49 +0000369 xfs_mark_inode_dirty(XFS_I(ioend->io_inode));
Dave Chinner932640e2009-10-06 20:29:29 +0000370
Christoph Hellwig06342cf2009-10-30 09:09:15 +0000371 submit_bio(wbc->sync_mode == WB_SYNC_ALL ?
372 WRITE_SYNC_PLUG : WRITE, bio);
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100373 ASSERT(!bio_flagged(bio, BIO_EOPNOTSUPP));
374 bio_put(bio);
375}
376
377STATIC struct bio *
378xfs_alloc_ioend_bio(
379 struct buffer_head *bh)
380{
381 struct bio *bio;
382 int nvecs = bio_get_nr_vecs(bh->b_bdev);
383
384 do {
385 bio = bio_alloc(GFP_NOIO, nvecs);
386 nvecs >>= 1;
387 } while (!bio);
388
389 ASSERT(bio->bi_private == NULL);
390 bio->bi_sector = bh->b_blocknr * (bh->b_size >> 9);
391 bio->bi_bdev = bh->b_bdev;
392 bio_get(bio);
393 return bio;
394}
395
396STATIC void
397xfs_start_buffer_writeback(
398 struct buffer_head *bh)
399{
400 ASSERT(buffer_mapped(bh));
401 ASSERT(buffer_locked(bh));
402 ASSERT(!buffer_delay(bh));
403 ASSERT(!buffer_unwritten(bh));
404
405 mark_buffer_async_write(bh);
406 set_buffer_uptodate(bh);
407 clear_buffer_dirty(bh);
408}
409
410STATIC void
411xfs_start_page_writeback(
412 struct page *page,
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100413 int clear_dirty,
414 int buffers)
415{
416 ASSERT(PageLocked(page));
417 ASSERT(!PageWriteback(page));
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100418 if (clear_dirty)
David Chinner92132022006-12-21 10:24:01 +1100419 clear_page_dirty_for_io(page);
420 set_page_writeback(page);
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100421 unlock_page(page);
Fengguang Wu1f7decf2007-10-16 23:30:42 -0700422 /* If no buffers on the page are to be written, finish it here */
423 if (!buffers)
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100424 end_page_writeback(page);
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100425}
426
427static inline int bio_add_buffer(struct bio *bio, struct buffer_head *bh)
428{
429 return bio_add_page(bio, bh->b_page, bh->b_size, bh_offset(bh));
430}
431
432/*
David Chinnerd88992f2006-01-18 13:38:12 +1100433 * Submit all of the bios for all of the ioends we have saved up, covering the
434 * initial writepage page and also any probed pages.
435 *
436 * Because we may have multiple ioends spanning a page, we need to start
437 * writeback on all the buffers before we submit them for I/O. If we mark the
438 * buffers as we got, then we can end up with a page that only has buffers
439 * marked async write and I/O complete on can occur before we mark the other
440 * buffers async write.
441 *
442 * The end result of this is that we trip a bug in end_page_writeback() because
443 * we call it twice for the one page as the code in end_buffer_async_write()
444 * assumes that all buffers on the page are started at the same time.
445 *
446 * The fix is two passes across the ioend list - one to start writeback on the
Nathan Scottc41564b2006-03-29 08:55:14 +1000447 * buffer_heads, and then submit them for I/O on the second pass.
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100448 */
449STATIC void
450xfs_submit_ioend(
Christoph Hellwig06342cf2009-10-30 09:09:15 +0000451 struct writeback_control *wbc,
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100452 xfs_ioend_t *ioend)
453{
David Chinnerd88992f2006-01-18 13:38:12 +1100454 xfs_ioend_t *head = ioend;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100455 xfs_ioend_t *next;
456 struct buffer_head *bh;
457 struct bio *bio;
458 sector_t lastblock = 0;
459
David Chinnerd88992f2006-01-18 13:38:12 +1100460 /* Pass 1 - start writeback */
461 do {
462 next = ioend->io_list;
463 for (bh = ioend->io_buffer_head; bh; bh = bh->b_private) {
464 xfs_start_buffer_writeback(bh);
465 }
466 } while ((ioend = next) != NULL);
467
468 /* Pass 2 - submit I/O */
469 ioend = head;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100470 do {
471 next = ioend->io_list;
472 bio = NULL;
473
474 for (bh = ioend->io_buffer_head; bh; bh = bh->b_private) {
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100475
476 if (!bio) {
477 retry:
478 bio = xfs_alloc_ioend_bio(bh);
479 } else if (bh->b_blocknr != lastblock + 1) {
Christoph Hellwig06342cf2009-10-30 09:09:15 +0000480 xfs_submit_ioend_bio(wbc, ioend, bio);
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100481 goto retry;
482 }
483
484 if (bio_add_buffer(bio, bh) != bh->b_size) {
Christoph Hellwig06342cf2009-10-30 09:09:15 +0000485 xfs_submit_ioend_bio(wbc, ioend, bio);
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100486 goto retry;
487 }
488
489 lastblock = bh->b_blocknr;
490 }
491 if (bio)
Christoph Hellwig06342cf2009-10-30 09:09:15 +0000492 xfs_submit_ioend_bio(wbc, ioend, bio);
David Chinnere927af92007-06-05 16:24:36 +1000493 xfs_finish_ioend(ioend, 0);
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100494 } while ((ioend = next) != NULL);
495}
496
497/*
498 * Cancel submission of all buffer_heads so far in this endio.
499 * Toss the endio too. Only ever called for the initial page
500 * in a writepage request, so only ever one page.
501 */
502STATIC void
503xfs_cancel_ioend(
504 xfs_ioend_t *ioend)
505{
506 xfs_ioend_t *next;
507 struct buffer_head *bh, *next_bh;
508
509 do {
510 next = ioend->io_list;
511 bh = ioend->io_buffer_head;
512 do {
513 next_bh = bh->b_private;
514 clear_buffer_async_write(bh);
515 unlock_buffer(bh);
516 } while ((bh = next_bh) != NULL);
517
Christoph Hellwig25e41b32008-12-03 12:20:39 +0100518 xfs_ioend_wake(XFS_I(ioend->io_inode));
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100519 mempool_free(ioend, xfs_ioend_pool);
520 } while ((ioend = next) != NULL);
521}
522
523/*
524 * Test to see if we've been building up a completion structure for
525 * earlier buffers -- if so, we try to append to this ioend if we
526 * can, otherwise we finish off any current ioend and start another.
527 * Return true if we've finished the given ioend.
528 */
529STATIC void
530xfs_add_to_ioend(
531 struct inode *inode,
532 struct buffer_head *bh,
Christoph Hellwig7336cea2006-01-11 20:49:16 +1100533 xfs_off_t offset,
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100534 unsigned int type,
535 xfs_ioend_t **result,
536 int need_ioend)
537{
538 xfs_ioend_t *ioend = *result;
539
540 if (!ioend || need_ioend || type != ioend->io_type) {
541 xfs_ioend_t *previous = *result;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100542
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100543 ioend = xfs_alloc_ioend(inode, type);
544 ioend->io_offset = offset;
545 ioend->io_buffer_head = bh;
546 ioend->io_buffer_tail = bh;
547 if (previous)
548 previous->io_list = ioend;
549 *result = ioend;
550 } else {
551 ioend->io_buffer_tail->b_private = bh;
552 ioend->io_buffer_tail = bh;
553 }
554
555 bh->b_private = NULL;
556 ioend->io_size += bh->b_size;
557}
558
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559STATIC void
Nathan Scott87cbc492006-03-14 13:26:43 +1100560xfs_map_buffer(
Christoph Hellwig046f1682010-04-28 12:28:52 +0000561 struct inode *inode,
Nathan Scott87cbc492006-03-14 13:26:43 +1100562 struct buffer_head *bh,
Christoph Hellwig207d0412010-04-28 12:28:56 +0000563 struct xfs_bmbt_irec *imap,
Christoph Hellwig046f1682010-04-28 12:28:52 +0000564 xfs_off_t offset)
Nathan Scott87cbc492006-03-14 13:26:43 +1100565{
566 sector_t bn;
Christoph Hellwig8699bb02010-04-28 12:28:54 +0000567 struct xfs_mount *m = XFS_I(inode)->i_mount;
Christoph Hellwig207d0412010-04-28 12:28:56 +0000568 xfs_off_t iomap_offset = XFS_FSB_TO_B(m, imap->br_startoff);
569 xfs_daddr_t iomap_bn = xfs_fsb_to_db(XFS_I(inode), imap->br_startblock);
Nathan Scott87cbc492006-03-14 13:26:43 +1100570
Christoph Hellwig207d0412010-04-28 12:28:56 +0000571 ASSERT(imap->br_startblock != HOLESTARTBLOCK);
572 ASSERT(imap->br_startblock != DELAYSTARTBLOCK);
Nathan Scott87cbc492006-03-14 13:26:43 +1100573
Christoph Hellwige5131822010-04-28 12:28:55 +0000574 bn = (iomap_bn >> (inode->i_blkbits - BBSHIFT)) +
Christoph Hellwig8699bb02010-04-28 12:28:54 +0000575 ((offset - iomap_offset) >> inode->i_blkbits);
Nathan Scott87cbc492006-03-14 13:26:43 +1100576
Christoph Hellwig046f1682010-04-28 12:28:52 +0000577 ASSERT(bn || XFS_IS_REALTIME_INODE(XFS_I(inode)));
Nathan Scott87cbc492006-03-14 13:26:43 +1100578
579 bh->b_blocknr = bn;
580 set_buffer_mapped(bh);
581}
582
583STATIC void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584xfs_map_at_offset(
Christoph Hellwig046f1682010-04-28 12:28:52 +0000585 struct inode *inode,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 struct buffer_head *bh,
Christoph Hellwig207d0412010-04-28 12:28:56 +0000587 struct xfs_bmbt_irec *imap,
Christoph Hellwig046f1682010-04-28 12:28:52 +0000588 xfs_off_t offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589{
Christoph Hellwig207d0412010-04-28 12:28:56 +0000590 ASSERT(imap->br_startblock != HOLESTARTBLOCK);
591 ASSERT(imap->br_startblock != DELAYSTARTBLOCK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592
593 lock_buffer(bh);
Christoph Hellwig207d0412010-04-28 12:28:56 +0000594 xfs_map_buffer(inode, bh, imap, offset);
Christoph Hellwig046f1682010-04-28 12:28:52 +0000595 bh->b_bdev = xfs_find_bdev_for_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 set_buffer_mapped(bh);
597 clear_buffer_delay(bh);
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100598 clear_buffer_unwritten(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599}
600
601/*
Christoph Hellwig6c4fe192006-01-11 20:49:28 +1100602 * Look for a page at index that is suitable for clustering.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 */
604STATIC unsigned int
Christoph Hellwig6c4fe192006-01-11 20:49:28 +1100605xfs_probe_page(
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100606 struct page *page,
Christoph Hellwig20cb52e2010-06-24 09:46:01 +1000607 unsigned int pg_offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608{
Christoph Hellwig20cb52e2010-06-24 09:46:01 +1000609 struct buffer_head *bh, *head;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 int ret = 0;
611
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 if (PageWriteback(page))
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100613 return 0;
Christoph Hellwig20cb52e2010-06-24 09:46:01 +1000614 if (!PageDirty(page))
615 return 0;
616 if (!page->mapping)
617 return 0;
618 if (!page_has_buffers(page))
619 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620
Christoph Hellwig20cb52e2010-06-24 09:46:01 +1000621 bh = head = page_buffers(page);
622 do {
623 if (!buffer_uptodate(bh))
624 break;
625 if (!buffer_mapped(bh))
626 break;
627 ret += bh->b_size;
628 if (ret >= pg_offset)
629 break;
630 } while ((bh = bh->b_this_page) != head);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 return ret;
633}
634
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100635STATIC size_t
Christoph Hellwig6c4fe192006-01-11 20:49:28 +1100636xfs_probe_cluster(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 struct inode *inode,
638 struct page *startpage,
639 struct buffer_head *bh,
Christoph Hellwig20cb52e2010-06-24 09:46:01 +1000640 struct buffer_head *head)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641{
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100642 struct pagevec pvec;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 pgoff_t tindex, tlast, tloff;
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100644 size_t total = 0;
645 int done = 0, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646
647 /* First sum forwards in this page */
648 do {
Christoph Hellwig20cb52e2010-06-24 09:46:01 +1000649 if (!buffer_uptodate(bh) || !buffer_mapped(bh))
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100650 return total;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 total += bh->b_size;
652 } while ((bh = bh->b_this_page) != head);
653
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100654 /* if we reached the end of the page, sum forwards in following pages */
655 tlast = i_size_read(inode) >> PAGE_CACHE_SHIFT;
656 tindex = startpage->index + 1;
657
658 /* Prune this back to avoid pathological behavior */
659 tloff = min(tlast, startpage->index + 64);
660
661 pagevec_init(&pvec, 0);
662 while (!done && tindex <= tloff) {
663 unsigned len = min_t(pgoff_t, PAGEVEC_SIZE, tlast - tindex + 1);
664
665 if (!pagevec_lookup(&pvec, inode->i_mapping, tindex, len))
666 break;
667
668 for (i = 0; i < pagevec_count(&pvec); i++) {
669 struct page *page = pvec.pages[i];
Christoph Hellwig265c1fa2007-08-16 15:38:19 +1000670 size_t pg_offset, pg_len = 0;
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100671
672 if (tindex == tlast) {
673 pg_offset =
674 i_size_read(inode) & (PAGE_CACHE_SIZE - 1);
Christoph Hellwig1defeac2006-01-11 20:48:33 +1100675 if (!pg_offset) {
676 done = 1;
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100677 break;
Christoph Hellwig1defeac2006-01-11 20:48:33 +1100678 }
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100679 } else
680 pg_offset = PAGE_CACHE_SIZE;
681
Nick Piggin529ae9a2008-08-02 12:01:03 +0200682 if (page->index == tindex && trylock_page(page)) {
Christoph Hellwig20cb52e2010-06-24 09:46:01 +1000683 pg_len = xfs_probe_page(page, pg_offset);
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100684 unlock_page(page);
685 }
686
Christoph Hellwig265c1fa2007-08-16 15:38:19 +1000687 if (!pg_len) {
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100688 done = 1;
689 break;
690 }
691
Christoph Hellwig265c1fa2007-08-16 15:38:19 +1000692 total += pg_len;
Christoph Hellwig1defeac2006-01-11 20:48:33 +1100693 tindex++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 }
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100695
696 pagevec_release(&pvec);
697 cond_resched();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 }
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100699
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 return total;
701}
702
703/*
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100704 * Test if a given page is suitable for writing as part of an unwritten
705 * or delayed allocate extent.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 */
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100707STATIC int
708xfs_is_delayed_page(
709 struct page *page,
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100710 unsigned int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 if (PageWriteback(page))
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100713 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714
715 if (page->mapping && page_has_buffers(page)) {
716 struct buffer_head *bh, *head;
717 int acceptable = 0;
718
719 bh = head = page_buffers(page);
720 do {
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100721 if (buffer_unwritten(bh))
Christoph Hellwig34a52c62010-04-28 12:28:57 +0000722 acceptable = (type == IO_UNWRITTEN);
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100723 else if (buffer_delay(bh))
Christoph Hellwig34a52c62010-04-28 12:28:57 +0000724 acceptable = (type == IO_DELAY);
David Chinner2ddee842006-03-22 12:47:40 +1100725 else if (buffer_dirty(bh) && buffer_mapped(bh))
Christoph Hellwig34a52c62010-04-28 12:28:57 +0000726 acceptable = (type == IO_NEW);
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100727 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 } while ((bh = bh->b_this_page) != head);
730
731 if (acceptable)
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100732 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 }
734
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100735 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736}
737
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738/*
739 * Allocate & map buffers for page given the extent map. Write it out.
740 * except for the original page of a writepage, this is called on
741 * delalloc/unwritten pages only, for the original page it is possible
742 * that the page has no mapping at all.
743 */
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100744STATIC int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745xfs_convert_page(
746 struct inode *inode,
747 struct page *page,
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100748 loff_t tindex,
Christoph Hellwig207d0412010-04-28 12:28:56 +0000749 struct xfs_bmbt_irec *imap,
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100750 xfs_ioend_t **ioendp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 struct writeback_control *wbc,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 int all_bh)
753{
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100754 struct buffer_head *bh, *head;
Christoph Hellwig9260dc62006-01-11 20:48:47 +1100755 xfs_off_t end_offset;
756 unsigned long p_offset;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100757 unsigned int type;
Nathan Scott24e17b52005-05-05 13:33:20 -0700758 int len, page_dirty;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100759 int count = 0, done = 0, uptodate = 1;
Christoph Hellwig9260dc62006-01-11 20:48:47 +1100760 xfs_off_t offset = page_offset(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100762 if (page->index != tindex)
763 goto fail;
Nick Piggin529ae9a2008-08-02 12:01:03 +0200764 if (!trylock_page(page))
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100765 goto fail;
766 if (PageWriteback(page))
767 goto fail_unlock_page;
768 if (page->mapping != inode->i_mapping)
769 goto fail_unlock_page;
770 if (!xfs_is_delayed_page(page, (*ioendp)->io_type))
771 goto fail_unlock_page;
772
Nathan Scott24e17b52005-05-05 13:33:20 -0700773 /*
774 * page_dirty is initially a count of buffers on the page before
Nathan Scottc41564b2006-03-29 08:55:14 +1000775 * EOF and is decremented as we move each into a cleanable state.
Christoph Hellwig9260dc62006-01-11 20:48:47 +1100776 *
777 * Derivation:
778 *
779 * End offset is the highest offset that this page should represent.
780 * If we are on the last page, (end_offset & (PAGE_CACHE_SIZE - 1))
781 * will evaluate non-zero and be less than PAGE_CACHE_SIZE and
782 * hence give us the correct page_dirty count. On any other page,
783 * it will be zero and in that case we need page_dirty to be the
784 * count of buffers on the page.
Nathan Scott24e17b52005-05-05 13:33:20 -0700785 */
Christoph Hellwig9260dc62006-01-11 20:48:47 +1100786 end_offset = min_t(unsigned long long,
787 (xfs_off_t)(page->index + 1) << PAGE_CACHE_SHIFT,
788 i_size_read(inode));
789
Nathan Scott24e17b52005-05-05 13:33:20 -0700790 len = 1 << inode->i_blkbits;
Christoph Hellwig9260dc62006-01-11 20:48:47 +1100791 p_offset = min_t(unsigned long, end_offset & (PAGE_CACHE_SIZE - 1),
792 PAGE_CACHE_SIZE);
793 p_offset = p_offset ? roundup(p_offset, len) : PAGE_CACHE_SIZE;
794 page_dirty = p_offset / len;
Nathan Scott24e17b52005-05-05 13:33:20 -0700795
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 bh = head = page_buffers(page);
797 do {
Christoph Hellwig9260dc62006-01-11 20:48:47 +1100798 if (offset >= end_offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 break;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100800 if (!buffer_uptodate(bh))
801 uptodate = 0;
802 if (!(PageUptodate(page) || buffer_uptodate(bh))) {
803 done = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 continue;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100805 }
806
Christoph Hellwig9260dc62006-01-11 20:48:47 +1100807 if (buffer_unwritten(bh) || buffer_delay(bh)) {
808 if (buffer_unwritten(bh))
Christoph Hellwig34a52c62010-04-28 12:28:57 +0000809 type = IO_UNWRITTEN;
Christoph Hellwig9260dc62006-01-11 20:48:47 +1100810 else
Christoph Hellwig34a52c62010-04-28 12:28:57 +0000811 type = IO_DELAY;
Christoph Hellwig9260dc62006-01-11 20:48:47 +1100812
Christoph Hellwig558e6892010-04-28 12:28:58 +0000813 if (!xfs_imap_valid(inode, imap, offset)) {
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100814 done = 1;
Christoph Hellwig9260dc62006-01-11 20:48:47 +1100815 continue;
816 }
817
Christoph Hellwig207d0412010-04-28 12:28:56 +0000818 ASSERT(imap->br_startblock != HOLESTARTBLOCK);
819 ASSERT(imap->br_startblock != DELAYSTARTBLOCK);
Christoph Hellwig9260dc62006-01-11 20:48:47 +1100820
Christoph Hellwig207d0412010-04-28 12:28:56 +0000821 xfs_map_at_offset(inode, bh, imap, offset);
Christoph Hellwig89f3b3632010-06-24 09:45:48 +1000822 xfs_add_to_ioend(inode, bh, offset, type,
823 ioendp, done);
824
Christoph Hellwig9260dc62006-01-11 20:48:47 +1100825 page_dirty--;
826 count++;
827 } else {
Christoph Hellwig34a52c62010-04-28 12:28:57 +0000828 type = IO_NEW;
Christoph Hellwig89f3b3632010-06-24 09:45:48 +1000829 if (buffer_mapped(bh) && all_bh) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830 lock_buffer(bh);
Christoph Hellwig7336cea2006-01-11 20:49:16 +1100831 xfs_add_to_ioend(inode, bh, offset,
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100832 type, ioendp, done);
833 count++;
Nathan Scott24e17b52005-05-05 13:33:20 -0700834 page_dirty--;
Christoph Hellwig9260dc62006-01-11 20:48:47 +1100835 } else {
836 done = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838 }
Christoph Hellwig7336cea2006-01-11 20:49:16 +1100839 } while (offset += len, (bh = bh->b_this_page) != head);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100841 if (uptodate && bh == head)
842 SetPageUptodate(page);
843
Christoph Hellwig89f3b3632010-06-24 09:45:48 +1000844 if (count) {
845 wbc->nr_to_write--;
846 if (wbc->nr_to_write <= 0)
847 done = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 }
Christoph Hellwig89f3b3632010-06-24 09:45:48 +1000849 xfs_start_page_writeback(page, !page_dirty, count);
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100850
851 return done;
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100852 fail_unlock_page:
853 unlock_page(page);
854 fail:
855 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856}
857
858/*
859 * Convert & write out a cluster of pages in the same extent as defined
860 * by mp and following the start page.
861 */
862STATIC void
863xfs_cluster_write(
864 struct inode *inode,
865 pgoff_t tindex,
Christoph Hellwig207d0412010-04-28 12:28:56 +0000866 struct xfs_bmbt_irec *imap,
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100867 xfs_ioend_t **ioendp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 struct writeback_control *wbc,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 int all_bh,
870 pgoff_t tlast)
871{
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100872 struct pagevec pvec;
873 int done = 0, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100875 pagevec_init(&pvec, 0);
876 while (!done && tindex <= tlast) {
877 unsigned len = min_t(pgoff_t, PAGEVEC_SIZE, tlast - tindex + 1);
878
879 if (!pagevec_lookup(&pvec, inode->i_mapping, tindex, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880 break;
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100881
882 for (i = 0; i < pagevec_count(&pvec); i++) {
883 done = xfs_convert_page(inode, pvec.pages[i], tindex++,
Christoph Hellwig89f3b3632010-06-24 09:45:48 +1000884 imap, ioendp, wbc, all_bh);
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100885 if (done)
886 break;
887 }
888
889 pagevec_release(&pvec);
890 cond_resched();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 }
892}
893
Dave Chinner3ed3a432010-03-05 02:00:42 +0000894STATIC void
895xfs_vm_invalidatepage(
896 struct page *page,
897 unsigned long offset)
898{
899 trace_xfs_invalidatepage(page->mapping->host, page, offset);
900 block_invalidatepage(page, offset);
901}
902
903/*
904 * If the page has delalloc buffers on it, we need to punch them out before we
905 * invalidate the page. If we don't, we leave a stale delalloc mapping on the
906 * inode that can trip a BUG() in xfs_get_blocks() later on if a direct IO read
907 * is done on that same region - the delalloc extent is returned when none is
908 * supposed to be there.
909 *
910 * We prevent this by truncating away the delalloc regions on the page before
911 * invalidating it. Because they are delalloc, we can do this without needing a
912 * transaction. Indeed - if we get ENOSPC errors, we have to be able to do this
913 * truncation without a transaction as there is no space left for block
914 * reservation (typically why we see a ENOSPC in writeback).
915 *
916 * This is not a performance critical path, so for now just do the punching a
917 * buffer head at a time.
918 */
919STATIC void
920xfs_aops_discard_page(
921 struct page *page)
922{
923 struct inode *inode = page->mapping->host;
924 struct xfs_inode *ip = XFS_I(inode);
925 struct buffer_head *bh, *head;
926 loff_t offset = page_offset(page);
927 ssize_t len = 1 << inode->i_blkbits;
928
Christoph Hellwig34a52c62010-04-28 12:28:57 +0000929 if (!xfs_is_delayed_page(page, IO_DELAY))
Dave Chinner3ed3a432010-03-05 02:00:42 +0000930 goto out_invalidate;
931
Dave Chinnere8c37532010-03-15 02:36:35 +0000932 if (XFS_FORCED_SHUTDOWN(ip->i_mount))
933 goto out_invalidate;
934
Dave Chinner3ed3a432010-03-05 02:00:42 +0000935 xfs_fs_cmn_err(CE_ALERT, ip->i_mount,
936 "page discard on page %p, inode 0x%llx, offset %llu.",
937 page, ip->i_ino, offset);
938
939 xfs_ilock(ip, XFS_ILOCK_EXCL);
940 bh = head = page_buffers(page);
941 do {
942 int done;
943 xfs_fileoff_t offset_fsb;
944 xfs_bmbt_irec_t imap;
945 int nimaps = 1;
946 int error;
947 xfs_fsblock_t firstblock;
948 xfs_bmap_free_t flist;
949
950 if (!buffer_delay(bh))
951 goto next_buffer;
952
953 offset_fsb = XFS_B_TO_FSBT(ip->i_mount, offset);
954
955 /*
956 * Map the range first and check that it is a delalloc extent
957 * before trying to unmap the range. Otherwise we will be
958 * trying to remove a real extent (which requires a
959 * transaction) or a hole, which is probably a bad idea...
960 */
961 error = xfs_bmapi(NULL, ip, offset_fsb, 1,
962 XFS_BMAPI_ENTIRE, NULL, 0, &imap,
Christoph Hellwigb4e91812010-06-23 18:11:15 +1000963 &nimaps, NULL);
Dave Chinner3ed3a432010-03-05 02:00:42 +0000964
965 if (error) {
966 /* something screwed, just bail */
Dave Chinnere8c37532010-03-15 02:36:35 +0000967 if (!XFS_FORCED_SHUTDOWN(ip->i_mount)) {
968 xfs_fs_cmn_err(CE_ALERT, ip->i_mount,
969 "page discard failed delalloc mapping lookup.");
970 }
Dave Chinner3ed3a432010-03-05 02:00:42 +0000971 break;
972 }
973 if (!nimaps) {
974 /* nothing there */
975 goto next_buffer;
976 }
977 if (imap.br_startblock != DELAYSTARTBLOCK) {
978 /* been converted, ignore */
979 goto next_buffer;
980 }
981 WARN_ON(imap.br_blockcount == 0);
982
983 /*
984 * Note: while we initialise the firstblock/flist pair, they
985 * should never be used because blocks should never be
986 * allocated or freed for a delalloc extent and hence we need
987 * don't cancel or finish them after the xfs_bunmapi() call.
988 */
989 xfs_bmap_init(&flist, &firstblock);
990 error = xfs_bunmapi(NULL, ip, offset_fsb, 1, 0, 1, &firstblock,
Christoph Hellwigb4e91812010-06-23 18:11:15 +1000991 &flist, &done);
Dave Chinner3ed3a432010-03-05 02:00:42 +0000992
993 ASSERT(!flist.xbf_count && !flist.xbf_first);
994 if (error) {
995 /* something screwed, just bail */
Dave Chinnere8c37532010-03-15 02:36:35 +0000996 if (!XFS_FORCED_SHUTDOWN(ip->i_mount)) {
997 xfs_fs_cmn_err(CE_ALERT, ip->i_mount,
Dave Chinner3ed3a432010-03-05 02:00:42 +0000998 "page discard unable to remove delalloc mapping.");
Dave Chinnere8c37532010-03-15 02:36:35 +0000999 }
Dave Chinner3ed3a432010-03-05 02:00:42 +00001000 break;
1001 }
1002next_buffer:
1003 offset += len;
1004
1005 } while ((bh = bh->b_this_page) != head);
1006
1007 xfs_iunlock(ip, XFS_ILOCK_EXCL);
1008out_invalidate:
1009 xfs_vm_invalidatepage(page, 0);
1010 return;
1011}
1012
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013/*
Christoph Hellwig89f3b3632010-06-24 09:45:48 +10001014 * Write out a dirty page.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 *
Christoph Hellwig89f3b3632010-06-24 09:45:48 +10001016 * For delalloc space on the page we need to allocate space and flush it.
1017 * For unwritten space on the page we need to start the conversion to
1018 * regular allocated space.
Christoph Hellwig89f3b3632010-06-24 09:45:48 +10001019 * For any other dirty buffer heads on the page we should flush them.
1020 *
1021 * If we detect that a transaction would be required to flush the page, we
1022 * have to check the process flags first, if we are already in a transaction
1023 * or disk I/O during allocations is off, we need to fail the writepage and
1024 * redirty the page.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026STATIC int
Christoph Hellwig89f3b3632010-06-24 09:45:48 +10001027xfs_vm_writepage(
1028 struct page *page,
1029 struct writeback_control *wbc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030{
Christoph Hellwig89f3b3632010-06-24 09:45:48 +10001031 struct inode *inode = page->mapping->host;
Christoph Hellwig20cb52e2010-06-24 09:46:01 +10001032 int delalloc, unwritten;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +11001033 struct buffer_head *bh, *head;
Christoph Hellwig207d0412010-04-28 12:28:56 +00001034 struct xfs_bmbt_irec imap;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +11001035 xfs_ioend_t *ioend = NULL, *iohead = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036 loff_t offset;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +11001037 unsigned int type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038 __uint64_t end_offset;
Christoph Hellwigbd1556a2010-04-28 12:29:00 +00001039 pgoff_t end_index, last_index;
Christoph Hellwigd5cb48a2006-01-11 20:49:02 +11001040 ssize_t size, len;
Christoph Hellwig558e6892010-04-28 12:28:58 +00001041 int flags, err, imap_valid = 0, uptodate = 1;
Christoph Hellwig89f3b3632010-06-24 09:45:48 +10001042 int count = 0;
Christoph Hellwig20cb52e2010-06-24 09:46:01 +10001043 int all_bh = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044
Christoph Hellwig89f3b3632010-06-24 09:45:48 +10001045 trace_xfs_writepage(inode, page, 0);
1046
Christoph Hellwig20cb52e2010-06-24 09:46:01 +10001047 ASSERT(page_has_buffers(page));
1048
Christoph Hellwig89f3b3632010-06-24 09:45:48 +10001049 /*
1050 * Refuse to write the page out if we are called from reclaim context.
1051 *
1052 * This is primarily to avoid stack overflows when called from deep
1053 * used stacks in random callers for direct reclaim, but disabling
1054 * reclaim for kswap is a nice side-effect as kswapd causes rather
1055 * suboptimal I/O patters, too.
1056 *
1057 * This should really be done by the core VM, but until that happens
1058 * filesystems like XFS, btrfs and ext4 have to take care of this
1059 * by themselves.
1060 */
1061 if (current->flags & PF_MEMALLOC)
1062 goto out_fail;
1063
1064 /*
Christoph Hellwig20cb52e2010-06-24 09:46:01 +10001065 * We need a transaction if there are delalloc or unwritten buffers
1066 * on the page.
1067 *
1068 * If we need a transaction and the process flags say we are already
1069 * in a transaction, or no IO is allowed then mark the page dirty
1070 * again and leave the page as is.
Christoph Hellwig89f3b3632010-06-24 09:45:48 +10001071 */
Christoph Hellwig20cb52e2010-06-24 09:46:01 +10001072 xfs_count_page_state(page, &delalloc, &unwritten);
1073 if ((current->flags & PF_FSTRANS) && (delalloc || unwritten))
Christoph Hellwig89f3b3632010-06-24 09:45:48 +10001074 goto out_fail;
1075
1076 /*
1077 * Delay hooking up buffer heads until we have
1078 * made our go/no-go decision.
1079 */
1080 if (!page_has_buffers(page))
1081 create_empty_buffers(page, 1 << inode->i_blkbits, 0);
1082
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083 /* Is this page beyond the end of the file? */
1084 offset = i_size_read(inode);
1085 end_index = offset >> PAGE_CACHE_SHIFT;
1086 last_index = (offset - 1) >> PAGE_CACHE_SHIFT;
1087 if (page->index >= end_index) {
1088 if ((page->index >= end_index + 1) ||
1089 !(i_size_read(inode) & (PAGE_CACHE_SIZE - 1))) {
Christoph Hellwig89f3b3632010-06-24 09:45:48 +10001090 unlock_page(page);
Nathan Scott19d5bcf2005-11-02 15:14:09 +11001091 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092 }
1093 }
1094
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +11001095 end_offset = min_t(unsigned long long,
Christoph Hellwig20cb52e2010-06-24 09:46:01 +10001096 (xfs_off_t)(page->index + 1) << PAGE_CACHE_SHIFT,
1097 offset);
Nathan Scott24e17b52005-05-05 13:33:20 -07001098 len = 1 << inode->i_blkbits;
Nathan Scott24e17b52005-05-05 13:33:20 -07001099
Nathan Scott24e17b52005-05-05 13:33:20 -07001100 bh = head = page_buffers(page);
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +11001101 offset = page_offset(page);
David Chinnerdf3c7242007-05-24 15:27:03 +10001102 flags = BMAPI_READ;
Christoph Hellwig34a52c62010-04-28 12:28:57 +00001103 type = IO_NEW;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +11001104
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105 do {
1106 if (offset >= end_offset)
1107 break;
1108 if (!buffer_uptodate(bh))
1109 uptodate = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110
Eric Sandeen3d9b02e2010-06-24 09:45:30 +10001111 /*
1112 * A hole may still be marked uptodate because discard_buffer
1113 * leaves the flag set.
1114 */
1115 if (!buffer_mapped(bh) && buffer_uptodate(bh)) {
1116 ASSERT(!buffer_dirty(bh));
1117 imap_valid = 0;
1118 continue;
1119 }
1120
Christoph Hellwig558e6892010-04-28 12:28:58 +00001121 if (imap_valid)
1122 imap_valid = xfs_imap_valid(inode, &imap, offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123
Christoph Hellwig20cb52e2010-06-24 09:46:01 +10001124 if (buffer_unwritten(bh) || buffer_delay(bh)) {
David Chinnereffd1202007-06-18 16:49:58 +10001125 int new_ioend = 0;
1126
David Chinnerdf3c7242007-05-24 15:27:03 +10001127 /*
Christoph Hellwig6c4fe192006-01-11 20:49:28 +11001128 * Make sure we don't use a read-only iomap
1129 */
David Chinnerdf3c7242007-05-24 15:27:03 +10001130 if (flags == BMAPI_READ)
Christoph Hellwig558e6892010-04-28 12:28:58 +00001131 imap_valid = 0;
Christoph Hellwig6c4fe192006-01-11 20:49:28 +11001132
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +11001133 if (buffer_unwritten(bh)) {
Christoph Hellwig34a52c62010-04-28 12:28:57 +00001134 type = IO_UNWRITTEN;
Nathan Scott82721452006-04-11 15:10:55 +10001135 flags = BMAPI_WRITE | BMAPI_IGNSTATE;
Christoph Hellwigd5cb48a2006-01-11 20:49:02 +11001136 } else if (buffer_delay(bh)) {
Christoph Hellwig34a52c62010-04-28 12:28:57 +00001137 type = IO_DELAY;
Christoph Hellwig89f3b3632010-06-24 09:45:48 +10001138 flags = BMAPI_ALLOCATE;
1139
1140 if (wbc->sync_mode == WB_SYNC_NONE &&
1141 wbc->nonblocking)
1142 flags |= BMAPI_TRYLOCK;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +11001143 }
1144
Christoph Hellwig558e6892010-04-28 12:28:58 +00001145 if (!imap_valid) {
David Chinnereffd1202007-06-18 16:49:58 +10001146 /*
Christoph Hellwig20cb52e2010-06-24 09:46:01 +10001147 * If we didn't have a valid mapping then we
David Chinnereffd1202007-06-18 16:49:58 +10001148 * need to ensure that we put the new mapping
1149 * in a new ioend structure. This needs to be
1150 * done to ensure that the ioends correctly
1151 * reflect the block mappings at io completion
1152 * for unwritten extent conversion.
1153 */
1154 new_ioend = 1;
Christoph Hellwig20cb52e2010-06-24 09:46:01 +10001155 err = xfs_map_blocks(inode, offset, len,
Christoph Hellwig207d0412010-04-28 12:28:56 +00001156 &imap, flags);
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +11001157 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158 goto error;
Christoph Hellwig558e6892010-04-28 12:28:58 +00001159 imap_valid = xfs_imap_valid(inode, &imap,
1160 offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161 }
Christoph Hellwig558e6892010-04-28 12:28:58 +00001162 if (imap_valid) {
Christoph Hellwig207d0412010-04-28 12:28:56 +00001163 xfs_map_at_offset(inode, bh, &imap, offset);
Christoph Hellwig89f3b3632010-06-24 09:45:48 +10001164 xfs_add_to_ioend(inode, bh, offset, type,
1165 &ioend, new_ioend);
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +11001166 count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167 }
Christoph Hellwig89f3b3632010-06-24 09:45:48 +10001168 } else if (buffer_uptodate(bh)) {
Christoph Hellwig6c4fe192006-01-11 20:49:28 +11001169 /*
1170 * we got here because the buffer is already mapped.
1171 * That means it must already have extents allocated
1172 * underneath it. Map the extent by reading it.
1173 */
Christoph Hellwig558e6892010-04-28 12:28:58 +00001174 if (!imap_valid || flags != BMAPI_READ) {
Christoph Hellwig6c4fe192006-01-11 20:49:28 +11001175 flags = BMAPI_READ;
Christoph Hellwig20cb52e2010-06-24 09:46:01 +10001176 size = xfs_probe_cluster(inode, page, bh, head);
Christoph Hellwig6c4fe192006-01-11 20:49:28 +11001177 err = xfs_map_blocks(inode, offset, size,
Christoph Hellwig207d0412010-04-28 12:28:56 +00001178 &imap, flags);
Christoph Hellwig6c4fe192006-01-11 20:49:28 +11001179 if (err)
1180 goto error;
Christoph Hellwig558e6892010-04-28 12:28:58 +00001181 imap_valid = xfs_imap_valid(inode, &imap,
1182 offset);
Christoph Hellwig6c4fe192006-01-11 20:49:28 +11001183 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184
David Chinnerdf3c7242007-05-24 15:27:03 +10001185 /*
Christoph Hellwig34a52c62010-04-28 12:28:57 +00001186 * We set the type to IO_NEW in case we are doing a
David Chinnerdf3c7242007-05-24 15:27:03 +10001187 * small write at EOF that is extending the file but
1188 * without needing an allocation. We need to update the
1189 * file size on I/O completion in this case so it is
1190 * the same case as having just allocated a new extent
1191 * that we are writing into for the first time.
1192 */
Christoph Hellwig34a52c62010-04-28 12:28:57 +00001193 type = IO_NEW;
Nick Pigginca5de402008-08-02 12:02:13 +02001194 if (trylock_buffer(bh)) {
Christoph Hellwig558e6892010-04-28 12:28:58 +00001195 if (imap_valid)
Christoph Hellwig6c4fe192006-01-11 20:49:28 +11001196 all_bh = 1;
Christoph Hellwig7336cea2006-01-11 20:49:16 +11001197 xfs_add_to_ioend(inode, bh, offset, type,
Christoph Hellwig558e6892010-04-28 12:28:58 +00001198 &ioend, !imap_valid);
Christoph Hellwigd5cb48a2006-01-11 20:49:02 +11001199 count++;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +11001200 } else {
Christoph Hellwig558e6892010-04-28 12:28:58 +00001201 imap_valid = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202 }
Christoph Hellwig89f3b3632010-06-24 09:45:48 +10001203 } else if (PageUptodate(page)) {
Christoph Hellwig20cb52e2010-06-24 09:46:01 +10001204 ASSERT(buffer_mapped(bh));
Christoph Hellwig558e6892010-04-28 12:28:58 +00001205 imap_valid = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206 }
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +11001207
1208 if (!iohead)
1209 iohead = ioend;
1210
1211 } while (offset += len, ((bh = bh->b_this_page) != head));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212
1213 if (uptodate && bh == head)
1214 SetPageUptodate(page);
1215
Christoph Hellwig89f3b3632010-06-24 09:45:48 +10001216 xfs_start_page_writeback(page, 1, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217
Christoph Hellwig558e6892010-04-28 12:28:58 +00001218 if (ioend && imap_valid) {
Christoph Hellwigbd1556a2010-04-28 12:29:00 +00001219 xfs_off_t end_index;
Christoph Hellwig8699bb02010-04-28 12:28:54 +00001220
Christoph Hellwigbd1556a2010-04-28 12:29:00 +00001221 end_index = imap.br_startoff + imap.br_blockcount;
1222
1223 /* to bytes */
1224 end_index <<= inode->i_blkbits;
1225
1226 /* to pages */
1227 end_index = (end_index - 1) >> PAGE_CACHE_SHIFT;
1228
1229 /* check against file size */
1230 if (end_index > last_index)
1231 end_index = last_index;
1232
Christoph Hellwig207d0412010-04-28 12:28:56 +00001233 xfs_cluster_write(inode, page->index + 1, &imap, &ioend,
Christoph Hellwig89f3b3632010-06-24 09:45:48 +10001234 wbc, all_bh, end_index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235 }
1236
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +11001237 if (iohead)
Christoph Hellwig06342cf2009-10-30 09:09:15 +00001238 xfs_submit_ioend(wbc, iohead);
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +11001239
Christoph Hellwig89f3b3632010-06-24 09:45:48 +10001240 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241
1242error:
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +11001243 if (iohead)
1244 xfs_cancel_ioend(iohead);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245
Christoph Hellwig20cb52e2010-06-24 09:46:01 +10001246 xfs_aops_discard_page(page);
Christoph Hellwig89f3b3632010-06-24 09:45:48 +10001247 ClearPageUptodate(page);
1248 unlock_page(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249 return err;
Nathan Scottf51623b2006-03-14 13:26:27 +11001250
1251out_fail:
1252 redirty_page_for_writepage(wbc, page);
1253 unlock_page(page);
1254 return 0;
Nathan Scottf51623b2006-03-14 13:26:27 +11001255}
1256
Nathan Scott7d4fb402006-06-09 15:27:16 +10001257STATIC int
1258xfs_vm_writepages(
1259 struct address_space *mapping,
1260 struct writeback_control *wbc)
1261{
Christoph Hellwigb3aea4e2007-08-29 11:44:37 +10001262 xfs_iflags_clear(XFS_I(mapping->host), XFS_ITRUNCATED);
Nathan Scott7d4fb402006-06-09 15:27:16 +10001263 return generic_writepages(mapping, wbc);
1264}
1265
Nathan Scottf51623b2006-03-14 13:26:27 +11001266/*
1267 * Called to move a page into cleanable state - and from there
Christoph Hellwig89f3b3632010-06-24 09:45:48 +10001268 * to be released. The page should already be clean. We always
Nathan Scottf51623b2006-03-14 13:26:27 +11001269 * have buffer heads in this call.
1270 *
Christoph Hellwig89f3b3632010-06-24 09:45:48 +10001271 * Returns 1 if the page is ok to release, 0 otherwise.
Nathan Scottf51623b2006-03-14 13:26:27 +11001272 */
1273STATIC int
Nathan Scott238f4c52006-03-17 17:26:25 +11001274xfs_vm_releasepage(
Nathan Scottf51623b2006-03-14 13:26:27 +11001275 struct page *page,
1276 gfp_t gfp_mask)
1277{
Christoph Hellwig20cb52e2010-06-24 09:46:01 +10001278 int delalloc, unwritten;
Nathan Scottf51623b2006-03-14 13:26:27 +11001279
Christoph Hellwig89f3b3632010-06-24 09:45:48 +10001280 trace_xfs_releasepage(page->mapping->host, page, 0);
Nathan Scott238f4c52006-03-17 17:26:25 +11001281
Christoph Hellwig20cb52e2010-06-24 09:46:01 +10001282 xfs_count_page_state(page, &delalloc, &unwritten);
Nathan Scottf51623b2006-03-14 13:26:27 +11001283
Christoph Hellwig89f3b3632010-06-24 09:45:48 +10001284 if (WARN_ON(delalloc))
1285 return 0;
1286 if (WARN_ON(unwritten))
Nathan Scottf51623b2006-03-14 13:26:27 +11001287 return 0;
1288
Nathan Scottf51623b2006-03-14 13:26:27 +11001289 return try_to_free_buffers(page);
1290}
1291
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292STATIC int
Nathan Scottc2536662006-03-29 10:44:40 +10001293__xfs_get_blocks(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294 struct inode *inode,
1295 sector_t iblock,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296 struct buffer_head *bh_result,
1297 int create,
Christoph Hellwigf2bde9b2010-06-24 11:44:35 +10001298 int direct)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299{
Christoph Hellwigf2bde9b2010-06-24 11:44:35 +10001300 int flags = create ? BMAPI_WRITE : BMAPI_READ;
Christoph Hellwig207d0412010-04-28 12:28:56 +00001301 struct xfs_bmbt_irec imap;
Nathan Scottfdc7ed72005-11-02 15:13:13 +11001302 xfs_off_t offset;
1303 ssize_t size;
Christoph Hellwig207d0412010-04-28 12:28:56 +00001304 int nimap = 1;
1305 int new = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307
Nathan Scottfdc7ed72005-11-02 15:13:13 +11001308 offset = (xfs_off_t)iblock << inode->i_blkbits;
Nathan Scottc2536662006-03-29 10:44:40 +10001309 ASSERT(bh_result->b_size >= (1 << inode->i_blkbits));
1310 size = bh_result->b_size;
Lachlan McIlroy364f3582008-09-17 16:50:14 +10001311
1312 if (!create && direct && offset >= i_size_read(inode))
1313 return 0;
1314
Christoph Hellwigf2bde9b2010-06-24 11:44:35 +10001315 if (direct && create)
1316 flags |= BMAPI_DIRECT;
1317
1318 error = xfs_iomap(XFS_I(inode), offset, size, flags, &imap, &nimap,
1319 &new);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320 if (error)
1321 return -error;
Christoph Hellwig207d0412010-04-28 12:28:56 +00001322 if (nimap == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323 return 0;
1324
Christoph Hellwig207d0412010-04-28 12:28:56 +00001325 if (imap.br_startblock != HOLESTARTBLOCK &&
1326 imap.br_startblock != DELAYSTARTBLOCK) {
Nathan Scott87cbc492006-03-14 13:26:43 +11001327 /*
1328 * For unwritten extents do not report a disk address on
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329 * the read case (treat as if we're reading into a hole).
1330 */
Christoph Hellwig207d0412010-04-28 12:28:56 +00001331 if (create || !ISUNWRITTEN(&imap))
1332 xfs_map_buffer(inode, bh_result, &imap, offset);
1333 if (create && ISUNWRITTEN(&imap)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334 if (direct)
1335 bh_result->b_private = inode;
1336 set_buffer_unwritten(bh_result);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337 }
1338 }
1339
Nathan Scottc2536662006-03-29 10:44:40 +10001340 /*
1341 * If this is a realtime file, data may be on a different device.
1342 * to that pointed to from the buffer_head b_bdev currently.
1343 */
Christoph Hellwig046f1682010-04-28 12:28:52 +00001344 bh_result->b_bdev = xfs_find_bdev_for_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345
Nathan Scottc2536662006-03-29 10:44:40 +10001346 /*
David Chinner549054a2007-02-10 18:36:35 +11001347 * If we previously allocated a block out beyond eof and we are now
1348 * coming back to use it then we will need to flag it as new even if it
1349 * has a disk address.
1350 *
1351 * With sub-block writes into unwritten extents we also need to mark
1352 * the buffer as new so that the unwritten parts of the buffer gets
1353 * correctly zeroed.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354 */
1355 if (create &&
1356 ((!buffer_mapped(bh_result) && !buffer_uptodate(bh_result)) ||
David Chinner549054a2007-02-10 18:36:35 +11001357 (offset >= i_size_read(inode)) ||
Christoph Hellwig207d0412010-04-28 12:28:56 +00001358 (new || ISUNWRITTEN(&imap))))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359 set_buffer_new(bh_result);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360
Christoph Hellwig207d0412010-04-28 12:28:56 +00001361 if (imap.br_startblock == DELAYSTARTBLOCK) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362 BUG_ON(direct);
1363 if (create) {
1364 set_buffer_uptodate(bh_result);
1365 set_buffer_mapped(bh_result);
1366 set_buffer_delay(bh_result);
1367 }
1368 }
1369
Christoph Hellwig2b8f12b2010-04-28 12:28:59 +00001370 /*
1371 * If this is O_DIRECT or the mpage code calling tell them how large
1372 * the mapping is, so that we can avoid repeated get_blocks calls.
1373 */
Nathan Scottc2536662006-03-29 10:44:40 +10001374 if (direct || size > (1 << inode->i_blkbits)) {
Christoph Hellwig2b8f12b2010-04-28 12:28:59 +00001375 xfs_off_t mapping_size;
Christoph Hellwig9563b3d2010-04-28 12:28:53 +00001376
Christoph Hellwig2b8f12b2010-04-28 12:28:59 +00001377 mapping_size = imap.br_startoff + imap.br_blockcount - iblock;
1378 mapping_size <<= inode->i_blkbits;
1379
1380 ASSERT(mapping_size > 0);
1381 if (mapping_size > size)
1382 mapping_size = size;
1383 if (mapping_size > LONG_MAX)
1384 mapping_size = LONG_MAX;
1385
1386 bh_result->b_size = mapping_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387 }
1388
1389 return 0;
1390}
1391
1392int
Nathan Scottc2536662006-03-29 10:44:40 +10001393xfs_get_blocks(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394 struct inode *inode,
1395 sector_t iblock,
1396 struct buffer_head *bh_result,
1397 int create)
1398{
Christoph Hellwigf2bde9b2010-06-24 11:44:35 +10001399 return __xfs_get_blocks(inode, iblock, bh_result, create, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400}
1401
1402STATIC int
Nathan Scotte4c573b2006-03-14 13:54:26 +11001403xfs_get_blocks_direct(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404 struct inode *inode,
1405 sector_t iblock,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406 struct buffer_head *bh_result,
1407 int create)
1408{
Christoph Hellwigf2bde9b2010-06-24 11:44:35 +10001409 return __xfs_get_blocks(inode, iblock, bh_result, create, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410}
1411
Christoph Hellwigf0973862005-09-05 08:22:52 +10001412STATIC void
Nathan Scotte4c573b2006-03-14 13:54:26 +11001413xfs_end_io_direct(
Christoph Hellwigf0973862005-09-05 08:22:52 +10001414 struct kiocb *iocb,
1415 loff_t offset,
1416 ssize_t size,
1417 void *private)
1418{
1419 xfs_ioend_t *ioend = iocb->private;
1420
1421 /*
1422 * Non-NULL private data means we need to issue a transaction to
1423 * convert a range from unwritten to written extents. This needs
Nathan Scottc41564b2006-03-29 08:55:14 +10001424 * to happen from process context but aio+dio I/O completion
Christoph Hellwigf0973862005-09-05 08:22:52 +10001425 * happens from irq context so we need to defer it to a workqueue.
Nathan Scottc41564b2006-03-29 08:55:14 +10001426 * This is not necessary for synchronous direct I/O, but we do
Christoph Hellwigf0973862005-09-05 08:22:52 +10001427 * it anyway to keep the code uniform and simpler.
1428 *
David Chinnere927af92007-06-05 16:24:36 +10001429 * Well, if only it were that simple. Because synchronous direct I/O
1430 * requires extent conversion to occur *before* we return to userspace,
1431 * we have to wait for extent conversion to complete. Look at the
1432 * iocb that has been passed to us to determine if this is AIO or
1433 * not. If it is synchronous, tell xfs_finish_ioend() to kick the
1434 * workqueue and wait for it to complete.
1435 *
Christoph Hellwigf0973862005-09-05 08:22:52 +10001436 * The core direct I/O code might be changed to always call the
1437 * completion handler in the future, in which case all this can
1438 * go away.
1439 */
Lachlan McIlroyba87ea62007-05-08 13:49:46 +10001440 ioend->io_offset = offset;
1441 ioend->io_size = size;
Christoph Hellwig34a52c62010-04-28 12:28:57 +00001442 if (ioend->io_type == IO_READ) {
David Chinnere927af92007-06-05 16:24:36 +10001443 xfs_finish_ioend(ioend, 0);
Lachlan McIlroyba87ea62007-05-08 13:49:46 +10001444 } else if (private && size > 0) {
David Chinnere927af92007-06-05 16:24:36 +10001445 xfs_finish_ioend(ioend, is_sync_kiocb(iocb));
Christoph Hellwigf0973862005-09-05 08:22:52 +10001446 } else {
Lachlan McIlroyba87ea62007-05-08 13:49:46 +10001447 /*
1448 * A direct I/O write ioend starts it's life in unwritten
1449 * state in case they map an unwritten extent. This write
1450 * didn't map an unwritten extent so switch it's completion
1451 * handler.
1452 */
Christoph Hellwig34a52c62010-04-28 12:28:57 +00001453 ioend->io_type = IO_NEW;
David Chinnere927af92007-06-05 16:24:36 +10001454 xfs_finish_ioend(ioend, 0);
Christoph Hellwigf0973862005-09-05 08:22:52 +10001455 }
1456
1457 /*
Nathan Scottc41564b2006-03-29 08:55:14 +10001458 * blockdev_direct_IO can return an error even after the I/O
Christoph Hellwigf0973862005-09-05 08:22:52 +10001459 * completion handler was called. Thus we need to protect
1460 * against double-freeing.
1461 */
1462 iocb->private = NULL;
1463}
1464
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465STATIC ssize_t
Nathan Scotte4c573b2006-03-14 13:54:26 +11001466xfs_vm_direct_IO(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467 int rw,
1468 struct kiocb *iocb,
1469 const struct iovec *iov,
1470 loff_t offset,
1471 unsigned long nr_segs)
1472{
1473 struct file *file = iocb->ki_filp;
1474 struct inode *inode = file->f_mapping->host;
Christoph Hellwig6214ed42007-09-14 15:23:17 +10001475 struct block_device *bdev;
Christoph Hellwigf0973862005-09-05 08:22:52 +10001476 ssize_t ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477
Christoph Hellwig046f1682010-04-28 12:28:52 +00001478 bdev = xfs_find_bdev_for_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479
Christoph Hellwig5fe878ae2009-12-15 16:47:50 -08001480 iocb->private = xfs_alloc_ioend(inode, rw == WRITE ?
Christoph Hellwig34a52c62010-04-28 12:28:57 +00001481 IO_UNWRITTEN : IO_READ);
Christoph Hellwig5fe878ae2009-12-15 16:47:50 -08001482
1483 ret = blockdev_direct_IO_no_locking(rw, iocb, inode, bdev, iov,
1484 offset, nr_segs,
1485 xfs_get_blocks_direct,
1486 xfs_end_io_direct);
Christoph Hellwigf0973862005-09-05 08:22:52 +10001487
Zach Brown8459d862006-12-10 02:21:05 -08001488 if (unlikely(ret != -EIOCBQUEUED && iocb->private))
Christoph Hellwigf0973862005-09-05 08:22:52 +10001489 xfs_destroy_ioend(iocb->private);
1490 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491}
1492
Nathan Scottf51623b2006-03-14 13:26:27 +11001493STATIC int
Nick Piggind79689c2007-10-16 01:25:06 -07001494xfs_vm_write_begin(
Nathan Scottf51623b2006-03-14 13:26:27 +11001495 struct file *file,
Nick Piggind79689c2007-10-16 01:25:06 -07001496 struct address_space *mapping,
1497 loff_t pos,
1498 unsigned len,
1499 unsigned flags,
1500 struct page **pagep,
1501 void **fsdata)
Nathan Scottf51623b2006-03-14 13:26:27 +11001502{
Nick Piggind79689c2007-10-16 01:25:06 -07001503 *pagep = NULL;
1504 return block_write_begin(file, mapping, pos, len, flags, pagep, fsdata,
1505 xfs_get_blocks);
Nathan Scottf51623b2006-03-14 13:26:27 +11001506}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507
1508STATIC sector_t
Nathan Scotte4c573b2006-03-14 13:54:26 +11001509xfs_vm_bmap(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510 struct address_space *mapping,
1511 sector_t block)
1512{
1513 struct inode *inode = (struct inode *)mapping->host;
Christoph Hellwig739bfb22007-08-29 10:58:01 +10001514 struct xfs_inode *ip = XFS_I(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515
Lachlan McIlroycf441ee2008-02-07 16:42:19 +11001516 xfs_itrace_entry(XFS_I(inode));
Christoph Hellwig126468b2008-03-06 13:44:57 +11001517 xfs_ilock(ip, XFS_IOLOCK_SHARED);
Christoph Hellwig739bfb22007-08-29 10:58:01 +10001518 xfs_flush_pages(ip, (xfs_off_t)0, -1, 0, FI_REMAPF);
Christoph Hellwig126468b2008-03-06 13:44:57 +11001519 xfs_iunlock(ip, XFS_IOLOCK_SHARED);
Nathan Scottc2536662006-03-29 10:44:40 +10001520 return generic_block_bmap(mapping, block, xfs_get_blocks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521}
1522
1523STATIC int
Nathan Scotte4c573b2006-03-14 13:54:26 +11001524xfs_vm_readpage(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525 struct file *unused,
1526 struct page *page)
1527{
Nathan Scottc2536662006-03-29 10:44:40 +10001528 return mpage_readpage(page, xfs_get_blocks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529}
1530
1531STATIC int
Nathan Scotte4c573b2006-03-14 13:54:26 +11001532xfs_vm_readpages(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533 struct file *unused,
1534 struct address_space *mapping,
1535 struct list_head *pages,
1536 unsigned nr_pages)
1537{
Nathan Scottc2536662006-03-29 10:44:40 +10001538 return mpage_readpages(mapping, pages, nr_pages, xfs_get_blocks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539}
1540
Christoph Hellwigf5e54d62006-06-28 04:26:44 -07001541const struct address_space_operations xfs_address_space_operations = {
Nathan Scotte4c573b2006-03-14 13:54:26 +11001542 .readpage = xfs_vm_readpage,
1543 .readpages = xfs_vm_readpages,
1544 .writepage = xfs_vm_writepage,
Nathan Scott7d4fb402006-06-09 15:27:16 +10001545 .writepages = xfs_vm_writepages,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546 .sync_page = block_sync_page,
Nathan Scott238f4c52006-03-17 17:26:25 +11001547 .releasepage = xfs_vm_releasepage,
1548 .invalidatepage = xfs_vm_invalidatepage,
Nick Piggind79689c2007-10-16 01:25:06 -07001549 .write_begin = xfs_vm_write_begin,
1550 .write_end = generic_write_end,
Nathan Scotte4c573b2006-03-14 13:54:26 +11001551 .bmap = xfs_vm_bmap,
1552 .direct_IO = xfs_vm_direct_IO,
Christoph Lametere965f962006-02-01 03:05:41 -08001553 .migratepage = buffer_migrate_page,
Hisashi Hifumibddaafa2009-03-29 09:53:38 +02001554 .is_partially_uptodate = block_is_partially_uptodate,
Andi Kleenaa261f52009-09-16 11:50:16 +02001555 .error_remove_page = generic_error_remove_page,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556};