blob: 8dad722c00410f25294f0a8fec608fcbd56e74e8 [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"
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include "xfs_log.h"
20#include "xfs_sb.h"
Nathan Scotta844f452005-11-02 14:38:42 +110021#include "xfs_ag.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include "xfs_trans.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include "xfs_mount.h"
24#include "xfs_bmap_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include "xfs_dinode.h"
26#include "xfs_inode.h"
Christoph Hellwig281627d2012-03-13 08:41:05 +000027#include "xfs_inode_item.h"
Nathan Scotta844f452005-11-02 14:38:42 +110028#include "xfs_alloc.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include "xfs_error.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include "xfs_iomap.h"
Christoph Hellwig739bfb22007-08-29 10:58:01 +100031#include "xfs_vnodeops.h"
Christoph Hellwig0b1b2132009-12-14 23:14:59 +000032#include "xfs_trace.h"
Dave Chinner3ed3a432010-03-05 02:00:42 +000033#include "xfs_bmap.h"
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090034#include <linux/gfp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include <linux/mpage.h>
Christoph Hellwig10ce4442006-01-11 20:48:14 +110036#include <linux/pagevec.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#include <linux/writeback.h>
38
Christoph Hellwig0b1b2132009-12-14 23:14:59 +000039void
Nathan Scottf51623b2006-03-14 13:26:27 +110040xfs_count_page_state(
41 struct page *page,
42 int *delalloc,
Nathan Scottf51623b2006-03-14 13:26:27 +110043 int *unwritten)
44{
45 struct buffer_head *bh, *head;
46
Christoph Hellwig20cb52e2010-06-24 09:46:01 +100047 *delalloc = *unwritten = 0;
Nathan Scottf51623b2006-03-14 13:26:27 +110048
49 bh = head = page_buffers(page);
50 do {
Christoph Hellwig20cb52e2010-06-24 09:46:01 +100051 if (buffer_unwritten(bh))
Nathan Scottf51623b2006-03-14 13:26:27 +110052 (*unwritten) = 1;
53 else if (buffer_delay(bh))
54 (*delalloc) = 1;
55 } while ((bh = bh->b_this_page) != head);
56}
57
Christoph Hellwig6214ed42007-09-14 15:23:17 +100058STATIC struct block_device *
59xfs_find_bdev_for_inode(
Christoph Hellwig046f1682010-04-28 12:28:52 +000060 struct inode *inode)
Christoph Hellwig6214ed42007-09-14 15:23:17 +100061{
Christoph Hellwig046f1682010-04-28 12:28:52 +000062 struct xfs_inode *ip = XFS_I(inode);
Christoph Hellwig6214ed42007-09-14 15:23:17 +100063 struct xfs_mount *mp = ip->i_mount;
64
Eric Sandeen71ddabb2007-11-23 16:29:42 +110065 if (XFS_IS_REALTIME_INODE(ip))
Christoph Hellwig6214ed42007-09-14 15:23:17 +100066 return mp->m_rtdev_targp->bt_bdev;
67 else
68 return mp->m_ddev_targp->bt_bdev;
69}
70
Christoph Hellwig0829c362005-09-02 16:58:49 +100071/*
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +110072 * We're now finished for good with this ioend structure.
73 * Update the page state via the associated buffer_heads,
74 * release holds on the inode and bio, and finally free
75 * up memory. Do not use the ioend after this.
76 */
Christoph Hellwig0829c362005-09-02 16:58:49 +100077STATIC void
78xfs_destroy_ioend(
79 xfs_ioend_t *ioend)
80{
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +110081 struct buffer_head *bh, *next;
82
83 for (bh = ioend->io_buffer_head; bh; bh = next) {
84 next = bh->b_private;
Nathan Scott7d04a332006-06-09 14:58:38 +100085 bh->b_end_io(bh, !ioend->io_error);
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +110086 }
Christoph Hellwig583fa582008-12-03 12:20:38 +010087
Christoph Hellwigc859cdd2011-08-23 08:28:10 +000088 if (ioend->io_iocb) {
Christoph Hellwig04f658e2011-08-24 05:59:25 +000089 if (ioend->io_isasync) {
90 aio_complete(ioend->io_iocb, ioend->io_error ?
91 ioend->io_error : ioend->io_result, 0);
92 }
Christoph Hellwigc859cdd2011-08-23 08:28:10 +000093 inode_dio_done(ioend->io_inode);
94 }
Christoph Hellwig4a06fd22011-08-23 08:28:13 +000095
Christoph Hellwig0829c362005-09-02 16:58:49 +100096 mempool_free(ioend, xfs_ioend_pool);
Linus Torvalds1da177e2005-04-16 15:20:36 -070097}
98
99/*
Christoph Hellwigfc0063c2011-08-23 08:28:11 +0000100 * Fast and loose check if this write could update the on-disk inode size.
101 */
102static inline bool xfs_ioend_is_append(struct xfs_ioend *ioend)
103{
104 return ioend->io_offset + ioend->io_size >
105 XFS_I(ioend->io_inode)->i_d.di_size;
106}
107
Christoph Hellwig281627d2012-03-13 08:41:05 +0000108STATIC int
109xfs_setfilesize_trans_alloc(
110 struct xfs_ioend *ioend)
111{
112 struct xfs_mount *mp = XFS_I(ioend->io_inode)->i_mount;
113 struct xfs_trans *tp;
114 int error;
115
116 tp = xfs_trans_alloc(mp, XFS_TRANS_FSYNC_TS);
117
118 error = xfs_trans_reserve(tp, 0, XFS_FSYNC_TS_LOG_RES(mp), 0, 0, 0);
119 if (error) {
120 xfs_trans_cancel(tp, 0);
121 return error;
122 }
123
124 ioend->io_append_trans = tp;
125
126 /*
127 * We hand off the transaction to the completion thread now, so
128 * clear the flag here.
129 */
130 current_restore_flags_nested(&tp->t_pflags, PF_FSTRANS);
131 return 0;
132}
133
Christoph Hellwigfc0063c2011-08-23 08:28:11 +0000134/*
Christoph Hellwig2813d682011-12-18 20:00:12 +0000135 * Update on-disk file size now that data has been written to disk.
Lachlan McIlroyba87ea62007-05-08 13:49:46 +1000136 */
Christoph Hellwig281627d2012-03-13 08:41:05 +0000137STATIC int
Lachlan McIlroyba87ea62007-05-08 13:49:46 +1000138xfs_setfilesize(
Christoph Hellwigaa6bf012012-02-29 09:53:48 +0000139 struct xfs_ioend *ioend)
Lachlan McIlroyba87ea62007-05-08 13:49:46 +1000140{
Christoph Hellwigaa6bf012012-02-29 09:53:48 +0000141 struct xfs_inode *ip = XFS_I(ioend->io_inode);
Christoph Hellwig281627d2012-03-13 08:41:05 +0000142 struct xfs_trans *tp = ioend->io_append_trans;
Lachlan McIlroyba87ea62007-05-08 13:49:46 +1000143 xfs_fsize_t isize;
Lachlan McIlroyba87ea62007-05-08 13:49:46 +1000144
Christoph Hellwig281627d2012-03-13 08:41:05 +0000145 /*
146 * The transaction was allocated in the I/O submission thread,
147 * thus we need to mark ourselves as beeing in a transaction
148 * manually.
149 */
150 current_set_flags_nested(&tp->t_pflags, PF_FSTRANS);
151
Christoph Hellwigaa6bf012012-02-29 09:53:48 +0000152 xfs_ilock(ip, XFS_ILOCK_EXCL);
Christoph Hellwig6923e682012-02-29 09:53:49 +0000153 isize = xfs_new_eof(ip, ioend->io_offset + ioend->io_size);
Christoph Hellwig281627d2012-03-13 08:41:05 +0000154 if (!isize) {
155 xfs_iunlock(ip, XFS_ILOCK_EXCL);
156 xfs_trans_cancel(tp, 0);
157 return 0;
Lachlan McIlroyba87ea62007-05-08 13:49:46 +1000158 }
159
Christoph Hellwig281627d2012-03-13 08:41:05 +0000160 trace_xfs_setfilesize(ip, ioend->io_offset, ioend->io_size);
161
162 ip->i_d.di_size = isize;
163 xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL);
164 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
165
166 return xfs_trans_commit(tp, 0);
Christoph Hellwig0829c362005-09-02 16:58:49 +1000167}
168
169/*
Christoph Hellwig209fb872010-07-18 21:17:11 +0000170 * Schedule IO completion handling on the final put of an ioend.
Christoph Hellwigfc0063c2011-08-23 08:28:11 +0000171 *
172 * If there is no work to do we might as well call it a day and free the
173 * ioend right now.
Dave Chinnerc626d172009-04-06 18:42:11 +0200174 */
175STATIC void
176xfs_finish_ioend(
Christoph Hellwig209fb872010-07-18 21:17:11 +0000177 struct xfs_ioend *ioend)
Dave Chinnerc626d172009-04-06 18:42:11 +0200178{
179 if (atomic_dec_and_test(&ioend->io_remaining)) {
Christoph Hellwigaa6bf012012-02-29 09:53:48 +0000180 struct xfs_mount *mp = XFS_I(ioend->io_inode)->i_mount;
181
Christoph Hellwig209fb872010-07-18 21:17:11 +0000182 if (ioend->io_type == IO_UNWRITTEN)
Christoph Hellwigaa6bf012012-02-29 09:53:48 +0000183 queue_work(mp->m_unwritten_workqueue, &ioend->io_work);
Christoph Hellwig281627d2012-03-13 08:41:05 +0000184 else if (ioend->io_append_trans)
Christoph Hellwigaa6bf012012-02-29 09:53:48 +0000185 queue_work(mp->m_data_workqueue, &ioend->io_work);
Christoph Hellwigfc0063c2011-08-23 08:28:11 +0000186 else
187 xfs_destroy_ioend(ioend);
Dave Chinnerc626d172009-04-06 18:42:11 +0200188 }
189}
190
191/*
Dave Chinner77d7a0c2010-02-17 05:36:29 +0000192 * IO write completion.
193 */
194STATIC void
195xfs_end_io(
196 struct work_struct *work)
197{
198 xfs_ioend_t *ioend = container_of(work, xfs_ioend_t, io_work);
199 struct xfs_inode *ip = XFS_I(ioend->io_inode);
Dave Chinner69418932010-03-04 00:57:09 +0000200 int error = 0;
Dave Chinner77d7a0c2010-02-17 05:36:29 +0000201
Christoph Hellwig04f658e2011-08-24 05:59:25 +0000202 if (XFS_FORCED_SHUTDOWN(ip->i_mount)) {
Christoph Hellwig810627d2011-11-08 08:56:15 +0000203 ioend->io_error = -EIO;
Christoph Hellwig04f658e2011-08-24 05:59:25 +0000204 goto done;
205 }
206 if (ioend->io_error)
207 goto done;
208
Dave Chinner77d7a0c2010-02-17 05:36:29 +0000209 /*
210 * For unwritten extents we need to issue transactions to convert a
211 * range to normal written extens after the data I/O has finished.
212 */
Christoph Hellwig04f658e2011-08-24 05:59:25 +0000213 if (ioend->io_type == IO_UNWRITTEN) {
Christoph Hellwig281627d2012-03-13 08:41:05 +0000214 /*
215 * For buffered I/O we never preallocate a transaction when
216 * doing the unwritten extent conversion, but for direct I/O
217 * we do not know if we are converting an unwritten extent
218 * or not at the point where we preallocate the transaction.
219 */
220 if (ioend->io_append_trans) {
221 ASSERT(ioend->io_isdirect);
222
223 current_set_flags_nested(
224 &ioend->io_append_trans->t_pflags, PF_FSTRANS);
225 xfs_trans_cancel(ioend->io_append_trans, 0);
226 }
227
Dave Chinner77d7a0c2010-02-17 05:36:29 +0000228 error = xfs_iomap_write_unwritten(ip, ioend->io_offset,
229 ioend->io_size);
Christoph Hellwig04f658e2011-08-24 05:59:25 +0000230 if (error) {
231 ioend->io_error = -error;
232 goto done;
233 }
Christoph Hellwig281627d2012-03-13 08:41:05 +0000234 } else if (ioend->io_append_trans) {
235 error = xfs_setfilesize(ioend);
236 if (error)
237 ioend->io_error = -error;
Christoph Hellwig84803fb2012-02-29 09:53:50 +0000238 } else {
Christoph Hellwig281627d2012-03-13 08:41:05 +0000239 ASSERT(!xfs_ioend_is_append(ioend));
Dave Chinner77d7a0c2010-02-17 05:36:29 +0000240 }
241
Christoph Hellwig04f658e2011-08-24 05:59:25 +0000242done:
Christoph Hellwigaa6bf012012-02-29 09:53:48 +0000243 xfs_destroy_ioend(ioend);
Dave Chinner77d7a0c2010-02-17 05:36:29 +0000244}
245
246/*
Christoph Hellwig209fb872010-07-18 21:17:11 +0000247 * Call IO completion handling in caller context on the final put of an ioend.
248 */
249STATIC void
250xfs_finish_ioend_sync(
251 struct xfs_ioend *ioend)
252{
253 if (atomic_dec_and_test(&ioend->io_remaining))
254 xfs_end_io(&ioend->io_work);
255}
256
257/*
Christoph Hellwig0829c362005-09-02 16:58:49 +1000258 * Allocate and initialise an IO completion structure.
259 * We need to track unwritten extent write completion here initially.
260 * We'll need to extend this for updating the ondisk inode size later
261 * (vs. incore size).
262 */
263STATIC xfs_ioend_t *
264xfs_alloc_ioend(
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100265 struct inode *inode,
266 unsigned int type)
Christoph Hellwig0829c362005-09-02 16:58:49 +1000267{
268 xfs_ioend_t *ioend;
269
270 ioend = mempool_alloc(xfs_ioend_pool, GFP_NOFS);
271
272 /*
273 * Set the count to 1 initially, which will prevent an I/O
274 * completion callback from happening before we have started
275 * all the I/O from calling the completion routine too early.
276 */
277 atomic_set(&ioend->io_remaining, 1);
Christoph Hellwigc859cdd2011-08-23 08:28:10 +0000278 ioend->io_isasync = 0;
Christoph Hellwig281627d2012-03-13 08:41:05 +0000279 ioend->io_isdirect = 0;
Nathan Scott7d04a332006-06-09 14:58:38 +1000280 ioend->io_error = 0;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100281 ioend->io_list = NULL;
282 ioend->io_type = type;
Christoph Hellwigb677c212007-08-29 11:46:28 +1000283 ioend->io_inode = inode;
Christoph Hellwigc1a073b2005-09-05 08:23:35 +1000284 ioend->io_buffer_head = NULL;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100285 ioend->io_buffer_tail = NULL;
Christoph Hellwig0829c362005-09-02 16:58:49 +1000286 ioend->io_offset = 0;
287 ioend->io_size = 0;
Christoph Hellwigfb511f22010-07-18 21:17:10 +0000288 ioend->io_iocb = NULL;
289 ioend->io_result = 0;
Christoph Hellwig281627d2012-03-13 08:41:05 +0000290 ioend->io_append_trans = NULL;
Christoph Hellwig0829c362005-09-02 16:58:49 +1000291
Christoph Hellwig5ec4fab2009-10-30 09:11:47 +0000292 INIT_WORK(&ioend->io_work, xfs_end_io);
Christoph Hellwig0829c362005-09-02 16:58:49 +1000293 return ioend;
294}
295
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296STATIC int
297xfs_map_blocks(
298 struct inode *inode,
299 loff_t offset,
Christoph Hellwig207d0412010-04-28 12:28:56 +0000300 struct xfs_bmbt_irec *imap,
Christoph Hellwiga206c812010-12-10 08:42:20 +0000301 int type,
302 int nonblocking)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303{
Christoph Hellwiga206c812010-12-10 08:42:20 +0000304 struct xfs_inode *ip = XFS_I(inode);
305 struct xfs_mount *mp = ip->i_mount;
Christoph Hellwiged1e7b72010-12-10 08:42:22 +0000306 ssize_t count = 1 << inode->i_blkbits;
Christoph Hellwiga206c812010-12-10 08:42:20 +0000307 xfs_fileoff_t offset_fsb, end_fsb;
308 int error = 0;
Christoph Hellwiga206c812010-12-10 08:42:20 +0000309 int bmapi_flags = XFS_BMAPI_ENTIRE;
310 int nimaps = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311
Christoph Hellwiga206c812010-12-10 08:42:20 +0000312 if (XFS_FORCED_SHUTDOWN(mp))
313 return -XFS_ERROR(EIO);
314
Christoph Hellwig8ff29572010-12-10 08:42:21 +0000315 if (type == IO_UNWRITTEN)
Christoph Hellwiga206c812010-12-10 08:42:20 +0000316 bmapi_flags |= XFS_BMAPI_IGSTATE;
Christoph Hellwiga206c812010-12-10 08:42:20 +0000317
Christoph Hellwig8ff29572010-12-10 08:42:21 +0000318 if (!xfs_ilock_nowait(ip, XFS_ILOCK_SHARED)) {
319 if (nonblocking)
320 return -XFS_ERROR(EAGAIN);
321 xfs_ilock(ip, XFS_ILOCK_SHARED);
Christoph Hellwiga206c812010-12-10 08:42:20 +0000322 }
323
Christoph Hellwig8ff29572010-12-10 08:42:21 +0000324 ASSERT(ip->i_d.di_format != XFS_DINODE_FMT_BTREE ||
325 (ip->i_df.if_flags & XFS_IFEXTENTS));
Christoph Hellwiga206c812010-12-10 08:42:20 +0000326 ASSERT(offset <= mp->m_maxioffset);
Christoph Hellwig8ff29572010-12-10 08:42:21 +0000327
Christoph Hellwiga206c812010-12-10 08:42:20 +0000328 if (offset + count > mp->m_maxioffset)
329 count = mp->m_maxioffset - offset;
330 end_fsb = XFS_B_TO_FSB(mp, (xfs_ufsize_t)offset + count);
331 offset_fsb = XFS_B_TO_FSBT(mp, offset);
Dave Chinner5c8ed202011-09-18 20:40:45 +0000332 error = xfs_bmapi_read(ip, offset_fsb, end_fsb - offset_fsb,
333 imap, &nimaps, bmapi_flags);
Christoph Hellwig8ff29572010-12-10 08:42:21 +0000334 xfs_iunlock(ip, XFS_ILOCK_SHARED);
335
Christoph Hellwiga206c812010-12-10 08:42:20 +0000336 if (error)
Christoph Hellwig8ff29572010-12-10 08:42:21 +0000337 return -XFS_ERROR(error);
Christoph Hellwiga206c812010-12-10 08:42:20 +0000338
Christoph Hellwig8ff29572010-12-10 08:42:21 +0000339 if (type == IO_DELALLOC &&
340 (!nimaps || isnullstartblock(imap->br_startblock))) {
Christoph Hellwiga206c812010-12-10 08:42:20 +0000341 error = xfs_iomap_write_allocate(ip, offset, count, imap);
342 if (!error)
343 trace_xfs_map_blocks_alloc(ip, offset, count, type, imap);
Christoph Hellwig8ff29572010-12-10 08:42:21 +0000344 return -XFS_ERROR(error);
Christoph Hellwiga206c812010-12-10 08:42:20 +0000345 }
346
Christoph Hellwig8ff29572010-12-10 08:42:21 +0000347#ifdef DEBUG
348 if (type == IO_UNWRITTEN) {
349 ASSERT(nimaps);
350 ASSERT(imap->br_startblock != HOLESTARTBLOCK);
351 ASSERT(imap->br_startblock != DELAYSTARTBLOCK);
352 }
353#endif
354 if (nimaps)
355 trace_xfs_map_blocks_found(ip, offset, count, type, imap);
356 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357}
358
Christoph Hellwigb8f82a42009-11-14 16:17:22 +0000359STATIC int
Christoph Hellwig558e6892010-04-28 12:28:58 +0000360xfs_imap_valid(
Christoph Hellwig8699bb02010-04-28 12:28:54 +0000361 struct inode *inode,
Christoph Hellwig207d0412010-04-28 12:28:56 +0000362 struct xfs_bmbt_irec *imap,
Christoph Hellwig558e6892010-04-28 12:28:58 +0000363 xfs_off_t offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364{
Christoph Hellwig558e6892010-04-28 12:28:58 +0000365 offset >>= inode->i_blkbits;
Christoph Hellwig8699bb02010-04-28 12:28:54 +0000366
Christoph Hellwig558e6892010-04-28 12:28:58 +0000367 return offset >= imap->br_startoff &&
368 offset < imap->br_startoff + imap->br_blockcount;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369}
370
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100371/*
372 * BIO completion handler for buffered IO.
373 */
Al Viro782e3b32007-10-12 07:17:47 +0100374STATIC void
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100375xfs_end_bio(
376 struct bio *bio,
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100377 int error)
378{
379 xfs_ioend_t *ioend = bio->bi_private;
380
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100381 ASSERT(atomic_read(&bio->bi_cnt) >= 1);
Nathan Scott7d04a332006-06-09 14:58:38 +1000382 ioend->io_error = test_bit(BIO_UPTODATE, &bio->bi_flags) ? 0 : error;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100383
384 /* Toss bio and pass work off to an xfsdatad thread */
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100385 bio->bi_private = NULL;
386 bio->bi_end_io = NULL;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100387 bio_put(bio);
Nathan Scott7d04a332006-06-09 14:58:38 +1000388
Christoph Hellwig209fb872010-07-18 21:17:11 +0000389 xfs_finish_ioend(ioend);
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100390}
391
392STATIC void
393xfs_submit_ioend_bio(
Christoph Hellwig06342cf2009-10-30 09:09:15 +0000394 struct writeback_control *wbc,
395 xfs_ioend_t *ioend,
396 struct bio *bio)
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100397{
398 atomic_inc(&ioend->io_remaining);
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100399 bio->bi_private = ioend;
400 bio->bi_end_io = xfs_end_bio;
Jens Axboe721a9602011-03-09 11:56:30 +0100401 submit_bio(wbc->sync_mode == WB_SYNC_ALL ? WRITE_SYNC : WRITE, bio);
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100402}
403
404STATIC struct bio *
405xfs_alloc_ioend_bio(
406 struct buffer_head *bh)
407{
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100408 int nvecs = bio_get_nr_vecs(bh->b_bdev);
Christoph Hellwig221cb252010-12-10 08:42:17 +0000409 struct bio *bio = bio_alloc(GFP_NOIO, nvecs);
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100410
411 ASSERT(bio->bi_private == NULL);
412 bio->bi_sector = bh->b_blocknr * (bh->b_size >> 9);
413 bio->bi_bdev = bh->b_bdev;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100414 return bio;
415}
416
417STATIC void
418xfs_start_buffer_writeback(
419 struct buffer_head *bh)
420{
421 ASSERT(buffer_mapped(bh));
422 ASSERT(buffer_locked(bh));
423 ASSERT(!buffer_delay(bh));
424 ASSERT(!buffer_unwritten(bh));
425
426 mark_buffer_async_write(bh);
427 set_buffer_uptodate(bh);
428 clear_buffer_dirty(bh);
429}
430
431STATIC void
432xfs_start_page_writeback(
433 struct page *page,
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100434 int clear_dirty,
435 int buffers)
436{
437 ASSERT(PageLocked(page));
438 ASSERT(!PageWriteback(page));
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100439 if (clear_dirty)
David Chinner92132022006-12-21 10:24:01 +1100440 clear_page_dirty_for_io(page);
441 set_page_writeback(page);
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100442 unlock_page(page);
Fengguang Wu1f7decf2007-10-16 23:30:42 -0700443 /* If no buffers on the page are to be written, finish it here */
444 if (!buffers)
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100445 end_page_writeback(page);
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100446}
447
448static inline int bio_add_buffer(struct bio *bio, struct buffer_head *bh)
449{
450 return bio_add_page(bio, bh->b_page, bh->b_size, bh_offset(bh));
451}
452
453/*
David Chinnerd88992f2006-01-18 13:38:12 +1100454 * Submit all of the bios for all of the ioends we have saved up, covering the
455 * initial writepage page and also any probed pages.
456 *
457 * Because we may have multiple ioends spanning a page, we need to start
458 * writeback on all the buffers before we submit them for I/O. If we mark the
459 * buffers as we got, then we can end up with a page that only has buffers
460 * marked async write and I/O complete on can occur before we mark the other
461 * buffers async write.
462 *
463 * The end result of this is that we trip a bug in end_page_writeback() because
464 * we call it twice for the one page as the code in end_buffer_async_write()
465 * assumes that all buffers on the page are started at the same time.
466 *
467 * The fix is two passes across the ioend list - one to start writeback on the
Nathan Scottc41564b2006-03-29 08:55:14 +1000468 * buffer_heads, and then submit them for I/O on the second pass.
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100469 */
470STATIC void
471xfs_submit_ioend(
Christoph Hellwig06342cf2009-10-30 09:09:15 +0000472 struct writeback_control *wbc,
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100473 xfs_ioend_t *ioend)
474{
David Chinnerd88992f2006-01-18 13:38:12 +1100475 xfs_ioend_t *head = ioend;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100476 xfs_ioend_t *next;
477 struct buffer_head *bh;
478 struct bio *bio;
479 sector_t lastblock = 0;
480
David Chinnerd88992f2006-01-18 13:38:12 +1100481 /* Pass 1 - start writeback */
482 do {
483 next = ioend->io_list;
Christoph Hellwig221cb252010-12-10 08:42:17 +0000484 for (bh = ioend->io_buffer_head; bh; bh = bh->b_private)
David Chinnerd88992f2006-01-18 13:38:12 +1100485 xfs_start_buffer_writeback(bh);
David Chinnerd88992f2006-01-18 13:38:12 +1100486 } while ((ioend = next) != NULL);
487
488 /* Pass 2 - submit I/O */
489 ioend = head;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100490 do {
491 next = ioend->io_list;
492 bio = NULL;
493
494 for (bh = ioend->io_buffer_head; bh; bh = bh->b_private) {
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100495
496 if (!bio) {
497 retry:
498 bio = xfs_alloc_ioend_bio(bh);
499 } else if (bh->b_blocknr != lastblock + 1) {
Christoph Hellwig06342cf2009-10-30 09:09:15 +0000500 xfs_submit_ioend_bio(wbc, ioend, bio);
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100501 goto retry;
502 }
503
504 if (bio_add_buffer(bio, bh) != bh->b_size) {
Christoph Hellwig06342cf2009-10-30 09:09:15 +0000505 xfs_submit_ioend_bio(wbc, ioend, bio);
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100506 goto retry;
507 }
508
509 lastblock = bh->b_blocknr;
510 }
511 if (bio)
Christoph Hellwig06342cf2009-10-30 09:09:15 +0000512 xfs_submit_ioend_bio(wbc, ioend, bio);
Christoph Hellwig209fb872010-07-18 21:17:11 +0000513 xfs_finish_ioend(ioend);
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100514 } while ((ioend = next) != NULL);
515}
516
517/*
518 * Cancel submission of all buffer_heads so far in this endio.
519 * Toss the endio too. Only ever called for the initial page
520 * in a writepage request, so only ever one page.
521 */
522STATIC void
523xfs_cancel_ioend(
524 xfs_ioend_t *ioend)
525{
526 xfs_ioend_t *next;
527 struct buffer_head *bh, *next_bh;
528
529 do {
530 next = ioend->io_list;
531 bh = ioend->io_buffer_head;
532 do {
533 next_bh = bh->b_private;
534 clear_buffer_async_write(bh);
535 unlock_buffer(bh);
536 } while ((bh = next_bh) != NULL);
537
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100538 mempool_free(ioend, xfs_ioend_pool);
539 } while ((ioend = next) != NULL);
540}
541
542/*
543 * Test to see if we've been building up a completion structure for
544 * earlier buffers -- if so, we try to append to this ioend if we
545 * can, otherwise we finish off any current ioend and start another.
546 * Return true if we've finished the given ioend.
547 */
548STATIC void
549xfs_add_to_ioend(
550 struct inode *inode,
551 struct buffer_head *bh,
Christoph Hellwig7336cea2006-01-11 20:49:16 +1100552 xfs_off_t offset,
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100553 unsigned int type,
554 xfs_ioend_t **result,
555 int need_ioend)
556{
557 xfs_ioend_t *ioend = *result;
558
559 if (!ioend || need_ioend || type != ioend->io_type) {
560 xfs_ioend_t *previous = *result;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100561
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100562 ioend = xfs_alloc_ioend(inode, type);
563 ioend->io_offset = offset;
564 ioend->io_buffer_head = bh;
565 ioend->io_buffer_tail = bh;
566 if (previous)
567 previous->io_list = ioend;
568 *result = ioend;
569 } else {
570 ioend->io_buffer_tail->b_private = bh;
571 ioend->io_buffer_tail = bh;
572 }
573
574 bh->b_private = NULL;
575 ioend->io_size += bh->b_size;
576}
577
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578STATIC void
Nathan Scott87cbc492006-03-14 13:26:43 +1100579xfs_map_buffer(
Christoph Hellwig046f1682010-04-28 12:28:52 +0000580 struct inode *inode,
Nathan Scott87cbc492006-03-14 13:26:43 +1100581 struct buffer_head *bh,
Christoph Hellwig207d0412010-04-28 12:28:56 +0000582 struct xfs_bmbt_irec *imap,
Christoph Hellwig046f1682010-04-28 12:28:52 +0000583 xfs_off_t offset)
Nathan Scott87cbc492006-03-14 13:26:43 +1100584{
585 sector_t bn;
Christoph Hellwig8699bb02010-04-28 12:28:54 +0000586 struct xfs_mount *m = XFS_I(inode)->i_mount;
Christoph Hellwig207d0412010-04-28 12:28:56 +0000587 xfs_off_t iomap_offset = XFS_FSB_TO_B(m, imap->br_startoff);
588 xfs_daddr_t iomap_bn = xfs_fsb_to_db(XFS_I(inode), imap->br_startblock);
Nathan Scott87cbc492006-03-14 13:26:43 +1100589
Christoph Hellwig207d0412010-04-28 12:28:56 +0000590 ASSERT(imap->br_startblock != HOLESTARTBLOCK);
591 ASSERT(imap->br_startblock != DELAYSTARTBLOCK);
Nathan Scott87cbc492006-03-14 13:26:43 +1100592
Christoph Hellwige5131822010-04-28 12:28:55 +0000593 bn = (iomap_bn >> (inode->i_blkbits - BBSHIFT)) +
Christoph Hellwig8699bb02010-04-28 12:28:54 +0000594 ((offset - iomap_offset) >> inode->i_blkbits);
Nathan Scott87cbc492006-03-14 13:26:43 +1100595
Christoph Hellwig046f1682010-04-28 12:28:52 +0000596 ASSERT(bn || XFS_IS_REALTIME_INODE(XFS_I(inode)));
Nathan Scott87cbc492006-03-14 13:26:43 +1100597
598 bh->b_blocknr = bn;
599 set_buffer_mapped(bh);
600}
601
602STATIC void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603xfs_map_at_offset(
Christoph Hellwig046f1682010-04-28 12:28:52 +0000604 struct inode *inode,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 struct buffer_head *bh,
Christoph Hellwig207d0412010-04-28 12:28:56 +0000606 struct xfs_bmbt_irec *imap,
Christoph Hellwig046f1682010-04-28 12:28:52 +0000607 xfs_off_t offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608{
Christoph Hellwig207d0412010-04-28 12:28:56 +0000609 ASSERT(imap->br_startblock != HOLESTARTBLOCK);
610 ASSERT(imap->br_startblock != DELAYSTARTBLOCK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611
Christoph Hellwig207d0412010-04-28 12:28:56 +0000612 xfs_map_buffer(inode, bh, imap, offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 set_buffer_mapped(bh);
614 clear_buffer_delay(bh);
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100615 clear_buffer_unwritten(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616}
617
618/*
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100619 * Test if a given page is suitable for writing as part of an unwritten
620 * or delayed allocate extent.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 */
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100622STATIC int
Dave Chinner6ffc4db2012-04-23 15:58:43 +1000623xfs_check_page_type(
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100624 struct page *page,
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100625 unsigned int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 if (PageWriteback(page))
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100628 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629
630 if (page->mapping && page_has_buffers(page)) {
631 struct buffer_head *bh, *head;
632 int acceptable = 0;
633
634 bh = head = page_buffers(page);
635 do {
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100636 if (buffer_unwritten(bh))
Dave Chinner6ffc4db2012-04-23 15:58:43 +1000637 acceptable += (type == IO_UNWRITTEN);
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100638 else if (buffer_delay(bh))
Dave Chinner6ffc4db2012-04-23 15:58:43 +1000639 acceptable += (type == IO_DELALLOC);
David Chinner2ddee842006-03-22 12:47:40 +1100640 else if (buffer_dirty(bh) && buffer_mapped(bh))
Dave Chinner6ffc4db2012-04-23 15:58:43 +1000641 acceptable += (type == IO_OVERWRITE);
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100642 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 } while ((bh = bh->b_this_page) != head);
645
646 if (acceptable)
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100647 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 }
649
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100650 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651}
652
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653/*
654 * Allocate & map buffers for page given the extent map. Write it out.
655 * except for the original page of a writepage, this is called on
656 * delalloc/unwritten pages only, for the original page it is possible
657 * that the page has no mapping at all.
658 */
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100659STATIC int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660xfs_convert_page(
661 struct inode *inode,
662 struct page *page,
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100663 loff_t tindex,
Christoph Hellwig207d0412010-04-28 12:28:56 +0000664 struct xfs_bmbt_irec *imap,
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100665 xfs_ioend_t **ioendp,
Christoph Hellwig2fa24f92010-12-10 08:42:23 +0000666 struct writeback_control *wbc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667{
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100668 struct buffer_head *bh, *head;
Christoph Hellwig9260dc62006-01-11 20:48:47 +1100669 xfs_off_t end_offset;
670 unsigned long p_offset;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100671 unsigned int type;
Nathan Scott24e17b52005-05-05 13:33:20 -0700672 int len, page_dirty;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100673 int count = 0, done = 0, uptodate = 1;
Christoph Hellwig9260dc62006-01-11 20:48:47 +1100674 xfs_off_t offset = page_offset(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100676 if (page->index != tindex)
677 goto fail;
Nick Piggin529ae9a2008-08-02 12:01:03 +0200678 if (!trylock_page(page))
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100679 goto fail;
680 if (PageWriteback(page))
681 goto fail_unlock_page;
682 if (page->mapping != inode->i_mapping)
683 goto fail_unlock_page;
Dave Chinner6ffc4db2012-04-23 15:58:43 +1000684 if (!xfs_check_page_type(page, (*ioendp)->io_type))
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100685 goto fail_unlock_page;
686
Nathan Scott24e17b52005-05-05 13:33:20 -0700687 /*
688 * page_dirty is initially a count of buffers on the page before
Nathan Scottc41564b2006-03-29 08:55:14 +1000689 * EOF and is decremented as we move each into a cleanable state.
Christoph Hellwig9260dc62006-01-11 20:48:47 +1100690 *
691 * Derivation:
692 *
693 * End offset is the highest offset that this page should represent.
694 * If we are on the last page, (end_offset & (PAGE_CACHE_SIZE - 1))
695 * will evaluate non-zero and be less than PAGE_CACHE_SIZE and
696 * hence give us the correct page_dirty count. On any other page,
697 * it will be zero and in that case we need page_dirty to be the
698 * count of buffers on the page.
Nathan Scott24e17b52005-05-05 13:33:20 -0700699 */
Christoph Hellwig9260dc62006-01-11 20:48:47 +1100700 end_offset = min_t(unsigned long long,
701 (xfs_off_t)(page->index + 1) << PAGE_CACHE_SHIFT,
702 i_size_read(inode));
703
Nathan Scott24e17b52005-05-05 13:33:20 -0700704 len = 1 << inode->i_blkbits;
Christoph Hellwig9260dc62006-01-11 20:48:47 +1100705 p_offset = min_t(unsigned long, end_offset & (PAGE_CACHE_SIZE - 1),
706 PAGE_CACHE_SIZE);
707 p_offset = p_offset ? roundup(p_offset, len) : PAGE_CACHE_SIZE;
708 page_dirty = p_offset / len;
Nathan Scott24e17b52005-05-05 13:33:20 -0700709
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 bh = head = page_buffers(page);
711 do {
Christoph Hellwig9260dc62006-01-11 20:48:47 +1100712 if (offset >= end_offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 break;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100714 if (!buffer_uptodate(bh))
715 uptodate = 0;
716 if (!(PageUptodate(page) || buffer_uptodate(bh))) {
717 done = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 continue;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100719 }
720
Christoph Hellwig2fa24f92010-12-10 08:42:23 +0000721 if (buffer_unwritten(bh) || buffer_delay(bh) ||
722 buffer_mapped(bh)) {
Christoph Hellwig9260dc62006-01-11 20:48:47 +1100723 if (buffer_unwritten(bh))
Christoph Hellwig34a52c62010-04-28 12:28:57 +0000724 type = IO_UNWRITTEN;
Christoph Hellwig2fa24f92010-12-10 08:42:23 +0000725 else if (buffer_delay(bh))
Christoph Hellwiga206c812010-12-10 08:42:20 +0000726 type = IO_DELALLOC;
Christoph Hellwig2fa24f92010-12-10 08:42:23 +0000727 else
728 type = IO_OVERWRITE;
Christoph Hellwig9260dc62006-01-11 20:48:47 +1100729
Christoph Hellwig558e6892010-04-28 12:28:58 +0000730 if (!xfs_imap_valid(inode, imap, offset)) {
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100731 done = 1;
Christoph Hellwig9260dc62006-01-11 20:48:47 +1100732 continue;
733 }
734
Christoph Hellwigecff71e2010-12-10 08:42:25 +0000735 lock_buffer(bh);
736 if (type != IO_OVERWRITE)
Christoph Hellwig2fa24f92010-12-10 08:42:23 +0000737 xfs_map_at_offset(inode, bh, imap, offset);
Christoph Hellwig89f3b3632010-06-24 09:45:48 +1000738 xfs_add_to_ioend(inode, bh, offset, type,
739 ioendp, done);
740
Christoph Hellwig9260dc62006-01-11 20:48:47 +1100741 page_dirty--;
742 count++;
743 } else {
Christoph Hellwig2fa24f92010-12-10 08:42:23 +0000744 done = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 }
Christoph Hellwig7336cea2006-01-11 20:49:16 +1100746 } while (offset += len, (bh = bh->b_this_page) != head);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100748 if (uptodate && bh == head)
749 SetPageUptodate(page);
750
Christoph Hellwig89f3b3632010-06-24 09:45:48 +1000751 if (count) {
Dave Chinnerefceab12010-08-24 11:44:56 +1000752 if (--wbc->nr_to_write <= 0 &&
753 wbc->sync_mode == WB_SYNC_NONE)
Christoph Hellwig89f3b3632010-06-24 09:45:48 +1000754 done = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755 }
Christoph Hellwig89f3b3632010-06-24 09:45:48 +1000756 xfs_start_page_writeback(page, !page_dirty, count);
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100757
758 return done;
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100759 fail_unlock_page:
760 unlock_page(page);
761 fail:
762 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763}
764
765/*
766 * Convert & write out a cluster of pages in the same extent as defined
767 * by mp and following the start page.
768 */
769STATIC void
770xfs_cluster_write(
771 struct inode *inode,
772 pgoff_t tindex,
Christoph Hellwig207d0412010-04-28 12:28:56 +0000773 struct xfs_bmbt_irec *imap,
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100774 xfs_ioend_t **ioendp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 struct writeback_control *wbc,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 pgoff_t tlast)
777{
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100778 struct pagevec pvec;
779 int done = 0, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100781 pagevec_init(&pvec, 0);
782 while (!done && tindex <= tlast) {
783 unsigned len = min_t(pgoff_t, PAGEVEC_SIZE, tlast - tindex + 1);
784
785 if (!pagevec_lookup(&pvec, inode->i_mapping, tindex, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 break;
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100787
788 for (i = 0; i < pagevec_count(&pvec); i++) {
789 done = xfs_convert_page(inode, pvec.pages[i], tindex++,
Christoph Hellwig2fa24f92010-12-10 08:42:23 +0000790 imap, ioendp, wbc);
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100791 if (done)
792 break;
793 }
794
795 pagevec_release(&pvec);
796 cond_resched();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 }
798}
799
Dave Chinner3ed3a432010-03-05 02:00:42 +0000800STATIC void
801xfs_vm_invalidatepage(
802 struct page *page,
803 unsigned long offset)
804{
805 trace_xfs_invalidatepage(page->mapping->host, page, offset);
806 block_invalidatepage(page, offset);
807}
808
809/*
810 * If the page has delalloc buffers on it, we need to punch them out before we
811 * invalidate the page. If we don't, we leave a stale delalloc mapping on the
812 * inode that can trip a BUG() in xfs_get_blocks() later on if a direct IO read
813 * is done on that same region - the delalloc extent is returned when none is
814 * supposed to be there.
815 *
816 * We prevent this by truncating away the delalloc regions on the page before
817 * invalidating it. Because they are delalloc, we can do this without needing a
818 * transaction. Indeed - if we get ENOSPC errors, we have to be able to do this
819 * truncation without a transaction as there is no space left for block
820 * reservation (typically why we see a ENOSPC in writeback).
821 *
822 * This is not a performance critical path, so for now just do the punching a
823 * buffer head at a time.
824 */
825STATIC void
826xfs_aops_discard_page(
827 struct page *page)
828{
829 struct inode *inode = page->mapping->host;
830 struct xfs_inode *ip = XFS_I(inode);
831 struct buffer_head *bh, *head;
832 loff_t offset = page_offset(page);
Dave Chinner3ed3a432010-03-05 02:00:42 +0000833
Dave Chinner6ffc4db2012-04-23 15:58:43 +1000834 if (!xfs_check_page_type(page, IO_DELALLOC))
Dave Chinner3ed3a432010-03-05 02:00:42 +0000835 goto out_invalidate;
836
Dave Chinnere8c37532010-03-15 02:36:35 +0000837 if (XFS_FORCED_SHUTDOWN(ip->i_mount))
838 goto out_invalidate;
839
Dave Chinner4f107002011-03-07 10:00:35 +1100840 xfs_alert(ip->i_mount,
Dave Chinner3ed3a432010-03-05 02:00:42 +0000841 "page discard on page %p, inode 0x%llx, offset %llu.",
842 page, ip->i_ino, offset);
843
844 xfs_ilock(ip, XFS_ILOCK_EXCL);
845 bh = head = page_buffers(page);
846 do {
Dave Chinner3ed3a432010-03-05 02:00:42 +0000847 int error;
Dave Chinnerc726de42010-11-30 15:14:39 +1100848 xfs_fileoff_t start_fsb;
Dave Chinner3ed3a432010-03-05 02:00:42 +0000849
850 if (!buffer_delay(bh))
851 goto next_buffer;
852
Dave Chinnerc726de42010-11-30 15:14:39 +1100853 start_fsb = XFS_B_TO_FSBT(ip->i_mount, offset);
854 error = xfs_bmap_punch_delalloc_range(ip, start_fsb, 1);
Dave Chinner3ed3a432010-03-05 02:00:42 +0000855 if (error) {
856 /* something screwed, just bail */
Dave Chinnere8c37532010-03-15 02:36:35 +0000857 if (!XFS_FORCED_SHUTDOWN(ip->i_mount)) {
Dave Chinner4f107002011-03-07 10:00:35 +1100858 xfs_alert(ip->i_mount,
Dave Chinner3ed3a432010-03-05 02:00:42 +0000859 "page discard unable to remove delalloc mapping.");
Dave Chinnere8c37532010-03-15 02:36:35 +0000860 }
Dave Chinner3ed3a432010-03-05 02:00:42 +0000861 break;
862 }
863next_buffer:
Dave Chinnerc726de42010-11-30 15:14:39 +1100864 offset += 1 << inode->i_blkbits;
Dave Chinner3ed3a432010-03-05 02:00:42 +0000865
866 } while ((bh = bh->b_this_page) != head);
867
868 xfs_iunlock(ip, XFS_ILOCK_EXCL);
869out_invalidate:
870 xfs_vm_invalidatepage(page, 0);
871 return;
872}
873
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874/*
Christoph Hellwig89f3b3632010-06-24 09:45:48 +1000875 * Write out a dirty page.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876 *
Christoph Hellwig89f3b3632010-06-24 09:45:48 +1000877 * For delalloc space on the page we need to allocate space and flush it.
878 * For unwritten space on the page we need to start the conversion to
879 * regular allocated space.
Christoph Hellwig89f3b3632010-06-24 09:45:48 +1000880 * For any other dirty buffer heads on the page we should flush them.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882STATIC int
Christoph Hellwig89f3b3632010-06-24 09:45:48 +1000883xfs_vm_writepage(
884 struct page *page,
885 struct writeback_control *wbc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886{
Christoph Hellwig89f3b3632010-06-24 09:45:48 +1000887 struct inode *inode = page->mapping->host;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100888 struct buffer_head *bh, *head;
Christoph Hellwig207d0412010-04-28 12:28:56 +0000889 struct xfs_bmbt_irec imap;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100890 xfs_ioend_t *ioend = NULL, *iohead = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 loff_t offset;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100892 unsigned int type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893 __uint64_t end_offset;
Christoph Hellwigbd1556a2010-04-28 12:29:00 +0000894 pgoff_t end_index, last_index;
Christoph Hellwiged1e7b72010-12-10 08:42:22 +0000895 ssize_t len;
Christoph Hellwiga206c812010-12-10 08:42:20 +0000896 int err, imap_valid = 0, uptodate = 1;
Christoph Hellwig89f3b3632010-06-24 09:45:48 +1000897 int count = 0;
Christoph Hellwiga206c812010-12-10 08:42:20 +0000898 int nonblocking = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899
Christoph Hellwig89f3b3632010-06-24 09:45:48 +1000900 trace_xfs_writepage(inode, page, 0);
901
Christoph Hellwig20cb52e2010-06-24 09:46:01 +1000902 ASSERT(page_has_buffers(page));
903
Christoph Hellwig89f3b3632010-06-24 09:45:48 +1000904 /*
905 * Refuse to write the page out if we are called from reclaim context.
906 *
Christoph Hellwigd4f7a5c2010-06-28 10:34:44 -0400907 * This avoids stack overflows when called from deeply used stacks in
908 * random callers for direct reclaim or memcg reclaim. We explicitly
909 * allow reclaim from kswapd as the stack usage there is relatively low.
Christoph Hellwig89f3b3632010-06-24 09:45:48 +1000910 *
Mel Gorman94054fa2011-10-31 17:07:45 -0700911 * This should never happen except in the case of a VM regression so
912 * warn about it.
Christoph Hellwig89f3b3632010-06-24 09:45:48 +1000913 */
Mel Gorman94054fa2011-10-31 17:07:45 -0700914 if (WARN_ON_ONCE((current->flags & (PF_MEMALLOC|PF_KSWAPD)) ==
915 PF_MEMALLOC))
Christoph Hellwigb5420f22010-08-24 11:47:51 +1000916 goto redirty;
Christoph Hellwig89f3b3632010-06-24 09:45:48 +1000917
918 /*
Christoph Hellwig680a6472011-07-08 14:34:05 +0200919 * Given that we do not allow direct reclaim to call us, we should
920 * never be called while in a filesystem transaction.
Christoph Hellwig89f3b3632010-06-24 09:45:48 +1000921 */
Christoph Hellwig680a6472011-07-08 14:34:05 +0200922 if (WARN_ON(current->flags & PF_FSTRANS))
Christoph Hellwigb5420f22010-08-24 11:47:51 +1000923 goto redirty;
Christoph Hellwig89f3b3632010-06-24 09:45:48 +1000924
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925 /* Is this page beyond the end of the file? */
926 offset = i_size_read(inode);
927 end_index = offset >> PAGE_CACHE_SHIFT;
928 last_index = (offset - 1) >> PAGE_CACHE_SHIFT;
929 if (page->index >= end_index) {
930 if ((page->index >= end_index + 1) ||
931 !(i_size_read(inode) & (PAGE_CACHE_SIZE - 1))) {
Christoph Hellwig89f3b3632010-06-24 09:45:48 +1000932 unlock_page(page);
Nathan Scott19d5bcf2005-11-02 15:14:09 +1100933 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934 }
935 }
936
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100937 end_offset = min_t(unsigned long long,
Christoph Hellwig20cb52e2010-06-24 09:46:01 +1000938 (xfs_off_t)(page->index + 1) << PAGE_CACHE_SHIFT,
939 offset);
Nathan Scott24e17b52005-05-05 13:33:20 -0700940 len = 1 << inode->i_blkbits;
Nathan Scott24e17b52005-05-05 13:33:20 -0700941
Nathan Scott24e17b52005-05-05 13:33:20 -0700942 bh = head = page_buffers(page);
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100943 offset = page_offset(page);
Christoph Hellwiga206c812010-12-10 08:42:20 +0000944 type = IO_OVERWRITE;
945
Christoph Hellwigdbcdde32011-07-08 14:34:14 +0200946 if (wbc->sync_mode == WB_SYNC_NONE)
Christoph Hellwiga206c812010-12-10 08:42:20 +0000947 nonblocking = 1;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100948
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949 do {
Christoph Hellwig6ac72482010-12-10 08:42:18 +0000950 int new_ioend = 0;
951
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952 if (offset >= end_offset)
953 break;
954 if (!buffer_uptodate(bh))
955 uptodate = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956
Eric Sandeen3d9b02e2010-06-24 09:45:30 +1000957 /*
Christoph Hellwigece413f2010-11-10 21:39:11 +0000958 * set_page_dirty dirties all buffers in a page, independent
959 * of their state. The dirty state however is entirely
960 * meaningless for holes (!mapped && uptodate), so skip
961 * buffers covering holes here.
Eric Sandeen3d9b02e2010-06-24 09:45:30 +1000962 */
963 if (!buffer_mapped(bh) && buffer_uptodate(bh)) {
Eric Sandeen3d9b02e2010-06-24 09:45:30 +1000964 imap_valid = 0;
965 continue;
966 }
967
Christoph Hellwigaeea1b12010-12-10 08:42:24 +0000968 if (buffer_unwritten(bh)) {
969 if (type != IO_UNWRITTEN) {
970 type = IO_UNWRITTEN;
971 imap_valid = 0;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100972 }
Christoph Hellwigaeea1b12010-12-10 08:42:24 +0000973 } else if (buffer_delay(bh)) {
974 if (type != IO_DELALLOC) {
975 type = IO_DELALLOC;
976 imap_valid = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977 }
Christoph Hellwig89f3b3632010-06-24 09:45:48 +1000978 } else if (buffer_uptodate(bh)) {
Christoph Hellwiga206c812010-12-10 08:42:20 +0000979 if (type != IO_OVERWRITE) {
980 type = IO_OVERWRITE;
Christoph Hellwig85da94c2010-12-10 08:42:16 +0000981 imap_valid = 0;
982 }
Christoph Hellwigaeea1b12010-12-10 08:42:24 +0000983 } else {
Alain Renaud7d0fa3e2012-06-08 15:34:46 -0400984 if (PageUptodate(page))
Christoph Hellwigaeea1b12010-12-10 08:42:24 +0000985 ASSERT(buffer_mapped(bh));
Alain Renaud7d0fa3e2012-06-08 15:34:46 -0400986 /*
987 * This buffer is not uptodate and will not be
988 * written to disk. Ensure that we will put any
989 * subsequent writeable buffers into a new
990 * ioend.
991 */
992 imap_valid = 0;
Christoph Hellwigaeea1b12010-12-10 08:42:24 +0000993 continue;
994 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995
Christoph Hellwigaeea1b12010-12-10 08:42:24 +0000996 if (imap_valid)
997 imap_valid = xfs_imap_valid(inode, &imap, offset);
998 if (!imap_valid) {
999 /*
1000 * If we didn't have a valid mapping then we need to
1001 * put the new mapping into a separate ioend structure.
1002 * This ensures non-contiguous extents always have
1003 * separate ioends, which is particularly important
1004 * for unwritten extent conversion at I/O completion
1005 * time.
1006 */
1007 new_ioend = 1;
1008 err = xfs_map_blocks(inode, offset, &imap, type,
1009 nonblocking);
1010 if (err)
1011 goto error;
1012 imap_valid = xfs_imap_valid(inode, &imap, offset);
1013 }
1014 if (imap_valid) {
Christoph Hellwigecff71e2010-12-10 08:42:25 +00001015 lock_buffer(bh);
1016 if (type != IO_OVERWRITE)
Christoph Hellwigaeea1b12010-12-10 08:42:24 +00001017 xfs_map_at_offset(inode, bh, &imap, offset);
1018 xfs_add_to_ioend(inode, bh, offset, type, &ioend,
1019 new_ioend);
1020 count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021 }
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +11001022
1023 if (!iohead)
1024 iohead = ioend;
1025
1026 } while (offset += len, ((bh = bh->b_this_page) != head));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027
1028 if (uptodate && bh == head)
1029 SetPageUptodate(page);
1030
Christoph Hellwig89f3b3632010-06-24 09:45:48 +10001031 xfs_start_page_writeback(page, 1, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032
Christoph Hellwig558e6892010-04-28 12:28:58 +00001033 if (ioend && imap_valid) {
Christoph Hellwigbd1556a2010-04-28 12:29:00 +00001034 xfs_off_t end_index;
Christoph Hellwig8699bb02010-04-28 12:28:54 +00001035
Christoph Hellwigbd1556a2010-04-28 12:29:00 +00001036 end_index = imap.br_startoff + imap.br_blockcount;
1037
1038 /* to bytes */
1039 end_index <<= inode->i_blkbits;
1040
1041 /* to pages */
1042 end_index = (end_index - 1) >> PAGE_CACHE_SHIFT;
1043
1044 /* check against file size */
1045 if (end_index > last_index)
1046 end_index = last_index;
1047
Christoph Hellwig207d0412010-04-28 12:28:56 +00001048 xfs_cluster_write(inode, page->index + 1, &imap, &ioend,
Christoph Hellwig2fa24f92010-12-10 08:42:23 +00001049 wbc, end_index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050 }
1051
Christoph Hellwig281627d2012-03-13 08:41:05 +00001052 if (iohead) {
1053 /*
1054 * Reserve log space if we might write beyond the on-disk
1055 * inode size.
1056 */
1057 if (ioend->io_type != IO_UNWRITTEN &&
1058 xfs_ioend_is_append(ioend)) {
1059 err = xfs_setfilesize_trans_alloc(ioend);
1060 if (err)
1061 goto error;
1062 }
1063
Christoph Hellwig06342cf2009-10-30 09:09:15 +00001064 xfs_submit_ioend(wbc, iohead);
Christoph Hellwig281627d2012-03-13 08:41:05 +00001065 }
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +11001066
Christoph Hellwig89f3b3632010-06-24 09:45:48 +10001067 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068
1069error:
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +11001070 if (iohead)
1071 xfs_cancel_ioend(iohead);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072
Christoph Hellwigb5420f22010-08-24 11:47:51 +10001073 if (err == -EAGAIN)
1074 goto redirty;
1075
Christoph Hellwig20cb52e2010-06-24 09:46:01 +10001076 xfs_aops_discard_page(page);
Christoph Hellwig89f3b3632010-06-24 09:45:48 +10001077 ClearPageUptodate(page);
1078 unlock_page(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079 return err;
Nathan Scottf51623b2006-03-14 13:26:27 +11001080
Christoph Hellwigb5420f22010-08-24 11:47:51 +10001081redirty:
Nathan Scottf51623b2006-03-14 13:26:27 +11001082 redirty_page_for_writepage(wbc, page);
1083 unlock_page(page);
1084 return 0;
Nathan Scottf51623b2006-03-14 13:26:27 +11001085}
1086
Nathan Scott7d4fb402006-06-09 15:27:16 +10001087STATIC int
1088xfs_vm_writepages(
1089 struct address_space *mapping,
1090 struct writeback_control *wbc)
1091{
Christoph Hellwigb3aea4e2007-08-29 11:44:37 +10001092 xfs_iflags_clear(XFS_I(mapping->host), XFS_ITRUNCATED);
Nathan Scott7d4fb402006-06-09 15:27:16 +10001093 return generic_writepages(mapping, wbc);
1094}
1095
Nathan Scottf51623b2006-03-14 13:26:27 +11001096/*
1097 * Called to move a page into cleanable state - and from there
Christoph Hellwig89f3b3632010-06-24 09:45:48 +10001098 * to be released. The page should already be clean. We always
Nathan Scottf51623b2006-03-14 13:26:27 +11001099 * have buffer heads in this call.
1100 *
Christoph Hellwig89f3b3632010-06-24 09:45:48 +10001101 * Returns 1 if the page is ok to release, 0 otherwise.
Nathan Scottf51623b2006-03-14 13:26:27 +11001102 */
1103STATIC int
Nathan Scott238f4c52006-03-17 17:26:25 +11001104xfs_vm_releasepage(
Nathan Scottf51623b2006-03-14 13:26:27 +11001105 struct page *page,
1106 gfp_t gfp_mask)
1107{
Christoph Hellwig20cb52e2010-06-24 09:46:01 +10001108 int delalloc, unwritten;
Nathan Scottf51623b2006-03-14 13:26:27 +11001109
Christoph Hellwig89f3b3632010-06-24 09:45:48 +10001110 trace_xfs_releasepage(page->mapping->host, page, 0);
Nathan Scott238f4c52006-03-17 17:26:25 +11001111
Christoph Hellwig20cb52e2010-06-24 09:46:01 +10001112 xfs_count_page_state(page, &delalloc, &unwritten);
Nathan Scottf51623b2006-03-14 13:26:27 +11001113
Christoph Hellwig89f3b3632010-06-24 09:45:48 +10001114 if (WARN_ON(delalloc))
1115 return 0;
1116 if (WARN_ON(unwritten))
Nathan Scottf51623b2006-03-14 13:26:27 +11001117 return 0;
1118
Nathan Scottf51623b2006-03-14 13:26:27 +11001119 return try_to_free_buffers(page);
1120}
1121
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122STATIC int
Nathan Scottc2536662006-03-29 10:44:40 +10001123__xfs_get_blocks(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124 struct inode *inode,
1125 sector_t iblock,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126 struct buffer_head *bh_result,
1127 int create,
Christoph Hellwigf2bde9b2010-06-24 11:44:35 +10001128 int direct)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129{
Christoph Hellwiga206c812010-12-10 08:42:20 +00001130 struct xfs_inode *ip = XFS_I(inode);
1131 struct xfs_mount *mp = ip->i_mount;
1132 xfs_fileoff_t offset_fsb, end_fsb;
1133 int error = 0;
1134 int lockmode = 0;
Christoph Hellwig207d0412010-04-28 12:28:56 +00001135 struct xfs_bmbt_irec imap;
Christoph Hellwiga206c812010-12-10 08:42:20 +00001136 int nimaps = 1;
Nathan Scottfdc7ed72005-11-02 15:13:13 +11001137 xfs_off_t offset;
1138 ssize_t size;
Christoph Hellwig207d0412010-04-28 12:28:56 +00001139 int new = 0;
Christoph Hellwiga206c812010-12-10 08:42:20 +00001140
1141 if (XFS_FORCED_SHUTDOWN(mp))
1142 return -XFS_ERROR(EIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143
Nathan Scottfdc7ed72005-11-02 15:13:13 +11001144 offset = (xfs_off_t)iblock << inode->i_blkbits;
Nathan Scottc2536662006-03-29 10:44:40 +10001145 ASSERT(bh_result->b_size >= (1 << inode->i_blkbits));
1146 size = bh_result->b_size;
Lachlan McIlroy364f3582008-09-17 16:50:14 +10001147
1148 if (!create && direct && offset >= i_size_read(inode))
1149 return 0;
1150
Dave Chinner507630b2012-03-27 10:34:50 -04001151 /*
1152 * Direct I/O is usually done on preallocated files, so try getting
1153 * a block mapping without an exclusive lock first. For buffered
1154 * writes we already have the exclusive iolock anyway, so avoiding
1155 * a lock roundtrip here by taking the ilock exclusive from the
1156 * beginning is a useful micro optimization.
1157 */
1158 if (create && !direct) {
Christoph Hellwiga206c812010-12-10 08:42:20 +00001159 lockmode = XFS_ILOCK_EXCL;
1160 xfs_ilock(ip, lockmode);
1161 } else {
1162 lockmode = xfs_ilock_map_shared(ip);
1163 }
Christoph Hellwigf2bde9b2010-06-24 11:44:35 +10001164
Christoph Hellwiga206c812010-12-10 08:42:20 +00001165 ASSERT(offset <= mp->m_maxioffset);
1166 if (offset + size > mp->m_maxioffset)
1167 size = mp->m_maxioffset - offset;
1168 end_fsb = XFS_B_TO_FSB(mp, (xfs_ufsize_t)offset + size);
1169 offset_fsb = XFS_B_TO_FSBT(mp, offset);
1170
Dave Chinner5c8ed202011-09-18 20:40:45 +00001171 error = xfs_bmapi_read(ip, offset_fsb, end_fsb - offset_fsb,
1172 &imap, &nimaps, XFS_BMAPI_ENTIRE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173 if (error)
Christoph Hellwiga206c812010-12-10 08:42:20 +00001174 goto out_unlock;
1175
1176 if (create &&
1177 (!nimaps ||
1178 (imap.br_startblock == HOLESTARTBLOCK ||
1179 imap.br_startblock == DELAYSTARTBLOCK))) {
Dave Chinneraff3a9e2012-04-23 15:58:44 +10001180 if (direct || xfs_get_extsz_hint(ip)) {
Dave Chinner507630b2012-03-27 10:34:50 -04001181 /*
1182 * Drop the ilock in preparation for starting the block
1183 * allocation transaction. It will be retaken
1184 * exclusively inside xfs_iomap_write_direct for the
1185 * actual allocation.
1186 */
1187 xfs_iunlock(ip, lockmode);
Christoph Hellwiga206c812010-12-10 08:42:20 +00001188 error = xfs_iomap_write_direct(ip, offset, size,
1189 &imap, nimaps);
Dave Chinner507630b2012-03-27 10:34:50 -04001190 if (error)
1191 return -error;
Dave Chinnerd3bc8152012-04-27 19:45:21 +10001192 new = 1;
Christoph Hellwiga206c812010-12-10 08:42:20 +00001193 } else {
Dave Chinner507630b2012-03-27 10:34:50 -04001194 /*
1195 * Delalloc reservations do not require a transaction,
Dave Chinnerd3bc8152012-04-27 19:45:21 +10001196 * we can go on without dropping the lock here. If we
1197 * are allocating a new delalloc block, make sure that
1198 * we set the new flag so that we mark the buffer new so
1199 * that we know that it is newly allocated if the write
1200 * fails.
Dave Chinner507630b2012-03-27 10:34:50 -04001201 */
Dave Chinnerd3bc8152012-04-27 19:45:21 +10001202 if (nimaps && imap.br_startblock == HOLESTARTBLOCK)
1203 new = 1;
Christoph Hellwiga206c812010-12-10 08:42:20 +00001204 error = xfs_iomap_write_delay(ip, offset, size, &imap);
Dave Chinner507630b2012-03-27 10:34:50 -04001205 if (error)
1206 goto out_unlock;
1207
1208 xfs_iunlock(ip, lockmode);
Christoph Hellwiga206c812010-12-10 08:42:20 +00001209 }
Christoph Hellwiga206c812010-12-10 08:42:20 +00001210
1211 trace_xfs_get_blocks_alloc(ip, offset, size, 0, &imap);
1212 } else if (nimaps) {
1213 trace_xfs_get_blocks_found(ip, offset, size, 0, &imap);
Dave Chinner507630b2012-03-27 10:34:50 -04001214 xfs_iunlock(ip, lockmode);
Christoph Hellwiga206c812010-12-10 08:42:20 +00001215 } else {
1216 trace_xfs_get_blocks_notfound(ip, offset, size);
1217 goto out_unlock;
1218 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219
Christoph Hellwig207d0412010-04-28 12:28:56 +00001220 if (imap.br_startblock != HOLESTARTBLOCK &&
1221 imap.br_startblock != DELAYSTARTBLOCK) {
Nathan Scott87cbc492006-03-14 13:26:43 +11001222 /*
1223 * For unwritten extents do not report a disk address on
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224 * the read case (treat as if we're reading into a hole).
1225 */
Christoph Hellwig207d0412010-04-28 12:28:56 +00001226 if (create || !ISUNWRITTEN(&imap))
1227 xfs_map_buffer(inode, bh_result, &imap, offset);
1228 if (create && ISUNWRITTEN(&imap)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229 if (direct)
1230 bh_result->b_private = inode;
1231 set_buffer_unwritten(bh_result);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232 }
1233 }
1234
Nathan Scottc2536662006-03-29 10:44:40 +10001235 /*
1236 * If this is a realtime file, data may be on a different device.
1237 * to that pointed to from the buffer_head b_bdev currently.
1238 */
Christoph Hellwig046f1682010-04-28 12:28:52 +00001239 bh_result->b_bdev = xfs_find_bdev_for_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240
Nathan Scottc2536662006-03-29 10:44:40 +10001241 /*
David Chinner549054a2007-02-10 18:36:35 +11001242 * If we previously allocated a block out beyond eof and we are now
1243 * coming back to use it then we will need to flag it as new even if it
1244 * has a disk address.
1245 *
1246 * With sub-block writes into unwritten extents we also need to mark
1247 * the buffer as new so that the unwritten parts of the buffer gets
1248 * correctly zeroed.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249 */
1250 if (create &&
1251 ((!buffer_mapped(bh_result) && !buffer_uptodate(bh_result)) ||
David Chinner549054a2007-02-10 18:36:35 +11001252 (offset >= i_size_read(inode)) ||
Christoph Hellwig207d0412010-04-28 12:28:56 +00001253 (new || ISUNWRITTEN(&imap))))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254 set_buffer_new(bh_result);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255
Christoph Hellwig207d0412010-04-28 12:28:56 +00001256 if (imap.br_startblock == DELAYSTARTBLOCK) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257 BUG_ON(direct);
1258 if (create) {
1259 set_buffer_uptodate(bh_result);
1260 set_buffer_mapped(bh_result);
1261 set_buffer_delay(bh_result);
1262 }
1263 }
1264
Christoph Hellwig2b8f12b2010-04-28 12:28:59 +00001265 /*
1266 * If this is O_DIRECT or the mpage code calling tell them how large
1267 * the mapping is, so that we can avoid repeated get_blocks calls.
1268 */
Nathan Scottc2536662006-03-29 10:44:40 +10001269 if (direct || size > (1 << inode->i_blkbits)) {
Christoph Hellwig2b8f12b2010-04-28 12:28:59 +00001270 xfs_off_t mapping_size;
Christoph Hellwig9563b3d2010-04-28 12:28:53 +00001271
Christoph Hellwig2b8f12b2010-04-28 12:28:59 +00001272 mapping_size = imap.br_startoff + imap.br_blockcount - iblock;
1273 mapping_size <<= inode->i_blkbits;
1274
1275 ASSERT(mapping_size > 0);
1276 if (mapping_size > size)
1277 mapping_size = size;
1278 if (mapping_size > LONG_MAX)
1279 mapping_size = LONG_MAX;
1280
1281 bh_result->b_size = mapping_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282 }
1283
1284 return 0;
Christoph Hellwiga206c812010-12-10 08:42:20 +00001285
1286out_unlock:
1287 xfs_iunlock(ip, lockmode);
1288 return -error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289}
1290
1291int
Nathan Scottc2536662006-03-29 10:44:40 +10001292xfs_get_blocks(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293 struct inode *inode,
1294 sector_t iblock,
1295 struct buffer_head *bh_result,
1296 int create)
1297{
Christoph Hellwigf2bde9b2010-06-24 11:44:35 +10001298 return __xfs_get_blocks(inode, iblock, bh_result, create, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299}
1300
1301STATIC int
Nathan Scotte4c573b2006-03-14 13:54:26 +11001302xfs_get_blocks_direct(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303 struct inode *inode,
1304 sector_t iblock,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305 struct buffer_head *bh_result,
1306 int create)
1307{
Christoph Hellwigf2bde9b2010-06-24 11:44:35 +10001308 return __xfs_get_blocks(inode, iblock, bh_result, create, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309}
1310
Christoph Hellwig209fb872010-07-18 21:17:11 +00001311/*
1312 * Complete a direct I/O write request.
1313 *
1314 * If the private argument is non-NULL __xfs_get_blocks signals us that we
1315 * need to issue a transaction to convert the range from unwritten to written
1316 * extents. In case this is regular synchronous I/O we just call xfs_end_io
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001317 * to do this and we are done. But in case this was a successful AIO
Christoph Hellwig209fb872010-07-18 21:17:11 +00001318 * request this handler is called from interrupt context, from which we
1319 * can't start transactions. In that case offload the I/O completion to
1320 * the workqueues we also use for buffered I/O completion.
1321 */
Christoph Hellwigf0973862005-09-05 08:22:52 +10001322STATIC void
Christoph Hellwig209fb872010-07-18 21:17:11 +00001323xfs_end_io_direct_write(
1324 struct kiocb *iocb,
1325 loff_t offset,
1326 ssize_t size,
1327 void *private,
1328 int ret,
1329 bool is_async)
Christoph Hellwigf0973862005-09-05 08:22:52 +10001330{
Christoph Hellwig209fb872010-07-18 21:17:11 +00001331 struct xfs_ioend *ioend = iocb->private;
Christoph Hellwigf0973862005-09-05 08:22:52 +10001332
1333 /*
Christoph Hellwig2813d682011-12-18 20:00:12 +00001334 * While the generic direct I/O code updates the inode size, it does
1335 * so only after the end_io handler is called, which means our
1336 * end_io handler thinks the on-disk size is outside the in-core
1337 * size. To prevent this just update it a little bit earlier here.
1338 */
1339 if (offset + size > i_size_read(ioend->io_inode))
1340 i_size_write(ioend->io_inode, offset + size);
1341
1342 /*
Nathan Scottc41564b2006-03-29 08:55:14 +10001343 * blockdev_direct_IO can return an error even after the I/O
Christoph Hellwigf0973862005-09-05 08:22:52 +10001344 * completion handler was called. Thus we need to protect
1345 * against double-freeing.
1346 */
1347 iocb->private = NULL;
Christoph Hellwig40e2e972010-07-18 21:17:09 +00001348
Christoph Hellwig209fb872010-07-18 21:17:11 +00001349 ioend->io_offset = offset;
1350 ioend->io_size = size;
Christoph Hellwigc859cdd2011-08-23 08:28:10 +00001351 ioend->io_iocb = iocb;
1352 ioend->io_result = ret;
Christoph Hellwig209fb872010-07-18 21:17:11 +00001353 if (private && size > 0)
1354 ioend->io_type = IO_UNWRITTEN;
1355
1356 if (is_async) {
Christoph Hellwigc859cdd2011-08-23 08:28:10 +00001357 ioend->io_isasync = 1;
Christoph Hellwig209fb872010-07-18 21:17:11 +00001358 xfs_finish_ioend(ioend);
1359 } else {
1360 xfs_finish_ioend_sync(ioend);
1361 }
Christoph Hellwigf0973862005-09-05 08:22:52 +10001362}
1363
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364STATIC ssize_t
Nathan Scotte4c573b2006-03-14 13:54:26 +11001365xfs_vm_direct_IO(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366 int rw,
1367 struct kiocb *iocb,
1368 const struct iovec *iov,
1369 loff_t offset,
1370 unsigned long nr_segs)
1371{
Christoph Hellwig209fb872010-07-18 21:17:11 +00001372 struct inode *inode = iocb->ki_filp->f_mapping->host;
1373 struct block_device *bdev = xfs_find_bdev_for_inode(inode);
Christoph Hellwig281627d2012-03-13 08:41:05 +00001374 struct xfs_ioend *ioend = NULL;
Christoph Hellwig209fb872010-07-18 21:17:11 +00001375 ssize_t ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376
Christoph Hellwig209fb872010-07-18 21:17:11 +00001377 if (rw & WRITE) {
Christoph Hellwig281627d2012-03-13 08:41:05 +00001378 size_t size = iov_length(iov, nr_segs);
1379
1380 /*
1381 * We need to preallocate a transaction for a size update
1382 * here. In the case that this write both updates the size
1383 * and converts at least on unwritten extent we will cancel
1384 * the still clean transaction after the I/O has finished.
1385 */
1386 iocb->private = ioend = xfs_alloc_ioend(inode, IO_DIRECT);
1387 if (offset + size > XFS_I(inode)->i_d.di_size) {
1388 ret = xfs_setfilesize_trans_alloc(ioend);
1389 if (ret)
1390 goto out_destroy_ioend;
1391 ioend->io_isdirect = 1;
1392 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393
Christoph Hellwigeafdc7d2010-06-04 11:29:53 +02001394 ret = __blockdev_direct_IO(rw, iocb, inode, bdev, iov,
1395 offset, nr_segs,
1396 xfs_get_blocks_direct,
1397 xfs_end_io_direct_write, NULL, 0);
Christoph Hellwig209fb872010-07-18 21:17:11 +00001398 if (ret != -EIOCBQUEUED && iocb->private)
Christoph Hellwig281627d2012-03-13 08:41:05 +00001399 goto out_trans_cancel;
Christoph Hellwig209fb872010-07-18 21:17:11 +00001400 } else {
Christoph Hellwigeafdc7d2010-06-04 11:29:53 +02001401 ret = __blockdev_direct_IO(rw, iocb, inode, bdev, iov,
1402 offset, nr_segs,
1403 xfs_get_blocks_direct,
1404 NULL, NULL, 0);
Christoph Hellwig209fb872010-07-18 21:17:11 +00001405 }
Christoph Hellwig5fe878a2009-12-15 16:47:50 -08001406
Christoph Hellwigf0973862005-09-05 08:22:52 +10001407 return ret;
Christoph Hellwig281627d2012-03-13 08:41:05 +00001408
1409out_trans_cancel:
1410 if (ioend->io_append_trans) {
1411 current_set_flags_nested(&ioend->io_append_trans->t_pflags,
1412 PF_FSTRANS);
1413 xfs_trans_cancel(ioend->io_append_trans, 0);
1414 }
1415out_destroy_ioend:
1416 xfs_destroy_ioend(ioend);
1417 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418}
1419
Dave Chinnerd3bc8152012-04-27 19:45:21 +10001420/*
1421 * Punch out the delalloc blocks we have already allocated.
1422 *
1423 * Don't bother with xfs_setattr given that nothing can have made it to disk yet
1424 * as the page is still locked at this point.
1425 */
Christoph Hellwigfa9b2272010-06-14 05:17:31 -04001426STATIC void
Dave Chinnerd3bc8152012-04-27 19:45:21 +10001427xfs_vm_kill_delalloc_range(
1428 struct inode *inode,
1429 loff_t start,
1430 loff_t end)
Christoph Hellwigfa9b2272010-06-14 05:17:31 -04001431{
Dave Chinnerd3bc8152012-04-27 19:45:21 +10001432 struct xfs_inode *ip = XFS_I(inode);
1433 xfs_fileoff_t start_fsb;
1434 xfs_fileoff_t end_fsb;
1435 int error;
Christoph Hellwigfa9b2272010-06-14 05:17:31 -04001436
Dave Chinnerd3bc8152012-04-27 19:45:21 +10001437 start_fsb = XFS_B_TO_FSB(ip->i_mount, start);
1438 end_fsb = XFS_B_TO_FSB(ip->i_mount, end);
1439 if (end_fsb <= start_fsb)
1440 return;
Dave Chinnerc726de42010-11-30 15:14:39 +11001441
Dave Chinnerd3bc8152012-04-27 19:45:21 +10001442 xfs_ilock(ip, XFS_ILOCK_EXCL);
1443 error = xfs_bmap_punch_delalloc_range(ip, start_fsb,
1444 end_fsb - start_fsb);
1445 if (error) {
1446 /* something screwed, just bail */
1447 if (!XFS_FORCED_SHUTDOWN(ip->i_mount)) {
1448 xfs_alert(ip->i_mount,
1449 "xfs_vm_write_failed: unable to clean up ino %lld",
1450 ip->i_ino);
Dave Chinnerc726de42010-11-30 15:14:39 +11001451 }
Christoph Hellwigfa9b2272010-06-14 05:17:31 -04001452 }
Dave Chinnerd3bc8152012-04-27 19:45:21 +10001453 xfs_iunlock(ip, XFS_ILOCK_EXCL);
Christoph Hellwigfa9b2272010-06-14 05:17:31 -04001454}
1455
Dave Chinnerd3bc8152012-04-27 19:45:21 +10001456STATIC void
1457xfs_vm_write_failed(
1458 struct inode *inode,
1459 struct page *page,
1460 loff_t pos,
1461 unsigned len)
1462{
1463 loff_t block_offset = pos & PAGE_MASK;
1464 loff_t block_start;
1465 loff_t block_end;
1466 loff_t from = pos & (PAGE_CACHE_SIZE - 1);
1467 loff_t to = from + len;
1468 struct buffer_head *bh, *head;
1469
1470 ASSERT(block_offset + from == pos);
1471
1472 head = page_buffers(page);
1473 block_start = 0;
1474 for (bh = head; bh != head || !block_start;
1475 bh = bh->b_this_page, block_start = block_end,
1476 block_offset += bh->b_size) {
1477 block_end = block_start + bh->b_size;
1478
1479 /* skip buffers before the write */
1480 if (block_end <= from)
1481 continue;
1482
1483 /* if the buffer is after the write, we're done */
1484 if (block_start >= to)
1485 break;
1486
1487 if (!buffer_delay(bh))
1488 continue;
1489
1490 if (!buffer_new(bh) && block_offset < i_size_read(inode))
1491 continue;
1492
1493 xfs_vm_kill_delalloc_range(inode, block_offset,
1494 block_offset + bh->b_size);
1495 }
1496
1497}
1498
1499/*
1500 * This used to call block_write_begin(), but it unlocks and releases the page
1501 * on error, and we need that page to be able to punch stale delalloc blocks out
1502 * on failure. hence we copy-n-waste it here and call xfs_vm_write_failed() at
1503 * the appropriate point.
1504 */
Nathan Scottf51623b2006-03-14 13:26:27 +11001505STATIC int
Nick Piggind79689c2007-10-16 01:25:06 -07001506xfs_vm_write_begin(
Nathan Scottf51623b2006-03-14 13:26:27 +11001507 struct file *file,
Nick Piggind79689c2007-10-16 01:25:06 -07001508 struct address_space *mapping,
1509 loff_t pos,
1510 unsigned len,
1511 unsigned flags,
1512 struct page **pagep,
1513 void **fsdata)
Nathan Scottf51623b2006-03-14 13:26:27 +11001514{
Dave Chinnerd3bc8152012-04-27 19:45:21 +10001515 pgoff_t index = pos >> PAGE_CACHE_SHIFT;
1516 struct page *page;
1517 int status;
Christoph Hellwig155130a2010-06-04 11:29:58 +02001518
Dave Chinnerd3bc8152012-04-27 19:45:21 +10001519 ASSERT(len <= PAGE_CACHE_SIZE);
1520
1521 page = grab_cache_page_write_begin(mapping, index,
1522 flags | AOP_FLAG_NOFS);
1523 if (!page)
1524 return -ENOMEM;
1525
1526 status = __block_write_begin(page, pos, len, xfs_get_blocks);
1527 if (unlikely(status)) {
1528 struct inode *inode = mapping->host;
1529
1530 xfs_vm_write_failed(inode, page, pos, len);
1531 unlock_page(page);
1532
1533 if (pos + len > i_size_read(inode))
1534 truncate_pagecache(inode, pos + len, i_size_read(inode));
1535
1536 page_cache_release(page);
1537 page = NULL;
1538 }
1539
1540 *pagep = page;
1541 return status;
Christoph Hellwigfa9b2272010-06-14 05:17:31 -04001542}
Christoph Hellwig155130a2010-06-04 11:29:58 +02001543
Dave Chinnerd3bc8152012-04-27 19:45:21 +10001544/*
1545 * On failure, we only need to kill delalloc blocks beyond EOF because they
1546 * will never be written. For blocks within EOF, generic_write_end() zeros them
1547 * so they are safe to leave alone and be written with all the other valid data.
1548 */
Christoph Hellwigfa9b2272010-06-14 05:17:31 -04001549STATIC int
1550xfs_vm_write_end(
1551 struct file *file,
1552 struct address_space *mapping,
1553 loff_t pos,
1554 unsigned len,
1555 unsigned copied,
1556 struct page *page,
1557 void *fsdata)
1558{
1559 int ret;
1560
Dave Chinnerd3bc8152012-04-27 19:45:21 +10001561 ASSERT(len <= PAGE_CACHE_SIZE);
1562
Christoph Hellwigfa9b2272010-06-14 05:17:31 -04001563 ret = generic_write_end(file, mapping, pos, len, copied, page, fsdata);
Dave Chinnerd3bc8152012-04-27 19:45:21 +10001564 if (unlikely(ret < len)) {
1565 struct inode *inode = mapping->host;
1566 size_t isize = i_size_read(inode);
1567 loff_t to = pos + len;
1568
1569 if (to > isize) {
1570 truncate_pagecache(inode, to, isize);
1571 xfs_vm_kill_delalloc_range(inode, isize, to);
1572 }
1573 }
Christoph Hellwig155130a2010-06-04 11:29:58 +02001574 return ret;
Nathan Scottf51623b2006-03-14 13:26:27 +11001575}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576
1577STATIC sector_t
Nathan Scotte4c573b2006-03-14 13:54:26 +11001578xfs_vm_bmap(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579 struct address_space *mapping,
1580 sector_t block)
1581{
1582 struct inode *inode = (struct inode *)mapping->host;
Christoph Hellwig739bfb22007-08-29 10:58:01 +10001583 struct xfs_inode *ip = XFS_I(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584
Christoph Hellwigcca28fb2010-06-24 11:57:09 +10001585 trace_xfs_vm_bmap(XFS_I(inode));
Christoph Hellwig126468b2008-03-06 13:44:57 +11001586 xfs_ilock(ip, XFS_IOLOCK_SHARED);
Christoph Hellwig739bfb22007-08-29 10:58:01 +10001587 xfs_flush_pages(ip, (xfs_off_t)0, -1, 0, FI_REMAPF);
Christoph Hellwig126468b2008-03-06 13:44:57 +11001588 xfs_iunlock(ip, XFS_IOLOCK_SHARED);
Nathan Scottc2536662006-03-29 10:44:40 +10001589 return generic_block_bmap(mapping, block, xfs_get_blocks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590}
1591
1592STATIC int
Nathan Scotte4c573b2006-03-14 13:54:26 +11001593xfs_vm_readpage(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594 struct file *unused,
1595 struct page *page)
1596{
Nathan Scottc2536662006-03-29 10:44:40 +10001597 return mpage_readpage(page, xfs_get_blocks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598}
1599
1600STATIC int
Nathan Scotte4c573b2006-03-14 13:54:26 +11001601xfs_vm_readpages(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602 struct file *unused,
1603 struct address_space *mapping,
1604 struct list_head *pages,
1605 unsigned nr_pages)
1606{
Nathan Scottc2536662006-03-29 10:44:40 +10001607 return mpage_readpages(mapping, pages, nr_pages, xfs_get_blocks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608}
1609
Christoph Hellwigf5e54d62006-06-28 04:26:44 -07001610const struct address_space_operations xfs_address_space_operations = {
Nathan Scotte4c573b2006-03-14 13:54:26 +11001611 .readpage = xfs_vm_readpage,
1612 .readpages = xfs_vm_readpages,
1613 .writepage = xfs_vm_writepage,
Nathan Scott7d4fb402006-06-09 15:27:16 +10001614 .writepages = xfs_vm_writepages,
Nathan Scott238f4c52006-03-17 17:26:25 +11001615 .releasepage = xfs_vm_releasepage,
1616 .invalidatepage = xfs_vm_invalidatepage,
Nick Piggind79689c2007-10-16 01:25:06 -07001617 .write_begin = xfs_vm_write_begin,
Christoph Hellwigfa9b2272010-06-14 05:17:31 -04001618 .write_end = xfs_vm_write_end,
Nathan Scotte4c573b2006-03-14 13:54:26 +11001619 .bmap = xfs_vm_bmap,
1620 .direct_IO = xfs_vm_direct_IO,
Christoph Lametere965f962006-02-01 03:05:41 -08001621 .migratepage = buffer_migrate_page,
Hisashi Hifumibddaafa2009-03-29 09:53:38 +02001622 .is_partially_uptodate = block_is_partially_uptodate,
Andi Kleenaa261f52009-09-16 11:50:16 +02001623 .error_remove_page = generic_error_remove_page,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624};