blob: 50ab2879b9da0ec1211abacbf6598b0a90eddd8a [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"
Dave Chinner70a9883c2013-10-23 10:36:05 +110019#include "xfs_shared.h"
Dave Chinner239880e2013-10-23 10:50:10 +110020#include "xfs_format.h"
21#include "xfs_log_format.h"
22#include "xfs_trans_resv.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include "xfs_mount.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include "xfs_inode.h"
Dave Chinner239880e2013-10-23 10:50:10 +110025#include "xfs_trans.h"
Christoph Hellwig281627d2012-03-13 08:41:05 +000026#include "xfs_inode_item.h"
Nathan Scotta844f452005-11-02 14:38:42 +110027#include "xfs_alloc.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include "xfs_error.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include "xfs_iomap.h"
Christoph Hellwig0b1b2132009-12-14 23:14:59 +000030#include "xfs_trace.h"
Dave Chinner3ed3a432010-03-05 02:00:42 +000031#include "xfs_bmap.h"
Dave Chinner68988112013-08-12 20:49:42 +100032#include "xfs_bmap_util.h"
Dave Chinnera4fbe6a2013-10-23 10:51:50 +110033#include "xfs_bmap_btree.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 Hellwig0829c362005-09-02 16:58:49 +100088 mempool_free(ioend, xfs_ioend_pool);
Linus Torvalds1da177e2005-04-16 15:20:36 -070089}
90
91/*
Christoph Hellwigfc0063c2011-08-23 08:28:11 +000092 * Fast and loose check if this write could update the on-disk inode size.
93 */
94static inline bool xfs_ioend_is_append(struct xfs_ioend *ioend)
95{
96 return ioend->io_offset + ioend->io_size >
97 XFS_I(ioend->io_inode)->i_d.di_size;
98}
99
Christoph Hellwig281627d2012-03-13 08:41:05 +0000100STATIC int
101xfs_setfilesize_trans_alloc(
102 struct xfs_ioend *ioend)
103{
104 struct xfs_mount *mp = XFS_I(ioend->io_inode)->i_mount;
105 struct xfs_trans *tp;
106 int error;
107
108 tp = xfs_trans_alloc(mp, XFS_TRANS_FSYNC_TS);
109
Jie Liu3d3c8b52013-08-12 20:49:59 +1000110 error = xfs_trans_reserve(tp, &M_RES(mp)->tr_fsyncts, 0, 0);
Christoph Hellwig281627d2012-03-13 08:41:05 +0000111 if (error) {
Christoph Hellwig4906e212015-06-04 13:47:56 +1000112 xfs_trans_cancel(tp);
Christoph Hellwig281627d2012-03-13 08:41:05 +0000113 return error;
114 }
115
116 ioend->io_append_trans = tp;
117
118 /*
Dave Chinner437a2552012-11-28 13:01:00 +1100119 * We may pass freeze protection with a transaction. So tell lockdep
Jan Karad9457dc2012-06-12 16:20:39 +0200120 * we released it.
121 */
Oleg Nesterovbee91822015-07-19 23:48:20 +0200122 __sb_writers_release(ioend->io_inode->i_sb, SB_FREEZE_FS);
Jan Karad9457dc2012-06-12 16:20:39 +0200123 /*
Christoph Hellwig281627d2012-03-13 08:41:05 +0000124 * We hand off the transaction to the completion thread now, so
125 * clear the flag here.
126 */
127 current_restore_flags_nested(&tp->t_pflags, PF_FSTRANS);
128 return 0;
129}
130
Christoph Hellwigfc0063c2011-08-23 08:28:11 +0000131/*
Christoph Hellwig2813d682011-12-18 20:00:12 +0000132 * Update on-disk file size now that data has been written to disk.
Lachlan McIlroyba87ea62007-05-08 13:49:46 +1000133 */
Christoph Hellwig281627d2012-03-13 08:41:05 +0000134STATIC int
Lachlan McIlroyba87ea62007-05-08 13:49:46 +1000135xfs_setfilesize(
Christoph Hellwig2ba66232015-02-02 10:02:09 +1100136 struct xfs_inode *ip,
137 struct xfs_trans *tp,
138 xfs_off_t offset,
139 size_t size)
Lachlan McIlroyba87ea62007-05-08 13:49:46 +1000140{
Lachlan McIlroyba87ea62007-05-08 13:49:46 +1000141 xfs_fsize_t isize;
Lachlan McIlroyba87ea62007-05-08 13:49:46 +1000142
Christoph Hellwigaa6bf012012-02-29 09:53:48 +0000143 xfs_ilock(ip, XFS_ILOCK_EXCL);
Christoph Hellwig2ba66232015-02-02 10:02:09 +1100144 isize = xfs_new_eof(ip, offset + size);
Christoph Hellwig281627d2012-03-13 08:41:05 +0000145 if (!isize) {
146 xfs_iunlock(ip, XFS_ILOCK_EXCL);
Christoph Hellwig4906e212015-06-04 13:47:56 +1000147 xfs_trans_cancel(tp);
Christoph Hellwig281627d2012-03-13 08:41:05 +0000148 return 0;
Lachlan McIlroyba87ea62007-05-08 13:49:46 +1000149 }
150
Christoph Hellwig2ba66232015-02-02 10:02:09 +1100151 trace_xfs_setfilesize(ip, offset, size);
Christoph Hellwig281627d2012-03-13 08:41:05 +0000152
153 ip->i_d.di_size = isize;
154 xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL);
155 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
156
Christoph Hellwig70393312015-06-04 13:48:08 +1000157 return xfs_trans_commit(tp);
Christoph Hellwig0829c362005-09-02 16:58:49 +1000158}
159
Christoph Hellwig2ba66232015-02-02 10:02:09 +1100160STATIC int
161xfs_setfilesize_ioend(
162 struct xfs_ioend *ioend)
163{
164 struct xfs_inode *ip = XFS_I(ioend->io_inode);
165 struct xfs_trans *tp = ioend->io_append_trans;
166
167 /*
168 * The transaction may have been allocated in the I/O submission thread,
169 * thus we need to mark ourselves as being in a transaction manually.
170 * Similarly for freeze protection.
171 */
172 current_set_flags_nested(&tp->t_pflags, PF_FSTRANS);
Oleg Nesterovbee91822015-07-19 23:48:20 +0200173 __sb_writers_acquired(VFS_I(ip)->i_sb, SB_FREEZE_FS);
Christoph Hellwig2ba66232015-02-02 10:02:09 +1100174
175 return xfs_setfilesize(ip, tp, ioend->io_offset, ioend->io_size);
176}
177
Christoph Hellwig0829c362005-09-02 16:58:49 +1000178/*
Christoph Hellwig209fb872010-07-18 21:17:11 +0000179 * Schedule IO completion handling on the final put of an ioend.
Christoph Hellwigfc0063c2011-08-23 08:28:11 +0000180 *
181 * If there is no work to do we might as well call it a day and free the
182 * ioend right now.
Dave Chinnerc626d172009-04-06 18:42:11 +0200183 */
184STATIC void
185xfs_finish_ioend(
Christoph Hellwig209fb872010-07-18 21:17:11 +0000186 struct xfs_ioend *ioend)
Dave Chinnerc626d172009-04-06 18:42:11 +0200187{
188 if (atomic_dec_and_test(&ioend->io_remaining)) {
Christoph Hellwigaa6bf012012-02-29 09:53:48 +0000189 struct xfs_mount *mp = XFS_I(ioend->io_inode)->i_mount;
190
Alain Renaud0d882a32012-05-22 15:56:21 -0500191 if (ioend->io_type == XFS_IO_UNWRITTEN)
Christoph Hellwigaa6bf012012-02-29 09:53:48 +0000192 queue_work(mp->m_unwritten_workqueue, &ioend->io_work);
Christoph Hellwig2ba66232015-02-02 10:02:09 +1100193 else if (ioend->io_append_trans)
Christoph Hellwigaa6bf012012-02-29 09:53:48 +0000194 queue_work(mp->m_data_workqueue, &ioend->io_work);
Christoph Hellwigfc0063c2011-08-23 08:28:11 +0000195 else
196 xfs_destroy_ioend(ioend);
Dave Chinnerc626d172009-04-06 18:42:11 +0200197 }
198}
199
200/*
Dave Chinner77d7a0c2010-02-17 05:36:29 +0000201 * IO write completion.
202 */
203STATIC void
204xfs_end_io(
205 struct work_struct *work)
206{
207 xfs_ioend_t *ioend = container_of(work, xfs_ioend_t, io_work);
208 struct xfs_inode *ip = XFS_I(ioend->io_inode);
Dave Chinner69418932010-03-04 00:57:09 +0000209 int error = 0;
Dave Chinner77d7a0c2010-02-17 05:36:29 +0000210
Christoph Hellwig04f658e2011-08-24 05:59:25 +0000211 if (XFS_FORCED_SHUTDOWN(ip->i_mount)) {
Christoph Hellwig810627d2011-11-08 08:56:15 +0000212 ioend->io_error = -EIO;
Christoph Hellwig04f658e2011-08-24 05:59:25 +0000213 goto done;
214 }
215 if (ioend->io_error)
216 goto done;
217
Dave Chinner77d7a0c2010-02-17 05:36:29 +0000218 /*
219 * For unwritten extents we need to issue transactions to convert a
220 * range to normal written extens after the data I/O has finished.
221 */
Alain Renaud0d882a32012-05-22 15:56:21 -0500222 if (ioend->io_type == XFS_IO_UNWRITTEN) {
Dave Chinner77d7a0c2010-02-17 05:36:29 +0000223 error = xfs_iomap_write_unwritten(ip, ioend->io_offset,
Dave Chinner437a2552012-11-28 13:01:00 +1100224 ioend->io_size);
Christoph Hellwig281627d2012-03-13 08:41:05 +0000225 } else if (ioend->io_append_trans) {
Christoph Hellwig2ba66232015-02-02 10:02:09 +1100226 error = xfs_setfilesize_ioend(ioend);
Christoph Hellwig84803fb2012-02-29 09:53:50 +0000227 } else {
Christoph Hellwig281627d2012-03-13 08:41:05 +0000228 ASSERT(!xfs_ioend_is_append(ioend));
Dave Chinner77d7a0c2010-02-17 05:36:29 +0000229 }
230
Christoph Hellwig04f658e2011-08-24 05:59:25 +0000231done:
Dave Chinner437a2552012-11-28 13:01:00 +1100232 if (error)
Dave Chinner24513372014-06-25 14:58:08 +1000233 ioend->io_error = error;
Christoph Hellwigaa6bf012012-02-29 09:53:48 +0000234 xfs_destroy_ioend(ioend);
Dave Chinner77d7a0c2010-02-17 05:36:29 +0000235}
236
237/*
Christoph Hellwig0829c362005-09-02 16:58:49 +1000238 * Allocate and initialise an IO completion structure.
239 * We need to track unwritten extent write completion here initially.
240 * We'll need to extend this for updating the ondisk inode size later
241 * (vs. incore size).
242 */
243STATIC xfs_ioend_t *
244xfs_alloc_ioend(
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100245 struct inode *inode,
246 unsigned int type)
Christoph Hellwig0829c362005-09-02 16:58:49 +1000247{
248 xfs_ioend_t *ioend;
249
250 ioend = mempool_alloc(xfs_ioend_pool, GFP_NOFS);
251
252 /*
253 * Set the count to 1 initially, which will prevent an I/O
254 * completion callback from happening before we have started
255 * all the I/O from calling the completion routine too early.
256 */
257 atomic_set(&ioend->io_remaining, 1);
Nathan Scott7d04a332006-06-09 14:58:38 +1000258 ioend->io_error = 0;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100259 ioend->io_list = NULL;
260 ioend->io_type = type;
Christoph Hellwigb677c212007-08-29 11:46:28 +1000261 ioend->io_inode = inode;
Christoph Hellwigc1a073b2005-09-05 08:23:35 +1000262 ioend->io_buffer_head = NULL;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100263 ioend->io_buffer_tail = NULL;
Christoph Hellwig0829c362005-09-02 16:58:49 +1000264 ioend->io_offset = 0;
265 ioend->io_size = 0;
Christoph Hellwig281627d2012-03-13 08:41:05 +0000266 ioend->io_append_trans = NULL;
Christoph Hellwig0829c362005-09-02 16:58:49 +1000267
Christoph Hellwig5ec4fab2009-10-30 09:11:47 +0000268 INIT_WORK(&ioend->io_work, xfs_end_io);
Christoph Hellwig0829c362005-09-02 16:58:49 +1000269 return ioend;
270}
271
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272STATIC int
273xfs_map_blocks(
274 struct inode *inode,
275 loff_t offset,
Christoph Hellwig207d0412010-04-28 12:28:56 +0000276 struct xfs_bmbt_irec *imap,
Christoph Hellwiga206c812010-12-10 08:42:20 +0000277 int type,
278 int nonblocking)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279{
Christoph Hellwiga206c812010-12-10 08:42:20 +0000280 struct xfs_inode *ip = XFS_I(inode);
281 struct xfs_mount *mp = ip->i_mount;
Christoph Hellwiged1e7b72010-12-10 08:42:22 +0000282 ssize_t count = 1 << inode->i_blkbits;
Christoph Hellwiga206c812010-12-10 08:42:20 +0000283 xfs_fileoff_t offset_fsb, end_fsb;
284 int error = 0;
Christoph Hellwiga206c812010-12-10 08:42:20 +0000285 int bmapi_flags = XFS_BMAPI_ENTIRE;
286 int nimaps = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287
Christoph Hellwiga206c812010-12-10 08:42:20 +0000288 if (XFS_FORCED_SHUTDOWN(mp))
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000289 return -EIO;
Christoph Hellwiga206c812010-12-10 08:42:20 +0000290
Alain Renaud0d882a32012-05-22 15:56:21 -0500291 if (type == XFS_IO_UNWRITTEN)
Christoph Hellwiga206c812010-12-10 08:42:20 +0000292 bmapi_flags |= XFS_BMAPI_IGSTATE;
Christoph Hellwiga206c812010-12-10 08:42:20 +0000293
Christoph Hellwig8ff29572010-12-10 08:42:21 +0000294 if (!xfs_ilock_nowait(ip, XFS_ILOCK_SHARED)) {
295 if (nonblocking)
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000296 return -EAGAIN;
Christoph Hellwig8ff29572010-12-10 08:42:21 +0000297 xfs_ilock(ip, XFS_ILOCK_SHARED);
Christoph Hellwiga206c812010-12-10 08:42:20 +0000298 }
299
Christoph Hellwig8ff29572010-12-10 08:42:21 +0000300 ASSERT(ip->i_d.di_format != XFS_DINODE_FMT_BTREE ||
301 (ip->i_df.if_flags & XFS_IFEXTENTS));
Dave Chinnerd2c28192012-06-08 15:44:53 +1000302 ASSERT(offset <= mp->m_super->s_maxbytes);
Christoph Hellwig8ff29572010-12-10 08:42:21 +0000303
Dave Chinnerd2c28192012-06-08 15:44:53 +1000304 if (offset + count > mp->m_super->s_maxbytes)
305 count = mp->m_super->s_maxbytes - offset;
Christoph Hellwiga206c812010-12-10 08:42:20 +0000306 end_fsb = XFS_B_TO_FSB(mp, (xfs_ufsize_t)offset + count);
307 offset_fsb = XFS_B_TO_FSBT(mp, offset);
Dave Chinner5c8ed202011-09-18 20:40:45 +0000308 error = xfs_bmapi_read(ip, offset_fsb, end_fsb - offset_fsb,
309 imap, &nimaps, bmapi_flags);
Christoph Hellwig8ff29572010-12-10 08:42:21 +0000310 xfs_iunlock(ip, XFS_ILOCK_SHARED);
311
Christoph Hellwiga206c812010-12-10 08:42:20 +0000312 if (error)
Dave Chinner24513372014-06-25 14:58:08 +1000313 return error;
Christoph Hellwiga206c812010-12-10 08:42:20 +0000314
Alain Renaud0d882a32012-05-22 15:56:21 -0500315 if (type == XFS_IO_DELALLOC &&
Christoph Hellwig8ff29572010-12-10 08:42:21 +0000316 (!nimaps || isnullstartblock(imap->br_startblock))) {
Jie Liu0799a3e2013-09-29 18:56:04 +0800317 error = xfs_iomap_write_allocate(ip, offset, imap);
Christoph Hellwiga206c812010-12-10 08:42:20 +0000318 if (!error)
319 trace_xfs_map_blocks_alloc(ip, offset, count, type, imap);
Dave Chinner24513372014-06-25 14:58:08 +1000320 return error;
Christoph Hellwiga206c812010-12-10 08:42:20 +0000321 }
322
Christoph Hellwig8ff29572010-12-10 08:42:21 +0000323#ifdef DEBUG
Alain Renaud0d882a32012-05-22 15:56:21 -0500324 if (type == XFS_IO_UNWRITTEN) {
Christoph Hellwig8ff29572010-12-10 08:42:21 +0000325 ASSERT(nimaps);
326 ASSERT(imap->br_startblock != HOLESTARTBLOCK);
327 ASSERT(imap->br_startblock != DELAYSTARTBLOCK);
328 }
329#endif
330 if (nimaps)
331 trace_xfs_map_blocks_found(ip, offset, count, type, imap);
332 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333}
334
Christoph Hellwigb8f82a42009-11-14 16:17:22 +0000335STATIC int
Christoph Hellwig558e6892010-04-28 12:28:58 +0000336xfs_imap_valid(
Christoph Hellwig8699bb02010-04-28 12:28:54 +0000337 struct inode *inode,
Christoph Hellwig207d0412010-04-28 12:28:56 +0000338 struct xfs_bmbt_irec *imap,
Christoph Hellwig558e6892010-04-28 12:28:58 +0000339 xfs_off_t offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340{
Christoph Hellwig558e6892010-04-28 12:28:58 +0000341 offset >>= inode->i_blkbits;
Christoph Hellwig8699bb02010-04-28 12:28:54 +0000342
Christoph Hellwig558e6892010-04-28 12:28:58 +0000343 return offset >= imap->br_startoff &&
344 offset < imap->br_startoff + imap->br_blockcount;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345}
346
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100347/*
348 * BIO completion handler for buffered IO.
349 */
Al Viro782e3b32007-10-12 07:17:47 +0100350STATIC void
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100351xfs_end_bio(
Christoph Hellwig4246a0b2015-07-20 15:29:37 +0200352 struct bio *bio)
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100353{
354 xfs_ioend_t *ioend = bio->bi_private;
355
Linus Torvalds77a78802015-09-07 13:28:32 -0700356 if (!ioend->io_error)
357 ioend->io_error = bio->bi_error;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100358
359 /* Toss bio and pass work off to an xfsdatad thread */
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100360 bio->bi_private = NULL;
361 bio->bi_end_io = NULL;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100362 bio_put(bio);
Nathan Scott7d04a332006-06-09 14:58:38 +1000363
Christoph Hellwig209fb872010-07-18 21:17:11 +0000364 xfs_finish_ioend(ioend);
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100365}
366
367STATIC void
368xfs_submit_ioend_bio(
Christoph Hellwig06342cf2009-10-30 09:09:15 +0000369 struct writeback_control *wbc,
370 xfs_ioend_t *ioend,
371 struct bio *bio)
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100372{
373 atomic_inc(&ioend->io_remaining);
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100374 bio->bi_private = ioend;
375 bio->bi_end_io = xfs_end_bio;
Jens Axboe721a9602011-03-09 11:56:30 +0100376 submit_bio(wbc->sync_mode == WB_SYNC_ALL ? WRITE_SYNC : WRITE, bio);
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100377}
378
379STATIC struct bio *
380xfs_alloc_ioend_bio(
381 struct buffer_head *bh)
382{
Kent Overstreetb54ffb72015-05-19 14:31:01 +0200383 struct bio *bio = bio_alloc(GFP_NOIO, BIO_MAX_PAGES);
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100384
385 ASSERT(bio->bi_private == NULL);
Kent Overstreet4f024f32013-10-11 15:44:27 -0700386 bio->bi_iter.bi_sector = bh->b_blocknr * (bh->b_size >> 9);
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100387 bio->bi_bdev = bh->b_bdev;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100388 return bio;
389}
390
391STATIC void
392xfs_start_buffer_writeback(
393 struct buffer_head *bh)
394{
395 ASSERT(buffer_mapped(bh));
396 ASSERT(buffer_locked(bh));
397 ASSERT(!buffer_delay(bh));
398 ASSERT(!buffer_unwritten(bh));
399
400 mark_buffer_async_write(bh);
401 set_buffer_uptodate(bh);
402 clear_buffer_dirty(bh);
403}
404
405STATIC void
406xfs_start_page_writeback(
407 struct page *page,
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100408 int clear_dirty,
409 int buffers)
410{
411 ASSERT(PageLocked(page));
412 ASSERT(!PageWriteback(page));
Dave Chinner0d085a52014-09-23 15:36:27 +1000413
414 /*
415 * if the page was not fully cleaned, we need to ensure that the higher
416 * layers come back to it correctly. That means we need to keep the page
417 * dirty, and for WB_SYNC_ALL writeback we need to ensure the
418 * PAGECACHE_TAG_TOWRITE index mark is not removed so another attempt to
419 * write this page in this writeback sweep will be made.
420 */
421 if (clear_dirty) {
David Chinner92132022006-12-21 10:24:01 +1100422 clear_page_dirty_for_io(page);
Dave Chinner0d085a52014-09-23 15:36:27 +1000423 set_page_writeback(page);
424 } else
425 set_page_writeback_keepwrite(page);
426
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100427 unlock_page(page);
Dave Chinner0d085a52014-09-23 15:36:27 +1000428
Fengguang Wu1f7decf2007-10-16 23:30:42 -0700429 /* If no buffers on the page are to be written, finish it here */
430 if (!buffers)
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100431 end_page_writeback(page);
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100432}
433
Zhi Yong Wuc7c1a7d2013-08-07 10:11:09 +0000434static inline int xfs_bio_add_buffer(struct bio *bio, struct buffer_head *bh)
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100435{
436 return bio_add_page(bio, bh->b_page, bh->b_size, bh_offset(bh));
437}
438
439/*
David Chinnerd88992f2006-01-18 13:38:12 +1100440 * Submit all of the bios for all of the ioends we have saved up, covering the
441 * initial writepage page and also any probed pages.
442 *
443 * Because we may have multiple ioends spanning a page, we need to start
444 * writeback on all the buffers before we submit them for I/O. If we mark the
445 * buffers as we got, then we can end up with a page that only has buffers
446 * marked async write and I/O complete on can occur before we mark the other
447 * buffers async write.
448 *
449 * The end result of this is that we trip a bug in end_page_writeback() because
450 * we call it twice for the one page as the code in end_buffer_async_write()
451 * assumes that all buffers on the page are started at the same time.
452 *
453 * The fix is two passes across the ioend list - one to start writeback on the
Nathan Scottc41564b2006-03-29 08:55:14 +1000454 * buffer_heads, and then submit them for I/O on the second pass.
Dave Chinner7bf7f352012-11-12 22:09:45 +1100455 *
456 * If @fail is non-zero, it means that we have a situation where some part of
457 * the submission process has failed after we have marked paged for writeback
458 * and unlocked them. In this situation, we need to fail the ioend chain rather
459 * than submit it to IO. This typically only happens on a filesystem shutdown.
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100460 */
461STATIC void
462xfs_submit_ioend(
Christoph Hellwig06342cf2009-10-30 09:09:15 +0000463 struct writeback_control *wbc,
Dave Chinner7bf7f352012-11-12 22:09:45 +1100464 xfs_ioend_t *ioend,
465 int fail)
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100466{
David Chinnerd88992f2006-01-18 13:38:12 +1100467 xfs_ioend_t *head = ioend;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100468 xfs_ioend_t *next;
469 struct buffer_head *bh;
470 struct bio *bio;
471 sector_t lastblock = 0;
472
David Chinnerd88992f2006-01-18 13:38:12 +1100473 /* Pass 1 - start writeback */
474 do {
475 next = ioend->io_list;
Christoph Hellwig221cb252010-12-10 08:42:17 +0000476 for (bh = ioend->io_buffer_head; bh; bh = bh->b_private)
David Chinnerd88992f2006-01-18 13:38:12 +1100477 xfs_start_buffer_writeback(bh);
David Chinnerd88992f2006-01-18 13:38:12 +1100478 } while ((ioend = next) != NULL);
479
480 /* Pass 2 - submit I/O */
481 ioend = head;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100482 do {
483 next = ioend->io_list;
484 bio = NULL;
485
Dave Chinner7bf7f352012-11-12 22:09:45 +1100486 /*
487 * If we are failing the IO now, just mark the ioend with an
488 * error and finish it. This will run IO completion immediately
489 * as there is only one reference to the ioend at this point in
490 * time.
491 */
492 if (fail) {
Dave Chinner24513372014-06-25 14:58:08 +1000493 ioend->io_error = fail;
Dave Chinner7bf7f352012-11-12 22:09:45 +1100494 xfs_finish_ioend(ioend);
495 continue;
496 }
497
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100498 for (bh = ioend->io_buffer_head; bh; bh = bh->b_private) {
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100499
500 if (!bio) {
501 retry:
502 bio = xfs_alloc_ioend_bio(bh);
503 } else if (bh->b_blocknr != lastblock + 1) {
Christoph Hellwig06342cf2009-10-30 09:09:15 +0000504 xfs_submit_ioend_bio(wbc, ioend, bio);
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100505 goto retry;
506 }
507
Zhi Yong Wuc7c1a7d2013-08-07 10:11:09 +0000508 if (xfs_bio_add_buffer(bio, bh) != bh->b_size) {
Christoph Hellwig06342cf2009-10-30 09:09:15 +0000509 xfs_submit_ioend_bio(wbc, ioend, bio);
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100510 goto retry;
511 }
512
513 lastblock = bh->b_blocknr;
514 }
515 if (bio)
Christoph Hellwig06342cf2009-10-30 09:09:15 +0000516 xfs_submit_ioend_bio(wbc, ioend, bio);
Christoph Hellwig209fb872010-07-18 21:17:11 +0000517 xfs_finish_ioend(ioend);
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100518 } while ((ioend = next) != NULL);
519}
520
521/*
522 * Cancel submission of all buffer_heads so far in this endio.
523 * Toss the endio too. Only ever called for the initial page
524 * in a writepage request, so only ever one page.
525 */
526STATIC void
527xfs_cancel_ioend(
528 xfs_ioend_t *ioend)
529{
530 xfs_ioend_t *next;
531 struct buffer_head *bh, *next_bh;
532
533 do {
534 next = ioend->io_list;
535 bh = ioend->io_buffer_head;
536 do {
537 next_bh = bh->b_private;
538 clear_buffer_async_write(bh);
Brian Foster07d08682014-10-02 09:42:06 +1000539 /*
540 * The unwritten flag is cleared when added to the
541 * ioend. We're not submitting for I/O so mark the
542 * buffer unwritten again for next time around.
543 */
544 if (ioend->io_type == XFS_IO_UNWRITTEN)
545 set_buffer_unwritten(bh);
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100546 unlock_buffer(bh);
547 } while ((bh = next_bh) != NULL);
548
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100549 mempool_free(ioend, xfs_ioend_pool);
550 } while ((ioend = next) != NULL);
551}
552
553/*
554 * Test to see if we've been building up a completion structure for
555 * earlier buffers -- if so, we try to append to this ioend if we
556 * can, otherwise we finish off any current ioend and start another.
557 * Return true if we've finished the given ioend.
558 */
559STATIC void
560xfs_add_to_ioend(
561 struct inode *inode,
562 struct buffer_head *bh,
Christoph Hellwig7336cea2006-01-11 20:49:16 +1100563 xfs_off_t offset,
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100564 unsigned int type,
565 xfs_ioend_t **result,
566 int need_ioend)
567{
568 xfs_ioend_t *ioend = *result;
569
570 if (!ioend || need_ioend || type != ioend->io_type) {
571 xfs_ioend_t *previous = *result;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100572
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100573 ioend = xfs_alloc_ioend(inode, type);
574 ioend->io_offset = offset;
575 ioend->io_buffer_head = bh;
576 ioend->io_buffer_tail = bh;
577 if (previous)
578 previous->io_list = ioend;
579 *result = ioend;
580 } else {
581 ioend->io_buffer_tail->b_private = bh;
582 ioend->io_buffer_tail = bh;
583 }
584
585 bh->b_private = NULL;
586 ioend->io_size += bh->b_size;
587}
588
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589STATIC void
Nathan Scott87cbc492006-03-14 13:26:43 +1100590xfs_map_buffer(
Christoph Hellwig046f1682010-04-28 12:28:52 +0000591 struct inode *inode,
Nathan Scott87cbc492006-03-14 13:26:43 +1100592 struct buffer_head *bh,
Christoph Hellwig207d0412010-04-28 12:28:56 +0000593 struct xfs_bmbt_irec *imap,
Christoph Hellwig046f1682010-04-28 12:28:52 +0000594 xfs_off_t offset)
Nathan Scott87cbc492006-03-14 13:26:43 +1100595{
596 sector_t bn;
Christoph Hellwig8699bb02010-04-28 12:28:54 +0000597 struct xfs_mount *m = XFS_I(inode)->i_mount;
Christoph Hellwig207d0412010-04-28 12:28:56 +0000598 xfs_off_t iomap_offset = XFS_FSB_TO_B(m, imap->br_startoff);
599 xfs_daddr_t iomap_bn = xfs_fsb_to_db(XFS_I(inode), imap->br_startblock);
Nathan Scott87cbc492006-03-14 13:26:43 +1100600
Christoph Hellwig207d0412010-04-28 12:28:56 +0000601 ASSERT(imap->br_startblock != HOLESTARTBLOCK);
602 ASSERT(imap->br_startblock != DELAYSTARTBLOCK);
Nathan Scott87cbc492006-03-14 13:26:43 +1100603
Christoph Hellwige5131822010-04-28 12:28:55 +0000604 bn = (iomap_bn >> (inode->i_blkbits - BBSHIFT)) +
Christoph Hellwig8699bb02010-04-28 12:28:54 +0000605 ((offset - iomap_offset) >> inode->i_blkbits);
Nathan Scott87cbc492006-03-14 13:26:43 +1100606
Christoph Hellwig046f1682010-04-28 12:28:52 +0000607 ASSERT(bn || XFS_IS_REALTIME_INODE(XFS_I(inode)));
Nathan Scott87cbc492006-03-14 13:26:43 +1100608
609 bh->b_blocknr = bn;
610 set_buffer_mapped(bh);
611}
612
613STATIC void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614xfs_map_at_offset(
Christoph Hellwig046f1682010-04-28 12:28:52 +0000615 struct inode *inode,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 struct buffer_head *bh,
Christoph Hellwig207d0412010-04-28 12:28:56 +0000617 struct xfs_bmbt_irec *imap,
Christoph Hellwig046f1682010-04-28 12:28:52 +0000618 xfs_off_t offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619{
Christoph Hellwig207d0412010-04-28 12:28:56 +0000620 ASSERT(imap->br_startblock != HOLESTARTBLOCK);
621 ASSERT(imap->br_startblock != DELAYSTARTBLOCK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622
Christoph Hellwig207d0412010-04-28 12:28:56 +0000623 xfs_map_buffer(inode, bh, imap, offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 set_buffer_mapped(bh);
625 clear_buffer_delay(bh);
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100626 clear_buffer_unwritten(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627}
628
629/*
Dave Chinnera49935f2014-03-07 16:19:14 +1100630 * Test if a given page contains at least one buffer of a given @type.
631 * If @check_all_buffers is true, then we walk all the buffers in the page to
632 * try to find one of the type passed in. If it is not set, then the caller only
633 * needs to check the first buffer on the page for a match.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 */
Dave Chinnera49935f2014-03-07 16:19:14 +1100635STATIC bool
Dave Chinner6ffc4db2012-04-23 15:58:43 +1000636xfs_check_page_type(
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100637 struct page *page,
Dave Chinnera49935f2014-03-07 16:19:14 +1100638 unsigned int type,
639 bool check_all_buffers)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640{
Dave Chinnera49935f2014-03-07 16:19:14 +1100641 struct buffer_head *bh;
642 struct buffer_head *head;
643
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 if (PageWriteback(page))
Dave Chinnera49935f2014-03-07 16:19:14 +1100645 return false;
646 if (!page->mapping)
647 return false;
648 if (!page_has_buffers(page))
649 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650
Dave Chinnera49935f2014-03-07 16:19:14 +1100651 bh = head = page_buffers(page);
652 do {
653 if (buffer_unwritten(bh)) {
654 if (type == XFS_IO_UNWRITTEN)
655 return true;
656 } else if (buffer_delay(bh)) {
Dan Carpenter805eeb82014-04-04 06:56:30 +1100657 if (type == XFS_IO_DELALLOC)
Dave Chinnera49935f2014-03-07 16:19:14 +1100658 return true;
659 } else if (buffer_dirty(bh) && buffer_mapped(bh)) {
Dan Carpenter805eeb82014-04-04 06:56:30 +1100660 if (type == XFS_IO_OVERWRITE)
Dave Chinnera49935f2014-03-07 16:19:14 +1100661 return true;
662 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663
Dave Chinnera49935f2014-03-07 16:19:14 +1100664 /* If we are only checking the first buffer, we are done now. */
665 if (!check_all_buffers)
666 break;
667 } while ((bh = bh->b_this_page) != head);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668
Dave Chinnera49935f2014-03-07 16:19:14 +1100669 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670}
671
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672/*
673 * Allocate & map buffers for page given the extent map. Write it out.
674 * except for the original page of a writepage, this is called on
675 * delalloc/unwritten pages only, for the original page it is possible
676 * that the page has no mapping at all.
677 */
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100678STATIC int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679xfs_convert_page(
680 struct inode *inode,
681 struct page *page,
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100682 loff_t tindex,
Christoph Hellwig207d0412010-04-28 12:28:56 +0000683 struct xfs_bmbt_irec *imap,
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100684 xfs_ioend_t **ioendp,
Christoph Hellwig2fa24f92010-12-10 08:42:23 +0000685 struct writeback_control *wbc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686{
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100687 struct buffer_head *bh, *head;
Christoph Hellwig9260dc62006-01-11 20:48:47 +1100688 xfs_off_t end_offset;
689 unsigned long p_offset;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100690 unsigned int type;
Nathan Scott24e17b52005-05-05 13:33:20 -0700691 int len, page_dirty;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100692 int count = 0, done = 0, uptodate = 1;
Christoph Hellwig9260dc62006-01-11 20:48:47 +1100693 xfs_off_t offset = page_offset(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100695 if (page->index != tindex)
696 goto fail;
Nick Piggin529ae9a2008-08-02 12:01:03 +0200697 if (!trylock_page(page))
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100698 goto fail;
699 if (PageWriteback(page))
700 goto fail_unlock_page;
701 if (page->mapping != inode->i_mapping)
702 goto fail_unlock_page;
Dave Chinnera49935f2014-03-07 16:19:14 +1100703 if (!xfs_check_page_type(page, (*ioendp)->io_type, false))
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100704 goto fail_unlock_page;
705
Nathan Scott24e17b52005-05-05 13:33:20 -0700706 /*
707 * page_dirty is initially a count of buffers on the page before
Nathan Scottc41564b2006-03-29 08:55:14 +1000708 * EOF and is decremented as we move each into a cleanable state.
Christoph Hellwig9260dc62006-01-11 20:48:47 +1100709 *
710 * Derivation:
711 *
712 * End offset is the highest offset that this page should represent.
713 * If we are on the last page, (end_offset & (PAGE_CACHE_SIZE - 1))
714 * will evaluate non-zero and be less than PAGE_CACHE_SIZE and
715 * hence give us the correct page_dirty count. On any other page,
716 * it will be zero and in that case we need page_dirty to be the
717 * count of buffers on the page.
Nathan Scott24e17b52005-05-05 13:33:20 -0700718 */
Christoph Hellwig9260dc62006-01-11 20:48:47 +1100719 end_offset = min_t(unsigned long long,
720 (xfs_off_t)(page->index + 1) << PAGE_CACHE_SHIFT,
721 i_size_read(inode));
722
Dave Chinner480d7462013-05-20 09:51:08 +1000723 /*
724 * If the current map does not span the entire page we are about to try
725 * to write, then give up. The only way we can write a page that spans
726 * multiple mappings in a single writeback iteration is via the
727 * xfs_vm_writepage() function. Data integrity writeback requires the
728 * entire page to be written in a single attempt, otherwise the part of
729 * the page we don't write here doesn't get written as part of the data
730 * integrity sync.
731 *
732 * For normal writeback, we also don't attempt to write partial pages
733 * here as it simply means that write_cache_pages() will see it under
734 * writeback and ignore the page until some point in the future, at
735 * which time this will be the only page in the file that needs
736 * writeback. Hence for more optimal IO patterns, we should always
737 * avoid partial page writeback due to multiple mappings on a page here.
738 */
739 if (!xfs_imap_valid(inode, imap, end_offset))
740 goto fail_unlock_page;
741
Nathan Scott24e17b52005-05-05 13:33:20 -0700742 len = 1 << inode->i_blkbits;
Christoph Hellwig9260dc62006-01-11 20:48:47 +1100743 p_offset = min_t(unsigned long, end_offset & (PAGE_CACHE_SIZE - 1),
744 PAGE_CACHE_SIZE);
745 p_offset = p_offset ? roundup(p_offset, len) : PAGE_CACHE_SIZE;
746 page_dirty = p_offset / len;
Nathan Scott24e17b52005-05-05 13:33:20 -0700747
Dave Chinnera49935f2014-03-07 16:19:14 +1100748 /*
749 * The moment we find a buffer that doesn't match our current type
750 * specification or can't be written, abort the loop and start
751 * writeback. As per the above xfs_imap_valid() check, only
752 * xfs_vm_writepage() can handle partial page writeback fully - we are
753 * limited here to the buffers that are contiguous with the current
754 * ioend, and hence a buffer we can't write breaks that contiguity and
755 * we have to defer the rest of the IO to xfs_vm_writepage().
756 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757 bh = head = page_buffers(page);
758 do {
Christoph Hellwig9260dc62006-01-11 20:48:47 +1100759 if (offset >= end_offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 break;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100761 if (!buffer_uptodate(bh))
762 uptodate = 0;
763 if (!(PageUptodate(page) || buffer_uptodate(bh))) {
764 done = 1;
Dave Chinnera49935f2014-03-07 16:19:14 +1100765 break;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100766 }
767
Christoph Hellwig2fa24f92010-12-10 08:42:23 +0000768 if (buffer_unwritten(bh) || buffer_delay(bh) ||
769 buffer_mapped(bh)) {
Christoph Hellwig9260dc62006-01-11 20:48:47 +1100770 if (buffer_unwritten(bh))
Alain Renaud0d882a32012-05-22 15:56:21 -0500771 type = XFS_IO_UNWRITTEN;
Christoph Hellwig2fa24f92010-12-10 08:42:23 +0000772 else if (buffer_delay(bh))
Alain Renaud0d882a32012-05-22 15:56:21 -0500773 type = XFS_IO_DELALLOC;
Christoph Hellwig2fa24f92010-12-10 08:42:23 +0000774 else
Alain Renaud0d882a32012-05-22 15:56:21 -0500775 type = XFS_IO_OVERWRITE;
Christoph Hellwig9260dc62006-01-11 20:48:47 +1100776
Dave Chinnera49935f2014-03-07 16:19:14 +1100777 /*
778 * imap should always be valid because of the above
779 * partial page end_offset check on the imap.
780 */
781 ASSERT(xfs_imap_valid(inode, imap, offset));
Christoph Hellwig9260dc62006-01-11 20:48:47 +1100782
Christoph Hellwigecff71e2010-12-10 08:42:25 +0000783 lock_buffer(bh);
Alain Renaud0d882a32012-05-22 15:56:21 -0500784 if (type != XFS_IO_OVERWRITE)
Christoph Hellwig2fa24f92010-12-10 08:42:23 +0000785 xfs_map_at_offset(inode, bh, imap, offset);
Christoph Hellwig89f3b3632010-06-24 09:45:48 +1000786 xfs_add_to_ioend(inode, bh, offset, type,
787 ioendp, done);
788
Christoph Hellwig9260dc62006-01-11 20:48:47 +1100789 page_dirty--;
790 count++;
791 } else {
Christoph Hellwig2fa24f92010-12-10 08:42:23 +0000792 done = 1;
Dave Chinnera49935f2014-03-07 16:19:14 +1100793 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 }
Christoph Hellwig7336cea2006-01-11 20:49:16 +1100795 } while (offset += len, (bh = bh->b_this_page) != head);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100797 if (uptodate && bh == head)
798 SetPageUptodate(page);
799
Christoph Hellwig89f3b3632010-06-24 09:45:48 +1000800 if (count) {
Dave Chinnerefceab12010-08-24 11:44:56 +1000801 if (--wbc->nr_to_write <= 0 &&
802 wbc->sync_mode == WB_SYNC_NONE)
Christoph Hellwig89f3b3632010-06-24 09:45:48 +1000803 done = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 }
Christoph Hellwig89f3b3632010-06-24 09:45:48 +1000805 xfs_start_page_writeback(page, !page_dirty, count);
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100806
807 return done;
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100808 fail_unlock_page:
809 unlock_page(page);
810 fail:
811 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812}
813
814/*
815 * Convert & write out a cluster of pages in the same extent as defined
816 * by mp and following the start page.
817 */
818STATIC void
819xfs_cluster_write(
820 struct inode *inode,
821 pgoff_t tindex,
Christoph Hellwig207d0412010-04-28 12:28:56 +0000822 struct xfs_bmbt_irec *imap,
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100823 xfs_ioend_t **ioendp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 struct writeback_control *wbc,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 pgoff_t tlast)
826{
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100827 struct pagevec pvec;
828 int done = 0, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100830 pagevec_init(&pvec, 0);
831 while (!done && tindex <= tlast) {
832 unsigned len = min_t(pgoff_t, PAGEVEC_SIZE, tlast - tindex + 1);
833
834 if (!pagevec_lookup(&pvec, inode->i_mapping, tindex, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 break;
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100836
837 for (i = 0; i < pagevec_count(&pvec); i++) {
838 done = xfs_convert_page(inode, pvec.pages[i], tindex++,
Christoph Hellwig2fa24f92010-12-10 08:42:23 +0000839 imap, ioendp, wbc);
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100840 if (done)
841 break;
842 }
843
844 pagevec_release(&pvec);
845 cond_resched();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 }
847}
848
Dave Chinner3ed3a432010-03-05 02:00:42 +0000849STATIC void
850xfs_vm_invalidatepage(
851 struct page *page,
Lukas Czernerd47992f2013-05-21 23:17:23 -0400852 unsigned int offset,
853 unsigned int length)
Dave Chinner3ed3a432010-03-05 02:00:42 +0000854{
Lukas Czerner34097df2013-05-21 23:58:01 -0400855 trace_xfs_invalidatepage(page->mapping->host, page, offset,
856 length);
857 block_invalidatepage(page, offset, length);
Dave Chinner3ed3a432010-03-05 02:00:42 +0000858}
859
860/*
861 * If the page has delalloc buffers on it, we need to punch them out before we
862 * invalidate the page. If we don't, we leave a stale delalloc mapping on the
863 * inode that can trip a BUG() in xfs_get_blocks() later on if a direct IO read
864 * is done on that same region - the delalloc extent is returned when none is
865 * supposed to be there.
866 *
867 * We prevent this by truncating away the delalloc regions on the page before
868 * invalidating it. Because they are delalloc, we can do this without needing a
869 * transaction. Indeed - if we get ENOSPC errors, we have to be able to do this
870 * truncation without a transaction as there is no space left for block
871 * reservation (typically why we see a ENOSPC in writeback).
872 *
873 * This is not a performance critical path, so for now just do the punching a
874 * buffer head at a time.
875 */
876STATIC void
877xfs_aops_discard_page(
878 struct page *page)
879{
880 struct inode *inode = page->mapping->host;
881 struct xfs_inode *ip = XFS_I(inode);
882 struct buffer_head *bh, *head;
883 loff_t offset = page_offset(page);
Dave Chinner3ed3a432010-03-05 02:00:42 +0000884
Dave Chinnera49935f2014-03-07 16:19:14 +1100885 if (!xfs_check_page_type(page, XFS_IO_DELALLOC, true))
Dave Chinner3ed3a432010-03-05 02:00:42 +0000886 goto out_invalidate;
887
Dave Chinnere8c37532010-03-15 02:36:35 +0000888 if (XFS_FORCED_SHUTDOWN(ip->i_mount))
889 goto out_invalidate;
890
Dave Chinner4f107002011-03-07 10:00:35 +1100891 xfs_alert(ip->i_mount,
Dave Chinner3ed3a432010-03-05 02:00:42 +0000892 "page discard on page %p, inode 0x%llx, offset %llu.",
893 page, ip->i_ino, offset);
894
895 xfs_ilock(ip, XFS_ILOCK_EXCL);
896 bh = head = page_buffers(page);
897 do {
Dave Chinner3ed3a432010-03-05 02:00:42 +0000898 int error;
Dave Chinnerc726de42010-11-30 15:14:39 +1100899 xfs_fileoff_t start_fsb;
Dave Chinner3ed3a432010-03-05 02:00:42 +0000900
901 if (!buffer_delay(bh))
902 goto next_buffer;
903
Dave Chinnerc726de42010-11-30 15:14:39 +1100904 start_fsb = XFS_B_TO_FSBT(ip->i_mount, offset);
905 error = xfs_bmap_punch_delalloc_range(ip, start_fsb, 1);
Dave Chinner3ed3a432010-03-05 02:00:42 +0000906 if (error) {
907 /* something screwed, just bail */
Dave Chinnere8c37532010-03-15 02:36:35 +0000908 if (!XFS_FORCED_SHUTDOWN(ip->i_mount)) {
Dave Chinner4f107002011-03-07 10:00:35 +1100909 xfs_alert(ip->i_mount,
Dave Chinner3ed3a432010-03-05 02:00:42 +0000910 "page discard unable to remove delalloc mapping.");
Dave Chinnere8c37532010-03-15 02:36:35 +0000911 }
Dave Chinner3ed3a432010-03-05 02:00:42 +0000912 break;
913 }
914next_buffer:
Dave Chinnerc726de42010-11-30 15:14:39 +1100915 offset += 1 << inode->i_blkbits;
Dave Chinner3ed3a432010-03-05 02:00:42 +0000916
917 } while ((bh = bh->b_this_page) != head);
918
919 xfs_iunlock(ip, XFS_ILOCK_EXCL);
920out_invalidate:
Lukas Czernerd47992f2013-05-21 23:17:23 -0400921 xfs_vm_invalidatepage(page, 0, PAGE_CACHE_SIZE);
Dave Chinner3ed3a432010-03-05 02:00:42 +0000922 return;
923}
924
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925/*
Christoph Hellwig89f3b3632010-06-24 09:45:48 +1000926 * Write out a dirty page.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927 *
Christoph Hellwig89f3b3632010-06-24 09:45:48 +1000928 * For delalloc space on the page we need to allocate space and flush it.
929 * For unwritten space on the page we need to start the conversion to
930 * regular allocated space.
Christoph Hellwig89f3b3632010-06-24 09:45:48 +1000931 * For any other dirty buffer heads on the page we should flush them.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933STATIC int
Christoph Hellwig89f3b3632010-06-24 09:45:48 +1000934xfs_vm_writepage(
935 struct page *page,
936 struct writeback_control *wbc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937{
Christoph Hellwig89f3b3632010-06-24 09:45:48 +1000938 struct inode *inode = page->mapping->host;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100939 struct buffer_head *bh, *head;
Christoph Hellwig207d0412010-04-28 12:28:56 +0000940 struct xfs_bmbt_irec imap;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100941 xfs_ioend_t *ioend = NULL, *iohead = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942 loff_t offset;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100943 unsigned int type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944 __uint64_t end_offset;
Christoph Hellwigbd1556a2010-04-28 12:29:00 +0000945 pgoff_t end_index, last_index;
Christoph Hellwiged1e7b72010-12-10 08:42:22 +0000946 ssize_t len;
Christoph Hellwiga206c812010-12-10 08:42:20 +0000947 int err, imap_valid = 0, uptodate = 1;
Christoph Hellwig89f3b3632010-06-24 09:45:48 +1000948 int count = 0;
Christoph Hellwiga206c812010-12-10 08:42:20 +0000949 int nonblocking = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950
Lukas Czerner34097df2013-05-21 23:58:01 -0400951 trace_xfs_writepage(inode, page, 0, 0);
Christoph Hellwig89f3b3632010-06-24 09:45:48 +1000952
Christoph Hellwig20cb52e2010-06-24 09:46:01 +1000953 ASSERT(page_has_buffers(page));
954
Christoph Hellwig89f3b3632010-06-24 09:45:48 +1000955 /*
956 * Refuse to write the page out if we are called from reclaim context.
957 *
Christoph Hellwigd4f7a5c2010-06-28 10:34:44 -0400958 * This avoids stack overflows when called from deeply used stacks in
959 * random callers for direct reclaim or memcg reclaim. We explicitly
960 * allow reclaim from kswapd as the stack usage there is relatively low.
Christoph Hellwig89f3b3632010-06-24 09:45:48 +1000961 *
Mel Gorman94054fa2011-10-31 17:07:45 -0700962 * This should never happen except in the case of a VM regression so
963 * warn about it.
Christoph Hellwig89f3b3632010-06-24 09:45:48 +1000964 */
Mel Gorman94054fa2011-10-31 17:07:45 -0700965 if (WARN_ON_ONCE((current->flags & (PF_MEMALLOC|PF_KSWAPD)) ==
966 PF_MEMALLOC))
Christoph Hellwigb5420f22010-08-24 11:47:51 +1000967 goto redirty;
Christoph Hellwig89f3b3632010-06-24 09:45:48 +1000968
969 /*
Christoph Hellwig680a6472011-07-08 14:34:05 +0200970 * Given that we do not allow direct reclaim to call us, we should
971 * never be called while in a filesystem transaction.
Christoph Hellwig89f3b3632010-06-24 09:45:48 +1000972 */
Christoph Hellwig448011e2014-06-06 16:05:15 +1000973 if (WARN_ON_ONCE(current->flags & PF_FSTRANS))
Christoph Hellwigb5420f22010-08-24 11:47:51 +1000974 goto redirty;
Christoph Hellwig89f3b3632010-06-24 09:45:48 +1000975
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976 /* Is this page beyond the end of the file? */
977 offset = i_size_read(inode);
978 end_index = offset >> PAGE_CACHE_SHIFT;
979 last_index = (offset - 1) >> PAGE_CACHE_SHIFT;
Jie Liu8695d272014-05-20 08:24:26 +1000980
981 /*
982 * The page index is less than the end_index, adjust the end_offset
983 * to the highest offset that this page should represent.
984 * -----------------------------------------------------
985 * | file mapping | <EOF> |
986 * -----------------------------------------------------
987 * | Page ... | Page N-2 | Page N-1 | Page N | |
988 * ^--------------------------------^----------|--------
989 * | desired writeback range | see else |
990 * ---------------------------------^------------------|
991 */
992 if (page->index < end_index)
993 end_offset = (xfs_off_t)(page->index + 1) << PAGE_CACHE_SHIFT;
994 else {
995 /*
996 * Check whether the page to write out is beyond or straddles
997 * i_size or not.
998 * -------------------------------------------------------
999 * | file mapping | <EOF> |
1000 * -------------------------------------------------------
1001 * | Page ... | Page N-2 | Page N-1 | Page N | Beyond |
1002 * ^--------------------------------^-----------|---------
1003 * | | Straddles |
1004 * ---------------------------------^-----------|--------|
1005 */
Christoph Hellwig6b7a03f2012-07-03 12:20:00 -04001006 unsigned offset_into_page = offset & (PAGE_CACHE_SIZE - 1);
1007
1008 /*
Jan Karaff9a28f2013-03-14 14:30:54 +01001009 * Skip the page if it is fully outside i_size, e.g. due to a
1010 * truncate operation that is in progress. We must redirty the
1011 * page so that reclaim stops reclaiming it. Otherwise
1012 * xfs_vm_releasepage() is called on it and gets confused.
Jie Liu8695d272014-05-20 08:24:26 +10001013 *
1014 * Note that the end_index is unsigned long, it would overflow
1015 * if the given offset is greater than 16TB on 32-bit system
1016 * and if we do check the page is fully outside i_size or not
1017 * via "if (page->index >= end_index + 1)" as "end_index + 1"
1018 * will be evaluated to 0. Hence this page will be redirtied
1019 * and be written out repeatedly which would result in an
1020 * infinite loop, the user program that perform this operation
1021 * will hang. Instead, we can verify this situation by checking
1022 * if the page to write is totally beyond the i_size or if it's
1023 * offset is just equal to the EOF.
Christoph Hellwig6b7a03f2012-07-03 12:20:00 -04001024 */
Jie Liu8695d272014-05-20 08:24:26 +10001025 if (page->index > end_index ||
1026 (page->index == end_index && offset_into_page == 0))
Jan Karaff9a28f2013-03-14 14:30:54 +01001027 goto redirty;
Christoph Hellwig6b7a03f2012-07-03 12:20:00 -04001028
1029 /*
1030 * The page straddles i_size. It must be zeroed out on each
1031 * and every writepage invocation because it may be mmapped.
1032 * "A file is mapped in multiples of the page size. For a file
Jie Liu8695d272014-05-20 08:24:26 +10001033 * that is not a multiple of the page size, the remaining
Christoph Hellwig6b7a03f2012-07-03 12:20:00 -04001034 * memory is zeroed when mapped, and writes to that region are
1035 * not written out to the file."
1036 */
1037 zero_user_segment(page, offset_into_page, PAGE_CACHE_SIZE);
Jie Liu8695d272014-05-20 08:24:26 +10001038
1039 /* Adjust the end_offset to the end of file */
1040 end_offset = offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041 }
1042
Nathan Scott24e17b52005-05-05 13:33:20 -07001043 len = 1 << inode->i_blkbits;
Nathan Scott24e17b52005-05-05 13:33:20 -07001044
Nathan Scott24e17b52005-05-05 13:33:20 -07001045 bh = head = page_buffers(page);
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +11001046 offset = page_offset(page);
Alain Renaud0d882a32012-05-22 15:56:21 -05001047 type = XFS_IO_OVERWRITE;
Christoph Hellwiga206c812010-12-10 08:42:20 +00001048
Christoph Hellwigdbcdde32011-07-08 14:34:14 +02001049 if (wbc->sync_mode == WB_SYNC_NONE)
Christoph Hellwiga206c812010-12-10 08:42:20 +00001050 nonblocking = 1;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +11001051
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052 do {
Christoph Hellwig6ac72482010-12-10 08:42:18 +00001053 int new_ioend = 0;
1054
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055 if (offset >= end_offset)
1056 break;
1057 if (!buffer_uptodate(bh))
1058 uptodate = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059
Eric Sandeen3d9b02e2010-06-24 09:45:30 +10001060 /*
Christoph Hellwigece413f2010-11-10 21:39:11 +00001061 * set_page_dirty dirties all buffers in a page, independent
1062 * of their state. The dirty state however is entirely
1063 * meaningless for holes (!mapped && uptodate), so skip
1064 * buffers covering holes here.
Eric Sandeen3d9b02e2010-06-24 09:45:30 +10001065 */
1066 if (!buffer_mapped(bh) && buffer_uptodate(bh)) {
Eric Sandeen3d9b02e2010-06-24 09:45:30 +10001067 imap_valid = 0;
1068 continue;
1069 }
1070
Christoph Hellwigaeea1b12010-12-10 08:42:24 +00001071 if (buffer_unwritten(bh)) {
Alain Renaud0d882a32012-05-22 15:56:21 -05001072 if (type != XFS_IO_UNWRITTEN) {
1073 type = XFS_IO_UNWRITTEN;
Christoph Hellwigaeea1b12010-12-10 08:42:24 +00001074 imap_valid = 0;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +11001075 }
Christoph Hellwigaeea1b12010-12-10 08:42:24 +00001076 } else if (buffer_delay(bh)) {
Alain Renaud0d882a32012-05-22 15:56:21 -05001077 if (type != XFS_IO_DELALLOC) {
1078 type = XFS_IO_DELALLOC;
Christoph Hellwigaeea1b12010-12-10 08:42:24 +00001079 imap_valid = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080 }
Christoph Hellwig89f3b3632010-06-24 09:45:48 +10001081 } else if (buffer_uptodate(bh)) {
Alain Renaud0d882a32012-05-22 15:56:21 -05001082 if (type != XFS_IO_OVERWRITE) {
1083 type = XFS_IO_OVERWRITE;
Christoph Hellwig85da94c2010-12-10 08:42:16 +00001084 imap_valid = 0;
1085 }
Christoph Hellwigaeea1b12010-12-10 08:42:24 +00001086 } else {
Alain Renaud7d0fa3e2012-06-08 15:34:46 -04001087 if (PageUptodate(page))
Christoph Hellwigaeea1b12010-12-10 08:42:24 +00001088 ASSERT(buffer_mapped(bh));
Alain Renaud7d0fa3e2012-06-08 15:34:46 -04001089 /*
1090 * This buffer is not uptodate and will not be
1091 * written to disk. Ensure that we will put any
1092 * subsequent writeable buffers into a new
1093 * ioend.
1094 */
1095 imap_valid = 0;
Christoph Hellwigaeea1b12010-12-10 08:42:24 +00001096 continue;
1097 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098
Christoph Hellwigaeea1b12010-12-10 08:42:24 +00001099 if (imap_valid)
1100 imap_valid = xfs_imap_valid(inode, &imap, offset);
1101 if (!imap_valid) {
1102 /*
1103 * If we didn't have a valid mapping then we need to
1104 * put the new mapping into a separate ioend structure.
1105 * This ensures non-contiguous extents always have
1106 * separate ioends, which is particularly important
1107 * for unwritten extent conversion at I/O completion
1108 * time.
1109 */
1110 new_ioend = 1;
1111 err = xfs_map_blocks(inode, offset, &imap, type,
1112 nonblocking);
1113 if (err)
1114 goto error;
1115 imap_valid = xfs_imap_valid(inode, &imap, offset);
1116 }
1117 if (imap_valid) {
Christoph Hellwigecff71e2010-12-10 08:42:25 +00001118 lock_buffer(bh);
Alain Renaud0d882a32012-05-22 15:56:21 -05001119 if (type != XFS_IO_OVERWRITE)
Christoph Hellwigaeea1b12010-12-10 08:42:24 +00001120 xfs_map_at_offset(inode, bh, &imap, offset);
1121 xfs_add_to_ioend(inode, bh, offset, type, &ioend,
1122 new_ioend);
1123 count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124 }
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +11001125
1126 if (!iohead)
1127 iohead = ioend;
1128
1129 } while (offset += len, ((bh = bh->b_this_page) != head));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130
1131 if (uptodate && bh == head)
1132 SetPageUptodate(page);
1133
Christoph Hellwig89f3b3632010-06-24 09:45:48 +10001134 xfs_start_page_writeback(page, 1, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135
Dave Chinner7bf7f352012-11-12 22:09:45 +11001136 /* if there is no IO to be submitted for this page, we are done */
1137 if (!ioend)
1138 return 0;
1139
1140 ASSERT(iohead);
1141
1142 /*
1143 * Any errors from this point onwards need tobe reported through the IO
1144 * completion path as we have marked the initial page as under writeback
1145 * and unlocked it.
1146 */
1147 if (imap_valid) {
Christoph Hellwigbd1556a2010-04-28 12:29:00 +00001148 xfs_off_t end_index;
Christoph Hellwig8699bb02010-04-28 12:28:54 +00001149
Christoph Hellwigbd1556a2010-04-28 12:29:00 +00001150 end_index = imap.br_startoff + imap.br_blockcount;
1151
1152 /* to bytes */
1153 end_index <<= inode->i_blkbits;
1154
1155 /* to pages */
1156 end_index = (end_index - 1) >> PAGE_CACHE_SHIFT;
1157
1158 /* check against file size */
1159 if (end_index > last_index)
1160 end_index = last_index;
1161
Christoph Hellwig207d0412010-04-28 12:28:56 +00001162 xfs_cluster_write(inode, page->index + 1, &imap, &ioend,
Christoph Hellwig2fa24f92010-12-10 08:42:23 +00001163 wbc, end_index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164 }
1165
Christoph Hellwig281627d2012-03-13 08:41:05 +00001166
Dave Chinner7bf7f352012-11-12 22:09:45 +11001167 /*
1168 * Reserve log space if we might write beyond the on-disk inode size.
1169 */
1170 err = 0;
1171 if (ioend->io_type != XFS_IO_UNWRITTEN && xfs_ioend_is_append(ioend))
1172 err = xfs_setfilesize_trans_alloc(ioend);
1173
1174 xfs_submit_ioend(wbc, iohead, err);
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +11001175
Christoph Hellwig89f3b3632010-06-24 09:45:48 +10001176 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177
1178error:
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +11001179 if (iohead)
1180 xfs_cancel_ioend(iohead);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181
Christoph Hellwigb5420f22010-08-24 11:47:51 +10001182 if (err == -EAGAIN)
1183 goto redirty;
1184
Christoph Hellwig20cb52e2010-06-24 09:46:01 +10001185 xfs_aops_discard_page(page);
Christoph Hellwig89f3b3632010-06-24 09:45:48 +10001186 ClearPageUptodate(page);
1187 unlock_page(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188 return err;
Nathan Scottf51623b2006-03-14 13:26:27 +11001189
Christoph Hellwigb5420f22010-08-24 11:47:51 +10001190redirty:
Nathan Scottf51623b2006-03-14 13:26:27 +11001191 redirty_page_for_writepage(wbc, page);
1192 unlock_page(page);
1193 return 0;
Nathan Scottf51623b2006-03-14 13:26:27 +11001194}
1195
Nathan Scott7d4fb402006-06-09 15:27:16 +10001196STATIC int
1197xfs_vm_writepages(
1198 struct address_space *mapping,
1199 struct writeback_control *wbc)
1200{
Christoph Hellwigb3aea4e2007-08-29 11:44:37 +10001201 xfs_iflags_clear(XFS_I(mapping->host), XFS_ITRUNCATED);
Nathan Scott7d4fb402006-06-09 15:27:16 +10001202 return generic_writepages(mapping, wbc);
1203}
1204
Nathan Scottf51623b2006-03-14 13:26:27 +11001205/*
1206 * Called to move a page into cleanable state - and from there
Christoph Hellwig89f3b3632010-06-24 09:45:48 +10001207 * to be released. The page should already be clean. We always
Nathan Scottf51623b2006-03-14 13:26:27 +11001208 * have buffer heads in this call.
1209 *
Christoph Hellwig89f3b3632010-06-24 09:45:48 +10001210 * Returns 1 if the page is ok to release, 0 otherwise.
Nathan Scottf51623b2006-03-14 13:26:27 +11001211 */
1212STATIC int
Nathan Scott238f4c52006-03-17 17:26:25 +11001213xfs_vm_releasepage(
Nathan Scottf51623b2006-03-14 13:26:27 +11001214 struct page *page,
1215 gfp_t gfp_mask)
1216{
Christoph Hellwig20cb52e2010-06-24 09:46:01 +10001217 int delalloc, unwritten;
Nathan Scottf51623b2006-03-14 13:26:27 +11001218
Lukas Czerner34097df2013-05-21 23:58:01 -04001219 trace_xfs_releasepage(page->mapping->host, page, 0, 0);
Nathan Scott238f4c52006-03-17 17:26:25 +11001220
Christoph Hellwig20cb52e2010-06-24 09:46:01 +10001221 xfs_count_page_state(page, &delalloc, &unwritten);
Nathan Scottf51623b2006-03-14 13:26:27 +11001222
Christoph Hellwig448011e2014-06-06 16:05:15 +10001223 if (WARN_ON_ONCE(delalloc))
Christoph Hellwig89f3b3632010-06-24 09:45:48 +10001224 return 0;
Christoph Hellwig448011e2014-06-06 16:05:15 +10001225 if (WARN_ON_ONCE(unwritten))
Nathan Scottf51623b2006-03-14 13:26:27 +11001226 return 0;
1227
Nathan Scottf51623b2006-03-14 13:26:27 +11001228 return try_to_free_buffers(page);
1229}
1230
Dave Chinnera7193702015-04-16 21:57:48 +10001231/*
Dave Chinnera06c2772015-04-16 22:00:00 +10001232 * When we map a DIO buffer, we may need to attach an ioend that describes the
1233 * type of write IO we are doing. This passes to the completion function the
1234 * operations it needs to perform. If the mapping is for an overwrite wholly
1235 * within the EOF then we don't need an ioend and so we don't allocate one.
1236 * This avoids the unnecessary overhead of allocating and freeing ioends for
1237 * workloads that don't require transactions on IO completion.
Dave Chinnerd5cc2e32015-04-16 21:59:07 +10001238 *
1239 * If we get multiple mappings in a single IO, we might be mapping different
1240 * types. But because the direct IO can only have a single private pointer, we
1241 * need to ensure that:
1242 *
Dave Chinnera06c2772015-04-16 22:00:00 +10001243 * a) i) the ioend spans the entire region of unwritten mappings; or
1244 * ii) the ioend spans all the mappings that cross or are beyond EOF; and
Dave Chinnerd5cc2e32015-04-16 21:59:07 +10001245 * b) if it contains unwritten extents, it is *permanently* marked as such
1246 *
1247 * We could do this by chaining ioends like buffered IO does, but we only
1248 * actually get one IO completion callback from the direct IO, and that spans
1249 * the entire IO regardless of how many mappings and IOs are needed to complete
1250 * the DIO. There is only going to be one reference to the ioend and its life
1251 * cycle is constrained by the DIO completion code. hence we don't need
1252 * reference counting here.
Dave Chinnera7193702015-04-16 21:57:48 +10001253 */
1254static void
1255xfs_map_direct(
1256 struct inode *inode,
1257 struct buffer_head *bh_result,
1258 struct xfs_bmbt_irec *imap,
1259 xfs_off_t offset)
1260{
Dave Chinnerd5cc2e32015-04-16 21:59:07 +10001261 struct xfs_ioend *ioend;
1262 xfs_off_t size = bh_result->b_size;
1263 int type;
1264
1265 if (ISUNWRITTEN(imap))
1266 type = XFS_IO_UNWRITTEN;
1267 else
1268 type = XFS_IO_OVERWRITE;
1269
1270 trace_xfs_gbmap_direct(XFS_I(inode), offset, size, type, imap);
1271
1272 if (bh_result->b_private) {
1273 ioend = bh_result->b_private;
1274 ASSERT(ioend->io_size > 0);
1275 ASSERT(offset >= ioend->io_offset);
1276 if (offset + size > ioend->io_offset + ioend->io_size)
1277 ioend->io_size = offset - ioend->io_offset + size;
1278
1279 if (type == XFS_IO_UNWRITTEN && type != ioend->io_type)
1280 ioend->io_type = XFS_IO_UNWRITTEN;
1281
1282 trace_xfs_gbmap_direct_update(XFS_I(inode), ioend->io_offset,
1283 ioend->io_size, ioend->io_type,
1284 imap);
Dave Chinnera06c2772015-04-16 22:00:00 +10001285 } else if (type == XFS_IO_UNWRITTEN ||
1286 offset + size > i_size_read(inode)) {
Dave Chinnerd5cc2e32015-04-16 21:59:07 +10001287 ioend = xfs_alloc_ioend(inode, type);
1288 ioend->io_offset = offset;
1289 ioend->io_size = size;
Dave Chinnera06c2772015-04-16 22:00:00 +10001290
Dave Chinnerd5cc2e32015-04-16 21:59:07 +10001291 bh_result->b_private = ioend;
Dave Chinnera06c2772015-04-16 22:00:00 +10001292 set_buffer_defer_completion(bh_result);
Dave Chinnerd5cc2e32015-04-16 21:59:07 +10001293
1294 trace_xfs_gbmap_direct_new(XFS_I(inode), offset, size, type,
1295 imap);
Dave Chinnera06c2772015-04-16 22:00:00 +10001296 } else {
1297 trace_xfs_gbmap_direct_none(XFS_I(inode), offset, size, type,
1298 imap);
Dave Chinnera7193702015-04-16 21:57:48 +10001299 }
1300}
1301
Dave Chinner1fdca9c2015-04-16 21:58:21 +10001302/*
1303 * If this is O_DIRECT or the mpage code calling tell them how large the mapping
1304 * is, so that we can avoid repeated get_blocks calls.
1305 *
1306 * If the mapping spans EOF, then we have to break the mapping up as the mapping
1307 * for blocks beyond EOF must be marked new so that sub block regions can be
1308 * correctly zeroed. We can't do this for mappings within EOF unless the mapping
1309 * was just allocated or is unwritten, otherwise the callers would overwrite
1310 * existing data with zeros. Hence we have to split the mapping into a range up
1311 * to and including EOF, and a second mapping for beyond EOF.
1312 */
1313static void
1314xfs_map_trim_size(
1315 struct inode *inode,
1316 sector_t iblock,
1317 struct buffer_head *bh_result,
1318 struct xfs_bmbt_irec *imap,
1319 xfs_off_t offset,
1320 ssize_t size)
1321{
1322 xfs_off_t mapping_size;
1323
1324 mapping_size = imap->br_startoff + imap->br_blockcount - iblock;
1325 mapping_size <<= inode->i_blkbits;
1326
1327 ASSERT(mapping_size > 0);
1328 if (mapping_size > size)
1329 mapping_size = size;
1330 if (offset < i_size_read(inode) &&
1331 offset + mapping_size >= i_size_read(inode)) {
1332 /* limit mapping to block that spans EOF */
1333 mapping_size = roundup_64(i_size_read(inode) - offset,
1334 1 << inode->i_blkbits);
1335 }
1336 if (mapping_size > LONG_MAX)
1337 mapping_size = LONG_MAX;
1338
1339 bh_result->b_size = mapping_size;
1340}
1341
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342STATIC int
Nathan Scottc2536662006-03-29 10:44:40 +10001343__xfs_get_blocks(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344 struct inode *inode,
1345 sector_t iblock,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346 struct buffer_head *bh_result,
1347 int create,
Dave Chinner6b698ed2015-06-04 09:18:53 +10001348 bool direct)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349{
Christoph Hellwiga206c812010-12-10 08:42:20 +00001350 struct xfs_inode *ip = XFS_I(inode);
1351 struct xfs_mount *mp = ip->i_mount;
1352 xfs_fileoff_t offset_fsb, end_fsb;
1353 int error = 0;
1354 int lockmode = 0;
Christoph Hellwig207d0412010-04-28 12:28:56 +00001355 struct xfs_bmbt_irec imap;
Christoph Hellwiga206c812010-12-10 08:42:20 +00001356 int nimaps = 1;
Nathan Scottfdc7ed72005-11-02 15:13:13 +11001357 xfs_off_t offset;
1358 ssize_t size;
Christoph Hellwig207d0412010-04-28 12:28:56 +00001359 int new = 0;
Christoph Hellwiga206c812010-12-10 08:42:20 +00001360
1361 if (XFS_FORCED_SHUTDOWN(mp))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10001362 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363
Nathan Scottfdc7ed72005-11-02 15:13:13 +11001364 offset = (xfs_off_t)iblock << inode->i_blkbits;
Nathan Scottc2536662006-03-29 10:44:40 +10001365 ASSERT(bh_result->b_size >= (1 << inode->i_blkbits));
1366 size = bh_result->b_size;
Lachlan McIlroy364f3582008-09-17 16:50:14 +10001367
1368 if (!create && direct && offset >= i_size_read(inode))
1369 return 0;
1370
Dave Chinner507630b2012-03-27 10:34:50 -04001371 /*
1372 * Direct I/O is usually done on preallocated files, so try getting
1373 * a block mapping without an exclusive lock first. For buffered
1374 * writes we already have the exclusive iolock anyway, so avoiding
1375 * a lock roundtrip here by taking the ilock exclusive from the
1376 * beginning is a useful micro optimization.
1377 */
1378 if (create && !direct) {
Christoph Hellwiga206c812010-12-10 08:42:20 +00001379 lockmode = XFS_ILOCK_EXCL;
1380 xfs_ilock(ip, lockmode);
1381 } else {
Christoph Hellwig309ecac2013-12-06 12:30:09 -08001382 lockmode = xfs_ilock_data_map_shared(ip);
Christoph Hellwiga206c812010-12-10 08:42:20 +00001383 }
Christoph Hellwigf2bde9b2010-06-24 11:44:35 +10001384
Dave Chinnerd2c28192012-06-08 15:44:53 +10001385 ASSERT(offset <= mp->m_super->s_maxbytes);
1386 if (offset + size > mp->m_super->s_maxbytes)
1387 size = mp->m_super->s_maxbytes - offset;
Christoph Hellwiga206c812010-12-10 08:42:20 +00001388 end_fsb = XFS_B_TO_FSB(mp, (xfs_ufsize_t)offset + size);
1389 offset_fsb = XFS_B_TO_FSBT(mp, offset);
1390
Dave Chinner5c8ed202011-09-18 20:40:45 +00001391 error = xfs_bmapi_read(ip, offset_fsb, end_fsb - offset_fsb,
1392 &imap, &nimaps, XFS_BMAPI_ENTIRE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393 if (error)
Christoph Hellwiga206c812010-12-10 08:42:20 +00001394 goto out_unlock;
1395
1396 if (create &&
1397 (!nimaps ||
1398 (imap.br_startblock == HOLESTARTBLOCK ||
1399 imap.br_startblock == DELAYSTARTBLOCK))) {
Dave Chinneraff3a9e2012-04-23 15:58:44 +10001400 if (direct || xfs_get_extsz_hint(ip)) {
Dave Chinner507630b2012-03-27 10:34:50 -04001401 /*
1402 * Drop the ilock in preparation for starting the block
1403 * allocation transaction. It will be retaken
1404 * exclusively inside xfs_iomap_write_direct for the
1405 * actual allocation.
1406 */
1407 xfs_iunlock(ip, lockmode);
Christoph Hellwiga206c812010-12-10 08:42:20 +00001408 error = xfs_iomap_write_direct(ip, offset, size,
1409 &imap, nimaps);
Dave Chinner507630b2012-03-27 10:34:50 -04001410 if (error)
Dave Chinner24513372014-06-25 14:58:08 +10001411 return error;
Dave Chinnerd3bc8152012-04-27 19:45:21 +10001412 new = 1;
Dave Chinner6b698ed2015-06-04 09:18:53 +10001413
Christoph Hellwiga206c812010-12-10 08:42:20 +00001414 } else {
Dave Chinner507630b2012-03-27 10:34:50 -04001415 /*
1416 * Delalloc reservations do not require a transaction,
Dave Chinnerd3bc8152012-04-27 19:45:21 +10001417 * we can go on without dropping the lock here. If we
1418 * are allocating a new delalloc block, make sure that
1419 * we set the new flag so that we mark the buffer new so
1420 * that we know that it is newly allocated if the write
1421 * fails.
Dave Chinner507630b2012-03-27 10:34:50 -04001422 */
Dave Chinnerd3bc8152012-04-27 19:45:21 +10001423 if (nimaps && imap.br_startblock == HOLESTARTBLOCK)
1424 new = 1;
Christoph Hellwiga206c812010-12-10 08:42:20 +00001425 error = xfs_iomap_write_delay(ip, offset, size, &imap);
Dave Chinner507630b2012-03-27 10:34:50 -04001426 if (error)
1427 goto out_unlock;
1428
1429 xfs_iunlock(ip, lockmode);
Christoph Hellwiga206c812010-12-10 08:42:20 +00001430 }
Dave Chinnerd5cc2e32015-04-16 21:59:07 +10001431 trace_xfs_get_blocks_alloc(ip, offset, size,
1432 ISUNWRITTEN(&imap) ? XFS_IO_UNWRITTEN
1433 : XFS_IO_DELALLOC, &imap);
Christoph Hellwiga206c812010-12-10 08:42:20 +00001434 } else if (nimaps) {
Dave Chinnerd5cc2e32015-04-16 21:59:07 +10001435 trace_xfs_get_blocks_found(ip, offset, size,
1436 ISUNWRITTEN(&imap) ? XFS_IO_UNWRITTEN
1437 : XFS_IO_OVERWRITE, &imap);
Dave Chinner507630b2012-03-27 10:34:50 -04001438 xfs_iunlock(ip, lockmode);
Christoph Hellwiga206c812010-12-10 08:42:20 +00001439 } else {
1440 trace_xfs_get_blocks_notfound(ip, offset, size);
1441 goto out_unlock;
1442 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443
Dave Chinner1fdca9c2015-04-16 21:58:21 +10001444 /* trim mapping down to size requested */
1445 if (direct || size > (1 << inode->i_blkbits))
1446 xfs_map_trim_size(inode, iblock, bh_result,
1447 &imap, offset, size);
1448
Dave Chinnera7193702015-04-16 21:57:48 +10001449 /*
1450 * For unwritten extents do not report a disk address in the buffered
1451 * read case (treat as if we're reading into a hole).
1452 */
Christoph Hellwig207d0412010-04-28 12:28:56 +00001453 if (imap.br_startblock != HOLESTARTBLOCK &&
Dave Chinnera7193702015-04-16 21:57:48 +10001454 imap.br_startblock != DELAYSTARTBLOCK &&
1455 (create || !ISUNWRITTEN(&imap))) {
1456 xfs_map_buffer(inode, bh_result, &imap, offset);
1457 if (ISUNWRITTEN(&imap))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458 set_buffer_unwritten(bh_result);
Dave Chinnera7193702015-04-16 21:57:48 +10001459 /* direct IO needs special help */
1460 if (create && direct)
1461 xfs_map_direct(inode, bh_result, &imap, offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462 }
1463
Nathan Scottc2536662006-03-29 10:44:40 +10001464 /*
1465 * If this is a realtime file, data may be on a different device.
1466 * to that pointed to from the buffer_head b_bdev currently.
1467 */
Christoph Hellwig046f1682010-04-28 12:28:52 +00001468 bh_result->b_bdev = xfs_find_bdev_for_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469
Nathan Scottc2536662006-03-29 10:44:40 +10001470 /*
David Chinner549054a2007-02-10 18:36:35 +11001471 * If we previously allocated a block out beyond eof and we are now
1472 * coming back to use it then we will need to flag it as new even if it
1473 * has a disk address.
1474 *
1475 * With sub-block writes into unwritten extents we also need to mark
1476 * the buffer as new so that the unwritten parts of the buffer gets
1477 * correctly zeroed.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478 */
1479 if (create &&
1480 ((!buffer_mapped(bh_result) && !buffer_uptodate(bh_result)) ||
David Chinner549054a2007-02-10 18:36:35 +11001481 (offset >= i_size_read(inode)) ||
Christoph Hellwig207d0412010-04-28 12:28:56 +00001482 (new || ISUNWRITTEN(&imap))))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483 set_buffer_new(bh_result);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484
Christoph Hellwig207d0412010-04-28 12:28:56 +00001485 if (imap.br_startblock == DELAYSTARTBLOCK) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486 BUG_ON(direct);
1487 if (create) {
1488 set_buffer_uptodate(bh_result);
1489 set_buffer_mapped(bh_result);
1490 set_buffer_delay(bh_result);
1491 }
1492 }
1493
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494 return 0;
Christoph Hellwiga206c812010-12-10 08:42:20 +00001495
1496out_unlock:
1497 xfs_iunlock(ip, lockmode);
Dave Chinner24513372014-06-25 14:58:08 +10001498 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499}
1500
1501int
Nathan Scottc2536662006-03-29 10:44:40 +10001502xfs_get_blocks(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503 struct inode *inode,
1504 sector_t iblock,
1505 struct buffer_head *bh_result,
1506 int create)
1507{
Dave Chinner6b698ed2015-06-04 09:18:53 +10001508 return __xfs_get_blocks(inode, iblock, bh_result, create, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509}
1510
Dave Chinner6b698ed2015-06-04 09:18:53 +10001511int
Nathan Scotte4c573b2006-03-14 13:54:26 +11001512xfs_get_blocks_direct(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513 struct inode *inode,
1514 sector_t iblock,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515 struct buffer_head *bh_result,
1516 int create)
1517{
Dave Chinner6b698ed2015-06-04 09:18:53 +10001518 return __xfs_get_blocks(inode, iblock, bh_result, create, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519}
1520
Dave Chinner6b698ed2015-06-04 09:18:53 +10001521static void
1522__xfs_end_io_direct_write(
1523 struct inode *inode,
1524 struct xfs_ioend *ioend,
Christoph Hellwig209fb872010-07-18 21:17:11 +00001525 loff_t offset,
Dave Chinner6b698ed2015-06-04 09:18:53 +10001526 ssize_t size)
Christoph Hellwigf0973862005-09-05 08:22:52 +10001527{
Dave Chinner6b698ed2015-06-04 09:18:53 +10001528 struct xfs_mount *mp = XFS_I(inode)->i_mount;
Christoph Hellwig2ba66232015-02-02 10:02:09 +11001529
Dave Chinner6b698ed2015-06-04 09:18:53 +10001530 if (XFS_FORCED_SHUTDOWN(mp) || ioend->io_error)
Dave Chinner6dfa1b62015-04-16 21:59:34 +10001531 goto out_end_io;
Christoph Hellwigf0973862005-09-05 08:22:52 +10001532
1533 /*
Dave Chinnerd5cc2e32015-04-16 21:59:07 +10001534 * dio completion end_io functions are only called on writes if more
1535 * than 0 bytes was written.
Christoph Hellwig2813d682011-12-18 20:00:12 +00001536 */
Dave Chinnerd5cc2e32015-04-16 21:59:07 +10001537 ASSERT(size > 0);
1538
1539 /*
1540 * The ioend only maps whole blocks, while the IO may be sector aligned.
Dave Chinnera06c2772015-04-16 22:00:00 +10001541 * Hence the ioend offset/size may not match the IO offset/size exactly.
1542 * Because we don't map overwrites within EOF into the ioend, the offset
1543 * may not match, but only if the endio spans EOF. Either way, write
1544 * the IO sizes into the ioend so that completion processing does the
1545 * right thing.
Dave Chinnerd5cc2e32015-04-16 21:59:07 +10001546 */
Dave Chinnerd5cc2e32015-04-16 21:59:07 +10001547 ASSERT(offset + size <= ioend->io_offset + ioend->io_size);
1548 ioend->io_size = size;
1549 ioend->io_offset = offset;
Christoph Hellwigf0973862005-09-05 08:22:52 +10001550
1551 /*
Dave Chinner6dfa1b62015-04-16 21:59:34 +10001552 * The ioend tells us whether we are doing unwritten extent conversion
1553 * or an append transaction that updates the on-disk file size. These
1554 * cases are the only cases where we should *potentially* be needing
Dave Chinnera06c2772015-04-16 22:00:00 +10001555 * to update the VFS inode size.
Dave Chinner6dfa1b62015-04-16 21:59:34 +10001556 *
1557 * We need to update the in-core inode size here so that we don't end up
Dave Chinnera06c2772015-04-16 22:00:00 +10001558 * with the on-disk inode size being outside the in-core inode size. We
1559 * have no other method of updating EOF for AIO, so always do it here
1560 * if necessary.
Dave Chinnerb9d59842015-04-16 22:03:07 +10001561 *
1562 * We need to lock the test/set EOF update as we can be racing with
1563 * other IO completions here to update the EOF. Failing to serialise
1564 * here can result in EOF moving backwards and Bad Things Happen when
1565 * that occurs.
Christoph Hellwig2813d682011-12-18 20:00:12 +00001566 */
Dave Chinner6b698ed2015-06-04 09:18:53 +10001567 spin_lock(&XFS_I(inode)->i_flags_lock);
Christoph Hellwig2ba66232015-02-02 10:02:09 +11001568 if (offset + size > i_size_read(inode))
1569 i_size_write(inode, offset + size);
Dave Chinner6b698ed2015-06-04 09:18:53 +10001570 spin_unlock(&XFS_I(inode)->i_flags_lock);
Christoph Hellwig2813d682011-12-18 20:00:12 +00001571
1572 /*
Dave Chinner6dfa1b62015-04-16 21:59:34 +10001573 * If we are doing an append IO that needs to update the EOF on disk,
1574 * do the transaction reserve now so we can use common end io
1575 * processing. Stashing the error (if there is one) in the ioend will
1576 * result in the ioend processing passing on the error if it is
1577 * possible as we can't return it from here.
Christoph Hellwigf0973862005-09-05 08:22:52 +10001578 */
Dave Chinnera06c2772015-04-16 22:00:00 +10001579 if (ioend->io_type == XFS_IO_OVERWRITE)
Dave Chinner6dfa1b62015-04-16 21:59:34 +10001580 ioend->io_error = xfs_setfilesize_trans_alloc(ioend);
Christoph Hellwig40e2e972010-07-18 21:17:09 +00001581
Dave Chinner6dfa1b62015-04-16 21:59:34 +10001582out_end_io:
1583 xfs_end_io(&ioend->io_work);
1584 return;
Christoph Hellwigf0973862005-09-05 08:22:52 +10001585}
1586
Dave Chinner6b698ed2015-06-04 09:18:53 +10001587/*
1588 * Complete a direct I/O write request.
1589 *
1590 * The ioend structure is passed from __xfs_get_blocks() to tell us what to do.
1591 * If no ioend exists (i.e. @private == NULL) then the write IO is an overwrite
1592 * wholly within the EOF and so there is nothing for us to do. Note that in this
1593 * case the completion can be called in interrupt context, whereas if we have an
1594 * ioend we will always be called in task context (i.e. from a workqueue).
1595 */
1596STATIC void
1597xfs_end_io_direct_write(
1598 struct kiocb *iocb,
1599 loff_t offset,
1600 ssize_t size,
1601 void *private)
1602{
1603 struct inode *inode = file_inode(iocb->ki_filp);
1604 struct xfs_ioend *ioend = private;
1605
1606 trace_xfs_gbmap_direct_endio(XFS_I(inode), offset, size,
1607 ioend ? ioend->io_type : 0, NULL);
1608
1609 if (!ioend) {
1610 ASSERT(offset + size <= i_size_read(inode));
1611 return;
1612 }
1613
1614 __xfs_end_io_direct_write(inode, ioend, offset, size);
1615}
1616
1617/*
1618 * For DAX we need a mapping buffer callback for unwritten extent conversion
1619 * when page faults allocate blocks and then zero them. Note that in this
1620 * case the mapping indicated by the ioend may extend beyond EOF. We most
1621 * definitely do not want to extend EOF here, so we trim back the ioend size to
1622 * EOF.
1623 */
1624#ifdef CONFIG_FS_DAX
1625void
1626xfs_end_io_dax_write(
1627 struct buffer_head *bh,
1628 int uptodate)
1629{
1630 struct xfs_ioend *ioend = bh->b_private;
1631 struct inode *inode = ioend->io_inode;
1632 ssize_t size = ioend->io_size;
1633
1634 ASSERT(IS_DAX(ioend->io_inode));
1635
1636 /* if there was an error zeroing, then don't convert it */
1637 if (!uptodate)
1638 ioend->io_error = -EIO;
1639
1640 /*
1641 * Trim update to EOF, so we don't extend EOF during unwritten extent
1642 * conversion of partial EOF blocks.
1643 */
1644 spin_lock(&XFS_I(inode)->i_flags_lock);
1645 if (ioend->io_offset + size > i_size_read(inode))
1646 size = i_size_read(inode) - ioend->io_offset;
1647 spin_unlock(&XFS_I(inode)->i_flags_lock);
1648
1649 __xfs_end_io_direct_write(inode, ioend, ioend->io_offset, size);
1650
1651}
1652#else
1653void xfs_end_io_dax_write(struct buffer_head *bh, int uptodate) { }
1654#endif
1655
Dave Chinner6e1ba0b2015-06-04 09:19:15 +10001656static inline ssize_t
1657xfs_vm_do_dio(
1658 struct inode *inode,
1659 struct kiocb *iocb,
1660 struct iov_iter *iter,
1661 loff_t offset,
1662 void (*endio)(struct kiocb *iocb,
1663 loff_t offset,
1664 ssize_t size,
1665 void *private),
1666 int flags)
1667{
1668 struct block_device *bdev;
1669
1670 if (IS_DAX(inode))
1671 return dax_do_io(iocb, inode, iter, offset,
1672 xfs_get_blocks_direct, endio, 0);
1673
1674 bdev = xfs_find_bdev_for_inode(inode);
1675 return __blockdev_direct_IO(iocb, inode, bdev, iter, offset,
1676 xfs_get_blocks_direct, endio, NULL, flags);
1677}
1678
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679STATIC ssize_t
Nathan Scotte4c573b2006-03-14 13:54:26 +11001680xfs_vm_direct_IO(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681 struct kiocb *iocb,
Al Virod8d3d942014-03-04 21:27:34 -05001682 struct iov_iter *iter,
1683 loff_t offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684{
Christoph Hellwig209fb872010-07-18 21:17:11 +00001685 struct inode *inode = iocb->ki_filp->f_mapping->host;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001686
Dave Chinner6e1ba0b2015-06-04 09:19:15 +10001687 if (iov_iter_rw(iter) == WRITE)
1688 return xfs_vm_do_dio(inode, iocb, iter, offset,
1689 xfs_end_io_direct_write, DIO_ASYNC_EXTEND);
1690 return xfs_vm_do_dio(inode, iocb, iter, offset, NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691}
1692
Dave Chinnerd3bc8152012-04-27 19:45:21 +10001693/*
1694 * Punch out the delalloc blocks we have already allocated.
1695 *
1696 * Don't bother with xfs_setattr given that nothing can have made it to disk yet
1697 * as the page is still locked at this point.
1698 */
Christoph Hellwigfa9b2272010-06-14 05:17:31 -04001699STATIC void
Dave Chinnerd3bc8152012-04-27 19:45:21 +10001700xfs_vm_kill_delalloc_range(
1701 struct inode *inode,
1702 loff_t start,
1703 loff_t end)
Christoph Hellwigfa9b2272010-06-14 05:17:31 -04001704{
Dave Chinnerd3bc8152012-04-27 19:45:21 +10001705 struct xfs_inode *ip = XFS_I(inode);
1706 xfs_fileoff_t start_fsb;
1707 xfs_fileoff_t end_fsb;
1708 int error;
Christoph Hellwigfa9b2272010-06-14 05:17:31 -04001709
Dave Chinnerd3bc8152012-04-27 19:45:21 +10001710 start_fsb = XFS_B_TO_FSB(ip->i_mount, start);
1711 end_fsb = XFS_B_TO_FSB(ip->i_mount, end);
1712 if (end_fsb <= start_fsb)
1713 return;
Dave Chinnerc726de42010-11-30 15:14:39 +11001714
Dave Chinnerd3bc8152012-04-27 19:45:21 +10001715 xfs_ilock(ip, XFS_ILOCK_EXCL);
1716 error = xfs_bmap_punch_delalloc_range(ip, start_fsb,
1717 end_fsb - start_fsb);
1718 if (error) {
1719 /* something screwed, just bail */
1720 if (!XFS_FORCED_SHUTDOWN(ip->i_mount)) {
1721 xfs_alert(ip->i_mount,
1722 "xfs_vm_write_failed: unable to clean up ino %lld",
1723 ip->i_ino);
Dave Chinnerc726de42010-11-30 15:14:39 +11001724 }
Christoph Hellwigfa9b2272010-06-14 05:17:31 -04001725 }
Dave Chinnerd3bc8152012-04-27 19:45:21 +10001726 xfs_iunlock(ip, XFS_ILOCK_EXCL);
Christoph Hellwigfa9b2272010-06-14 05:17:31 -04001727}
1728
Dave Chinnerd3bc8152012-04-27 19:45:21 +10001729STATIC void
1730xfs_vm_write_failed(
1731 struct inode *inode,
1732 struct page *page,
1733 loff_t pos,
1734 unsigned len)
1735{
Jie Liu58e59852013-07-16 13:11:16 +08001736 loff_t block_offset;
Dave Chinnerd3bc8152012-04-27 19:45:21 +10001737 loff_t block_start;
1738 loff_t block_end;
1739 loff_t from = pos & (PAGE_CACHE_SIZE - 1);
1740 loff_t to = from + len;
1741 struct buffer_head *bh, *head;
1742
Jie Liu58e59852013-07-16 13:11:16 +08001743 /*
1744 * The request pos offset might be 32 or 64 bit, this is all fine
1745 * on 64-bit platform. However, for 64-bit pos request on 32-bit
1746 * platform, the high 32-bit will be masked off if we evaluate the
1747 * block_offset via (pos & PAGE_MASK) because the PAGE_MASK is
1748 * 0xfffff000 as an unsigned long, hence the result is incorrect
1749 * which could cause the following ASSERT failed in most cases.
1750 * In order to avoid this, we can evaluate the block_offset of the
1751 * start of the page by using shifts rather than masks the mismatch
1752 * problem.
1753 */
1754 block_offset = (pos >> PAGE_CACHE_SHIFT) << PAGE_CACHE_SHIFT;
1755
Dave Chinnerd3bc8152012-04-27 19:45:21 +10001756 ASSERT(block_offset + from == pos);
1757
1758 head = page_buffers(page);
1759 block_start = 0;
1760 for (bh = head; bh != head || !block_start;
1761 bh = bh->b_this_page, block_start = block_end,
1762 block_offset += bh->b_size) {
1763 block_end = block_start + bh->b_size;
1764
1765 /* skip buffers before the write */
1766 if (block_end <= from)
1767 continue;
1768
1769 /* if the buffer is after the write, we're done */
1770 if (block_start >= to)
1771 break;
1772
1773 if (!buffer_delay(bh))
1774 continue;
1775
1776 if (!buffer_new(bh) && block_offset < i_size_read(inode))
1777 continue;
1778
1779 xfs_vm_kill_delalloc_range(inode, block_offset,
1780 block_offset + bh->b_size);
Dave Chinner4ab9ed52014-04-14 18:11:58 +10001781
1782 /*
1783 * This buffer does not contain data anymore. make sure anyone
1784 * who finds it knows that for certain.
1785 */
1786 clear_buffer_delay(bh);
1787 clear_buffer_uptodate(bh);
1788 clear_buffer_mapped(bh);
1789 clear_buffer_new(bh);
1790 clear_buffer_dirty(bh);
Dave Chinnerd3bc8152012-04-27 19:45:21 +10001791 }
1792
1793}
1794
1795/*
1796 * This used to call block_write_begin(), but it unlocks and releases the page
1797 * on error, and we need that page to be able to punch stale delalloc blocks out
1798 * on failure. hence we copy-n-waste it here and call xfs_vm_write_failed() at
1799 * the appropriate point.
1800 */
Nathan Scottf51623b2006-03-14 13:26:27 +11001801STATIC int
Nick Piggind79689c2007-10-16 01:25:06 -07001802xfs_vm_write_begin(
Nathan Scottf51623b2006-03-14 13:26:27 +11001803 struct file *file,
Nick Piggind79689c2007-10-16 01:25:06 -07001804 struct address_space *mapping,
1805 loff_t pos,
1806 unsigned len,
1807 unsigned flags,
1808 struct page **pagep,
1809 void **fsdata)
Nathan Scottf51623b2006-03-14 13:26:27 +11001810{
Dave Chinnerd3bc8152012-04-27 19:45:21 +10001811 pgoff_t index = pos >> PAGE_CACHE_SHIFT;
1812 struct page *page;
1813 int status;
Christoph Hellwig155130a2010-06-04 11:29:58 +02001814
Dave Chinnerd3bc8152012-04-27 19:45:21 +10001815 ASSERT(len <= PAGE_CACHE_SIZE);
1816
Dave Chinnerad22c7a2013-10-29 22:11:57 +11001817 page = grab_cache_page_write_begin(mapping, index, flags);
Dave Chinnerd3bc8152012-04-27 19:45:21 +10001818 if (!page)
1819 return -ENOMEM;
1820
1821 status = __block_write_begin(page, pos, len, xfs_get_blocks);
1822 if (unlikely(status)) {
1823 struct inode *inode = mapping->host;
Dave Chinner72ab70a2014-04-14 18:13:29 +10001824 size_t isize = i_size_read(inode);
Dave Chinnerd3bc8152012-04-27 19:45:21 +10001825
1826 xfs_vm_write_failed(inode, page, pos, len);
1827 unlock_page(page);
1828
Dave Chinner72ab70a2014-04-14 18:13:29 +10001829 /*
1830 * If the write is beyond EOF, we only want to kill blocks
1831 * allocated in this write, not blocks that were previously
1832 * written successfully.
1833 */
1834 if (pos + len > isize) {
1835 ssize_t start = max_t(ssize_t, pos, isize);
1836
1837 truncate_pagecache_range(inode, start, pos + len);
1838 }
Dave Chinnerd3bc8152012-04-27 19:45:21 +10001839
1840 page_cache_release(page);
1841 page = NULL;
1842 }
1843
1844 *pagep = page;
1845 return status;
Christoph Hellwigfa9b2272010-06-14 05:17:31 -04001846}
Christoph Hellwig155130a2010-06-04 11:29:58 +02001847
Dave Chinnerd3bc8152012-04-27 19:45:21 +10001848/*
Dave Chinneraad3f372014-04-14 18:14:11 +10001849 * On failure, we only need to kill delalloc blocks beyond EOF in the range of
1850 * this specific write because they will never be written. Previous writes
1851 * beyond EOF where block allocation succeeded do not need to be trashed, so
1852 * only new blocks from this write should be trashed. For blocks within
1853 * EOF, generic_write_end() zeros them so they are safe to leave alone and be
1854 * written with all the other valid data.
Dave Chinnerd3bc8152012-04-27 19:45:21 +10001855 */
Christoph Hellwigfa9b2272010-06-14 05:17:31 -04001856STATIC int
1857xfs_vm_write_end(
1858 struct file *file,
1859 struct address_space *mapping,
1860 loff_t pos,
1861 unsigned len,
1862 unsigned copied,
1863 struct page *page,
1864 void *fsdata)
1865{
1866 int ret;
1867
Dave Chinnerd3bc8152012-04-27 19:45:21 +10001868 ASSERT(len <= PAGE_CACHE_SIZE);
1869
Christoph Hellwigfa9b2272010-06-14 05:17:31 -04001870 ret = generic_write_end(file, mapping, pos, len, copied, page, fsdata);
Dave Chinnerd3bc8152012-04-27 19:45:21 +10001871 if (unlikely(ret < len)) {
1872 struct inode *inode = mapping->host;
1873 size_t isize = i_size_read(inode);
1874 loff_t to = pos + len;
1875
1876 if (to > isize) {
Dave Chinneraad3f372014-04-14 18:14:11 +10001877 /* only kill blocks in this write beyond EOF */
1878 if (pos > isize)
1879 isize = pos;
Dave Chinnerd3bc8152012-04-27 19:45:21 +10001880 xfs_vm_kill_delalloc_range(inode, isize, to);
Dave Chinneraad3f372014-04-14 18:14:11 +10001881 truncate_pagecache_range(inode, isize, to);
Dave Chinnerd3bc8152012-04-27 19:45:21 +10001882 }
1883 }
Christoph Hellwig155130a2010-06-04 11:29:58 +02001884 return ret;
Nathan Scottf51623b2006-03-14 13:26:27 +11001885}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001886
1887STATIC sector_t
Nathan Scotte4c573b2006-03-14 13:54:26 +11001888xfs_vm_bmap(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001889 struct address_space *mapping,
1890 sector_t block)
1891{
1892 struct inode *inode = (struct inode *)mapping->host;
Christoph Hellwig739bfb22007-08-29 10:58:01 +10001893 struct xfs_inode *ip = XFS_I(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001894
Christoph Hellwigcca28fb2010-06-24 11:57:09 +10001895 trace_xfs_vm_bmap(XFS_I(inode));
Christoph Hellwig126468b2008-03-06 13:44:57 +11001896 xfs_ilock(ip, XFS_IOLOCK_SHARED);
Dave Chinner4bc1ea62012-11-12 22:53:56 +11001897 filemap_write_and_wait(mapping);
Christoph Hellwig126468b2008-03-06 13:44:57 +11001898 xfs_iunlock(ip, XFS_IOLOCK_SHARED);
Nathan Scottc2536662006-03-29 10:44:40 +10001899 return generic_block_bmap(mapping, block, xfs_get_blocks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900}
1901
1902STATIC int
Nathan Scotte4c573b2006-03-14 13:54:26 +11001903xfs_vm_readpage(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001904 struct file *unused,
1905 struct page *page)
1906{
Nathan Scottc2536662006-03-29 10:44:40 +10001907 return mpage_readpage(page, xfs_get_blocks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908}
1909
1910STATIC int
Nathan Scotte4c573b2006-03-14 13:54:26 +11001911xfs_vm_readpages(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001912 struct file *unused,
1913 struct address_space *mapping,
1914 struct list_head *pages,
1915 unsigned nr_pages)
1916{
Nathan Scottc2536662006-03-29 10:44:40 +10001917 return mpage_readpages(mapping, pages, nr_pages, xfs_get_blocks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001918}
1919
Dave Chinner22e757a2014-09-02 12:12:51 +10001920/*
1921 * This is basically a copy of __set_page_dirty_buffers() with one
1922 * small tweak: buffers beyond EOF do not get marked dirty. If we mark them
1923 * dirty, we'll never be able to clean them because we don't write buffers
1924 * beyond EOF, and that means we can't invalidate pages that span EOF
1925 * that have been marked dirty. Further, the dirty state can leak into
1926 * the file interior if the file is extended, resulting in all sorts of
1927 * bad things happening as the state does not match the underlying data.
1928 *
1929 * XXX: this really indicates that bufferheads in XFS need to die. Warts like
1930 * this only exist because of bufferheads and how the generic code manages them.
1931 */
1932STATIC int
1933xfs_vm_set_page_dirty(
1934 struct page *page)
1935{
1936 struct address_space *mapping = page->mapping;
1937 struct inode *inode = mapping->host;
1938 loff_t end_offset;
1939 loff_t offset;
1940 int newly_dirty;
Greg Thelenc4843a72015-05-22 17:13:16 -04001941 struct mem_cgroup *memcg;
Dave Chinner22e757a2014-09-02 12:12:51 +10001942
1943 if (unlikely(!mapping))
1944 return !TestSetPageDirty(page);
1945
1946 end_offset = i_size_read(inode);
1947 offset = page_offset(page);
1948
1949 spin_lock(&mapping->private_lock);
1950 if (page_has_buffers(page)) {
1951 struct buffer_head *head = page_buffers(page);
1952 struct buffer_head *bh = head;
1953
1954 do {
1955 if (offset < end_offset)
1956 set_buffer_dirty(bh);
1957 bh = bh->b_this_page;
1958 offset += 1 << inode->i_blkbits;
1959 } while (bh != head);
1960 }
Greg Thelenc4843a72015-05-22 17:13:16 -04001961 /*
1962 * Use mem_group_begin_page_stat() to keep PageDirty synchronized with
1963 * per-memcg dirty page counters.
1964 */
1965 memcg = mem_cgroup_begin_page_stat(page);
Dave Chinner22e757a2014-09-02 12:12:51 +10001966 newly_dirty = !TestSetPageDirty(page);
1967 spin_unlock(&mapping->private_lock);
1968
1969 if (newly_dirty) {
1970 /* sigh - __set_page_dirty() is static, so copy it here, too */
1971 unsigned long flags;
1972
1973 spin_lock_irqsave(&mapping->tree_lock, flags);
1974 if (page->mapping) { /* Race with truncate? */
1975 WARN_ON_ONCE(!PageUptodate(page));
Greg Thelenc4843a72015-05-22 17:13:16 -04001976 account_page_dirtied(page, mapping, memcg);
Dave Chinner22e757a2014-09-02 12:12:51 +10001977 radix_tree_tag_set(&mapping->page_tree,
1978 page_index(page), PAGECACHE_TAG_DIRTY);
1979 }
1980 spin_unlock_irqrestore(&mapping->tree_lock, flags);
Dave Chinner22e757a2014-09-02 12:12:51 +10001981 }
Greg Thelenc4843a72015-05-22 17:13:16 -04001982 mem_cgroup_end_page_stat(memcg);
1983 if (newly_dirty)
1984 __mark_inode_dirty(mapping->host, I_DIRTY_PAGES);
Dave Chinner22e757a2014-09-02 12:12:51 +10001985 return newly_dirty;
1986}
1987
Christoph Hellwigf5e54d62006-06-28 04:26:44 -07001988const struct address_space_operations xfs_address_space_operations = {
Nathan Scotte4c573b2006-03-14 13:54:26 +11001989 .readpage = xfs_vm_readpage,
1990 .readpages = xfs_vm_readpages,
1991 .writepage = xfs_vm_writepage,
Nathan Scott7d4fb402006-06-09 15:27:16 +10001992 .writepages = xfs_vm_writepages,
Dave Chinner22e757a2014-09-02 12:12:51 +10001993 .set_page_dirty = xfs_vm_set_page_dirty,
Nathan Scott238f4c52006-03-17 17:26:25 +11001994 .releasepage = xfs_vm_releasepage,
1995 .invalidatepage = xfs_vm_invalidatepage,
Nick Piggind79689c2007-10-16 01:25:06 -07001996 .write_begin = xfs_vm_write_begin,
Christoph Hellwigfa9b2272010-06-14 05:17:31 -04001997 .write_end = xfs_vm_write_end,
Nathan Scotte4c573b2006-03-14 13:54:26 +11001998 .bmap = xfs_vm_bmap,
1999 .direct_IO = xfs_vm_direct_IO,
Christoph Lametere965f962006-02-01 03:05:41 -08002000 .migratepage = buffer_migrate_page,
Hisashi Hifumibddaafa2009-03-29 09:53:38 +02002001 .is_partially_uptodate = block_is_partially_uptodate,
Andi Kleenaa261f52009-09-16 11:50:16 +02002002 .error_remove_page = generic_error_remove_page,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003};