blob: 28ccca98839bd65f2208f7e086265ef7946bf06c [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Nathan Scott7b718762005-11-02 14:58:39 +11002 * Copyright (c) 2000-2005 Silicon Graphics, Inc.
3 * All Rights Reserved.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
Nathan Scott7b718762005-11-02 14:58:39 +11005 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License as
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 * published by the Free Software Foundation.
8 *
Nathan Scott7b718762005-11-02 14:58:39 +11009 * This program is distributed in the hope that it would be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 *
Nathan Scott7b718762005-11-02 14:58:39 +110014 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write the Free Software Foundation,
16 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Linus Torvalds1da177e2005-04-16 15:20:36 -070017 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include "xfs.h"
Nathan Scotta844f452005-11-02 14:38:42 +110019#include "xfs_bit.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include "xfs_log.h"
Nathan Scotta844f452005-11-02 14:38:42 +110021#include "xfs_inum.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include "xfs_sb.h"
Nathan Scotta844f452005-11-02 14:38:42 +110023#include "xfs_ag.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include "xfs_dir2.h"
25#include "xfs_trans.h"
26#include "xfs_dmapi.h"
27#include "xfs_mount.h"
28#include "xfs_bmap_btree.h"
29#include "xfs_alloc_btree.h"
30#include "xfs_ialloc_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include "xfs_dir2_sf.h"
Nathan Scotta844f452005-11-02 14:38:42 +110032#include "xfs_attr_sf.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include "xfs_dinode.h"
34#include "xfs_inode.h"
Nathan Scotta844f452005-11-02 14:38:42 +110035#include "xfs_alloc.h"
36#include "xfs_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#include "xfs_error.h"
38#include "xfs_rw.h"
39#include "xfs_iomap.h"
Christoph Hellwig739bfb22007-08-29 10:58:01 +100040#include "xfs_vnodeops.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#include <linux/mpage.h>
Christoph Hellwig10ce4442006-01-11 20:48:14 +110042#include <linux/pagevec.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#include <linux/writeback.h>
44
Nathan Scottf51623b2006-03-14 13:26:27 +110045STATIC void
46xfs_count_page_state(
47 struct page *page,
48 int *delalloc,
49 int *unmapped,
50 int *unwritten)
51{
52 struct buffer_head *bh, *head;
53
54 *delalloc = *unmapped = *unwritten = 0;
55
56 bh = head = page_buffers(page);
57 do {
58 if (buffer_uptodate(bh) && !buffer_mapped(bh))
59 (*unmapped) = 1;
Nathan Scottf51623b2006-03-14 13:26:27 +110060 else if (buffer_unwritten(bh))
61 (*unwritten) = 1;
62 else if (buffer_delay(bh))
63 (*delalloc) = 1;
64 } while ((bh = bh->b_this_page) != head);
65}
66
Linus Torvalds1da177e2005-04-16 15:20:36 -070067#if defined(XFS_RW_TRACE)
68void
69xfs_page_trace(
70 int tag,
71 struct inode *inode,
72 struct page *page,
Nathan Scotted9d88f2006-09-28 10:56:43 +100073 unsigned long pgoff)
Linus Torvalds1da177e2005-04-16 15:20:36 -070074{
75 xfs_inode_t *ip;
Nathan Scott67fcaa72006-06-09 17:00:52 +100076 bhv_vnode_t *vp = vn_from_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 loff_t isize = i_size_read(inode);
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +110078 loff_t offset = page_offset(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -070079 int delalloc = -1, unmapped = -1, unwritten = -1;
80
81 if (page_has_buffers(page))
82 xfs_count_page_state(page, &delalloc, &unmapped, &unwritten);
83
Christoph Hellwig75e17b32006-01-11 20:58:44 +110084 ip = xfs_vtoi(vp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070085 if (!ip->i_rwtrace)
86 return;
87
88 ktrace_enter(ip->i_rwtrace,
89 (void *)((unsigned long)tag),
90 (void *)ip,
91 (void *)inode,
92 (void *)page,
Nathan Scotted9d88f2006-09-28 10:56:43 +100093 (void *)pgoff,
Linus Torvalds1da177e2005-04-16 15:20:36 -070094 (void *)((unsigned long)((ip->i_d.di_size >> 32) & 0xffffffff)),
95 (void *)((unsigned long)(ip->i_d.di_size & 0xffffffff)),
96 (void *)((unsigned long)((isize >> 32) & 0xffffffff)),
97 (void *)((unsigned long)(isize & 0xffffffff)),
98 (void *)((unsigned long)((offset >> 32) & 0xffffffff)),
99 (void *)((unsigned long)(offset & 0xffffffff)),
100 (void *)((unsigned long)delalloc),
101 (void *)((unsigned long)unmapped),
102 (void *)((unsigned long)unwritten),
Yingping Luf1fdc842006-03-22 12:44:15 +1100103 (void *)((unsigned long)current_pid()),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 (void *)NULL);
105}
106#else
Nathan Scotted9d88f2006-09-28 10:56:43 +1000107#define xfs_page_trace(tag, inode, page, pgoff)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108#endif
109
Christoph Hellwig0829c362005-09-02 16:58:49 +1000110/*
111 * Schedule IO completion handling on a xfsdatad if this was
David Chinnere927af92007-06-05 16:24:36 +1000112 * the final hold on this ioend. If we are asked to wait,
113 * flush the workqueue.
Christoph Hellwig0829c362005-09-02 16:58:49 +1000114 */
115STATIC void
116xfs_finish_ioend(
David Chinnere927af92007-06-05 16:24:36 +1000117 xfs_ioend_t *ioend,
118 int wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119{
David Chinnere927af92007-06-05 16:24:36 +1000120 if (atomic_dec_and_test(&ioend->io_remaining)) {
Christoph Hellwig0829c362005-09-02 16:58:49 +1000121 queue_work(xfsdatad_workqueue, &ioend->io_work);
David Chinnere927af92007-06-05 16:24:36 +1000122 if (wait)
123 flush_workqueue(xfsdatad_workqueue);
124 }
Christoph Hellwig0829c362005-09-02 16:58:49 +1000125}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100127/*
128 * We're now finished for good with this ioend structure.
129 * Update the page state via the associated buffer_heads,
130 * release holds on the inode and bio, and finally free
131 * up memory. Do not use the ioend after this.
132 */
Christoph Hellwig0829c362005-09-02 16:58:49 +1000133STATIC void
134xfs_destroy_ioend(
135 xfs_ioend_t *ioend)
136{
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100137 struct buffer_head *bh, *next;
138
139 for (bh = ioend->io_buffer_head; bh; bh = next) {
140 next = bh->b_private;
Nathan Scott7d04a332006-06-09 14:58:38 +1000141 bh->b_end_io(bh, !ioend->io_error);
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100142 }
Nathan Scott7d04a332006-06-09 14:58:38 +1000143 if (unlikely(ioend->io_error))
144 vn_ioerror(ioend->io_vnode, ioend->io_error, __FILE__,__LINE__);
Christoph Hellwig0829c362005-09-02 16:58:49 +1000145 vn_iowake(ioend->io_vnode);
146 mempool_free(ioend, xfs_ioend_pool);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147}
148
149/*
Lachlan McIlroyba87ea62007-05-08 13:49:46 +1000150 * Update on-disk file size now that data has been written to disk.
151 * The current in-memory file size is i_size. If a write is beyond
152 * eof io_new_size will be the intended file size until i_size is
153 * updated. If this write does not extend all the way to the valid
154 * file size then restrict this update to the end of the write.
155 */
156STATIC void
157xfs_setfilesize(
158 xfs_ioend_t *ioend)
159{
160 xfs_inode_t *ip;
161 xfs_fsize_t isize;
162 xfs_fsize_t bsize;
163
164 ip = xfs_vtoi(ioend->io_vnode);
David Chinnerb2826132007-06-05 16:24:44 +1000165 if (!ip)
166 return;
Lachlan McIlroyba87ea62007-05-08 13:49:46 +1000167
168 ASSERT((ip->i_d.di_mode & S_IFMT) == S_IFREG);
169 ASSERT(ioend->io_type != IOMAP_READ);
170
171 if (unlikely(ioend->io_error))
172 return;
173
174 bsize = ioend->io_offset + ioend->io_size;
175
176 xfs_ilock(ip, XFS_ILOCK_EXCL);
177
178 isize = MAX(ip->i_size, ip->i_iocore.io_new_size);
179 isize = MIN(isize, bsize);
180
181 if (ip->i_d.di_size < isize) {
182 ip->i_d.di_size = isize;
183 ip->i_update_core = 1;
184 ip->i_update_size = 1;
Lachlan McIlroy776a75f2007-09-14 15:22:50 +1000185 mark_inode_dirty_sync(vn_to_inode(ioend->io_vnode));
Lachlan McIlroyba87ea62007-05-08 13:49:46 +1000186 }
187
188 xfs_iunlock(ip, XFS_ILOCK_EXCL);
189}
190
191/*
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100192 * Buffered IO write completion for delayed allocate extents.
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100193 */
194STATIC void
195xfs_end_bio_delalloc(
David Howellsc4028952006-11-22 14:57:56 +0000196 struct work_struct *work)
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100197{
David Howellsc4028952006-11-22 14:57:56 +0000198 xfs_ioend_t *ioend =
199 container_of(work, xfs_ioend_t, io_work);
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100200
Lachlan McIlroyba87ea62007-05-08 13:49:46 +1000201 xfs_setfilesize(ioend);
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100202 xfs_destroy_ioend(ioend);
203}
204
205/*
206 * Buffered IO write completion for regular, written extents.
207 */
208STATIC void
209xfs_end_bio_written(
David Howellsc4028952006-11-22 14:57:56 +0000210 struct work_struct *work)
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100211{
David Howellsc4028952006-11-22 14:57:56 +0000212 xfs_ioend_t *ioend =
213 container_of(work, xfs_ioend_t, io_work);
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100214
Lachlan McIlroyba87ea62007-05-08 13:49:46 +1000215 xfs_setfilesize(ioend);
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100216 xfs_destroy_ioend(ioend);
217}
218
219/*
220 * IO write completion for unwritten extents.
221 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 * Issue transactions to convert a buffer range from unwritten
Christoph Hellwigf0973862005-09-05 08:22:52 +1000223 * to written extents.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 */
225STATIC void
Christoph Hellwig0829c362005-09-02 16:58:49 +1000226xfs_end_bio_unwritten(
David Howellsc4028952006-11-22 14:57:56 +0000227 struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228{
David Howellsc4028952006-11-22 14:57:56 +0000229 xfs_ioend_t *ioend =
230 container_of(work, xfs_ioend_t, io_work);
Nathan Scott67fcaa72006-06-09 17:00:52 +1000231 bhv_vnode_t *vp = ioend->io_vnode;
Christoph Hellwig0829c362005-09-02 16:58:49 +1000232 xfs_off_t offset = ioend->io_offset;
233 size_t size = ioend->io_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234
Lachlan McIlroyba87ea62007-05-08 13:49:46 +1000235 if (likely(!ioend->io_error)) {
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000236 xfs_bmap(xfs_vtoi(vp), offset, size,
237 BMAPI_UNWRITTEN, NULL, NULL);
Lachlan McIlroyba87ea62007-05-08 13:49:46 +1000238 xfs_setfilesize(ioend);
239 }
240 xfs_destroy_ioend(ioend);
241}
242
243/*
244 * IO read completion for regular, written extents.
245 */
246STATIC void
247xfs_end_bio_read(
248 struct work_struct *work)
249{
250 xfs_ioend_t *ioend =
251 container_of(work, xfs_ioend_t, io_work);
252
Christoph Hellwig0829c362005-09-02 16:58:49 +1000253 xfs_destroy_ioend(ioend);
254}
255
256/*
257 * Allocate and initialise an IO completion structure.
258 * We need to track unwritten extent write completion here initially.
259 * We'll need to extend this for updating the ondisk inode size later
260 * (vs. incore size).
261 */
262STATIC xfs_ioend_t *
263xfs_alloc_ioend(
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100264 struct inode *inode,
265 unsigned int type)
Christoph Hellwig0829c362005-09-02 16:58:49 +1000266{
267 xfs_ioend_t *ioend;
268
269 ioend = mempool_alloc(xfs_ioend_pool, GFP_NOFS);
270
271 /*
272 * Set the count to 1 initially, which will prevent an I/O
273 * completion callback from happening before we have started
274 * all the I/O from calling the completion routine too early.
275 */
276 atomic_set(&ioend->io_remaining, 1);
Nathan Scott7d04a332006-06-09 14:58:38 +1000277 ioend->io_error = 0;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100278 ioend->io_list = NULL;
279 ioend->io_type = type;
Nathan Scottec86dc02006-03-17 17:25:36 +1100280 ioend->io_vnode = vn_from_inode(inode);
Christoph Hellwigc1a073b2005-09-05 08:23:35 +1000281 ioend->io_buffer_head = NULL;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100282 ioend->io_buffer_tail = NULL;
Christoph Hellwig0829c362005-09-02 16:58:49 +1000283 atomic_inc(&ioend->io_vnode->v_iocount);
284 ioend->io_offset = 0;
285 ioend->io_size = 0;
286
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100287 if (type == IOMAP_UNWRITTEN)
David Howellsc4028952006-11-22 14:57:56 +0000288 INIT_WORK(&ioend->io_work, xfs_end_bio_unwritten);
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100289 else if (type == IOMAP_DELAY)
David Howellsc4028952006-11-22 14:57:56 +0000290 INIT_WORK(&ioend->io_work, xfs_end_bio_delalloc);
Lachlan McIlroyba87ea62007-05-08 13:49:46 +1000291 else if (type == IOMAP_READ)
292 INIT_WORK(&ioend->io_work, xfs_end_bio_read);
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100293 else
David Howellsc4028952006-11-22 14:57:56 +0000294 INIT_WORK(&ioend->io_work, xfs_end_bio_written);
Christoph Hellwig0829c362005-09-02 16:58:49 +1000295
296 return ioend;
297}
298
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299STATIC int
300xfs_map_blocks(
301 struct inode *inode,
302 loff_t offset,
303 ssize_t count,
304 xfs_iomap_t *mapp,
305 int flags)
306{
Nathan Scott67fcaa72006-06-09 17:00:52 +1000307 bhv_vnode_t *vp = vn_from_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 int error, nmaps = 1;
309
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000310 error = xfs_bmap(xfs_vtoi(vp), offset, count,
311 flags, mapp, &nmaps);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 if (!error && (flags & (BMAPI_WRITE|BMAPI_ALLOCATE)))
313 VMODIFY(vp);
314 return -error;
315}
316
David Chinner7989cb82007-02-10 18:34:56 +1100317STATIC_INLINE int
Christoph Hellwig1defeac2006-01-11 20:48:33 +1100318xfs_iomap_valid(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 xfs_iomap_t *iomapp,
Christoph Hellwig1defeac2006-01-11 20:48:33 +1100320 loff_t offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321{
Christoph Hellwig1defeac2006-01-11 20:48:33 +1100322 return offset >= iomapp->iomap_offset &&
323 offset < iomapp->iomap_offset + iomapp->iomap_bsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324}
325
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100326/*
327 * BIO completion handler for buffered IO.
328 */
329STATIC int
330xfs_end_bio(
331 struct bio *bio,
332 unsigned int bytes_done,
333 int error)
334{
335 xfs_ioend_t *ioend = bio->bi_private;
336
337 if (bio->bi_size)
338 return 1;
339
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100340 ASSERT(atomic_read(&bio->bi_cnt) >= 1);
Nathan Scott7d04a332006-06-09 14:58:38 +1000341 ioend->io_error = test_bit(BIO_UPTODATE, &bio->bi_flags) ? 0 : error;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100342
343 /* Toss bio and pass work off to an xfsdatad thread */
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100344 bio->bi_private = NULL;
345 bio->bi_end_io = NULL;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100346 bio_put(bio);
Nathan Scott7d04a332006-06-09 14:58:38 +1000347
David Chinnere927af92007-06-05 16:24:36 +1000348 xfs_finish_ioend(ioend, 0);
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100349 return 0;
350}
351
352STATIC void
353xfs_submit_ioend_bio(
354 xfs_ioend_t *ioend,
355 struct bio *bio)
356{
357 atomic_inc(&ioend->io_remaining);
358
359 bio->bi_private = ioend;
360 bio->bi_end_io = xfs_end_bio;
361
362 submit_bio(WRITE, bio);
363 ASSERT(!bio_flagged(bio, BIO_EOPNOTSUPP));
364 bio_put(bio);
365}
366
367STATIC struct bio *
368xfs_alloc_ioend_bio(
369 struct buffer_head *bh)
370{
371 struct bio *bio;
372 int nvecs = bio_get_nr_vecs(bh->b_bdev);
373
374 do {
375 bio = bio_alloc(GFP_NOIO, nvecs);
376 nvecs >>= 1;
377 } while (!bio);
378
379 ASSERT(bio->bi_private == NULL);
380 bio->bi_sector = bh->b_blocknr * (bh->b_size >> 9);
381 bio->bi_bdev = bh->b_bdev;
382 bio_get(bio);
383 return bio;
384}
385
386STATIC void
387xfs_start_buffer_writeback(
388 struct buffer_head *bh)
389{
390 ASSERT(buffer_mapped(bh));
391 ASSERT(buffer_locked(bh));
392 ASSERT(!buffer_delay(bh));
393 ASSERT(!buffer_unwritten(bh));
394
395 mark_buffer_async_write(bh);
396 set_buffer_uptodate(bh);
397 clear_buffer_dirty(bh);
398}
399
400STATIC void
401xfs_start_page_writeback(
402 struct page *page,
403 struct writeback_control *wbc,
404 int clear_dirty,
405 int buffers)
406{
407 ASSERT(PageLocked(page));
408 ASSERT(!PageWriteback(page));
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100409 if (clear_dirty)
David Chinner92132022006-12-21 10:24:01 +1100410 clear_page_dirty_for_io(page);
411 set_page_writeback(page);
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100412 unlock_page(page);
413 if (!buffers) {
414 end_page_writeback(page);
415 wbc->pages_skipped++; /* We didn't write this page */
416 }
417}
418
419static inline int bio_add_buffer(struct bio *bio, struct buffer_head *bh)
420{
421 return bio_add_page(bio, bh->b_page, bh->b_size, bh_offset(bh));
422}
423
424/*
David Chinnerd88992f2006-01-18 13:38:12 +1100425 * Submit all of the bios for all of the ioends we have saved up, covering the
426 * initial writepage page and also any probed pages.
427 *
428 * Because we may have multiple ioends spanning a page, we need to start
429 * writeback on all the buffers before we submit them for I/O. If we mark the
430 * buffers as we got, then we can end up with a page that only has buffers
431 * marked async write and I/O complete on can occur before we mark the other
432 * buffers async write.
433 *
434 * The end result of this is that we trip a bug in end_page_writeback() because
435 * we call it twice for the one page as the code in end_buffer_async_write()
436 * assumes that all buffers on the page are started at the same time.
437 *
438 * The fix is two passes across the ioend list - one to start writeback on the
Nathan Scottc41564b2006-03-29 08:55:14 +1000439 * buffer_heads, and then submit them for I/O on the second pass.
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100440 */
441STATIC void
442xfs_submit_ioend(
443 xfs_ioend_t *ioend)
444{
David Chinnerd88992f2006-01-18 13:38:12 +1100445 xfs_ioend_t *head = ioend;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100446 xfs_ioend_t *next;
447 struct buffer_head *bh;
448 struct bio *bio;
449 sector_t lastblock = 0;
450
David Chinnerd88992f2006-01-18 13:38:12 +1100451 /* Pass 1 - start writeback */
452 do {
453 next = ioend->io_list;
454 for (bh = ioend->io_buffer_head; bh; bh = bh->b_private) {
455 xfs_start_buffer_writeback(bh);
456 }
457 } while ((ioend = next) != NULL);
458
459 /* Pass 2 - submit I/O */
460 ioend = head;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100461 do {
462 next = ioend->io_list;
463 bio = NULL;
464
465 for (bh = ioend->io_buffer_head; bh; bh = bh->b_private) {
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100466
467 if (!bio) {
468 retry:
469 bio = xfs_alloc_ioend_bio(bh);
470 } else if (bh->b_blocknr != lastblock + 1) {
471 xfs_submit_ioend_bio(ioend, bio);
472 goto retry;
473 }
474
475 if (bio_add_buffer(bio, bh) != bh->b_size) {
476 xfs_submit_ioend_bio(ioend, bio);
477 goto retry;
478 }
479
480 lastblock = bh->b_blocknr;
481 }
482 if (bio)
483 xfs_submit_ioend_bio(ioend, bio);
David Chinnere927af92007-06-05 16:24:36 +1000484 xfs_finish_ioend(ioend, 0);
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100485 } while ((ioend = next) != NULL);
486}
487
488/*
489 * Cancel submission of all buffer_heads so far in this endio.
490 * Toss the endio too. Only ever called for the initial page
491 * in a writepage request, so only ever one page.
492 */
493STATIC void
494xfs_cancel_ioend(
495 xfs_ioend_t *ioend)
496{
497 xfs_ioend_t *next;
498 struct buffer_head *bh, *next_bh;
499
500 do {
501 next = ioend->io_list;
502 bh = ioend->io_buffer_head;
503 do {
504 next_bh = bh->b_private;
505 clear_buffer_async_write(bh);
506 unlock_buffer(bh);
507 } while ((bh = next_bh) != NULL);
508
509 vn_iowake(ioend->io_vnode);
510 mempool_free(ioend, xfs_ioend_pool);
511 } while ((ioend = next) != NULL);
512}
513
514/*
515 * Test to see if we've been building up a completion structure for
516 * earlier buffers -- if so, we try to append to this ioend if we
517 * can, otherwise we finish off any current ioend and start another.
518 * Return true if we've finished the given ioend.
519 */
520STATIC void
521xfs_add_to_ioend(
522 struct inode *inode,
523 struct buffer_head *bh,
Christoph Hellwig7336cea2006-01-11 20:49:16 +1100524 xfs_off_t offset,
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100525 unsigned int type,
526 xfs_ioend_t **result,
527 int need_ioend)
528{
529 xfs_ioend_t *ioend = *result;
530
531 if (!ioend || need_ioend || type != ioend->io_type) {
532 xfs_ioend_t *previous = *result;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100533
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100534 ioend = xfs_alloc_ioend(inode, type);
535 ioend->io_offset = offset;
536 ioend->io_buffer_head = bh;
537 ioend->io_buffer_tail = bh;
538 if (previous)
539 previous->io_list = ioend;
540 *result = ioend;
541 } else {
542 ioend->io_buffer_tail->b_private = bh;
543 ioend->io_buffer_tail = bh;
544 }
545
546 bh->b_private = NULL;
547 ioend->io_size += bh->b_size;
548}
549
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550STATIC void
Nathan Scott87cbc492006-03-14 13:26:43 +1100551xfs_map_buffer(
552 struct buffer_head *bh,
553 xfs_iomap_t *mp,
554 xfs_off_t offset,
555 uint block_bits)
556{
557 sector_t bn;
558
559 ASSERT(mp->iomap_bn != IOMAP_DADDR_NULL);
560
561 bn = (mp->iomap_bn >> (block_bits - BBSHIFT)) +
562 ((offset - mp->iomap_offset) >> block_bits);
563
564 ASSERT(bn || (mp->iomap_flags & IOMAP_REALTIME));
565
566 bh->b_blocknr = bn;
567 set_buffer_mapped(bh);
568}
569
570STATIC void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571xfs_map_at_offset(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 struct buffer_head *bh,
Christoph Hellwig1defeac2006-01-11 20:48:33 +1100573 loff_t offset,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 int block_bits,
Christoph Hellwig1defeac2006-01-11 20:48:33 +1100575 xfs_iomap_t *iomapp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 ASSERT(!(iomapp->iomap_flags & IOMAP_HOLE));
578 ASSERT(!(iomapp->iomap_flags & IOMAP_DELAY));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579
580 lock_buffer(bh);
Nathan Scott87cbc492006-03-14 13:26:43 +1100581 xfs_map_buffer(bh, iomapp, offset, block_bits);
Nathan Scottce8e9222006-01-11 15:39:08 +1100582 bh->b_bdev = iomapp->iomap_target->bt_bdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 set_buffer_mapped(bh);
584 clear_buffer_delay(bh);
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100585 clear_buffer_unwritten(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586}
587
588/*
Christoph Hellwig6c4fe192006-01-11 20:49:28 +1100589 * Look for a page at index that is suitable for clustering.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 */
591STATIC unsigned int
Christoph Hellwig6c4fe192006-01-11 20:49:28 +1100592xfs_probe_page(
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100593 struct page *page,
Christoph Hellwig6c4fe192006-01-11 20:49:28 +1100594 unsigned int pg_offset,
595 int mapped)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 int ret = 0;
598
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 if (PageWriteback(page))
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100600 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601
602 if (page->mapping && PageDirty(page)) {
603 if (page_has_buffers(page)) {
604 struct buffer_head *bh, *head;
605
606 bh = head = page_buffers(page);
607 do {
Christoph Hellwig6c4fe192006-01-11 20:49:28 +1100608 if (!buffer_uptodate(bh))
609 break;
610 if (mapped != buffer_mapped(bh))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 break;
612 ret += bh->b_size;
613 if (ret >= pg_offset)
614 break;
615 } while ((bh = bh->b_this_page) != head);
616 } else
Christoph Hellwig6c4fe192006-01-11 20:49:28 +1100617 ret = mapped ? 0 : PAGE_CACHE_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 }
619
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 return ret;
621}
622
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100623STATIC size_t
Christoph Hellwig6c4fe192006-01-11 20:49:28 +1100624xfs_probe_cluster(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 struct inode *inode,
626 struct page *startpage,
627 struct buffer_head *bh,
Christoph Hellwig6c4fe192006-01-11 20:49:28 +1100628 struct buffer_head *head,
629 int mapped)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630{
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100631 struct pagevec pvec;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 pgoff_t tindex, tlast, tloff;
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100633 size_t total = 0;
634 int done = 0, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635
636 /* First sum forwards in this page */
637 do {
Eric Sandeen2353e8e2006-02-28 12:30:30 +1100638 if (!buffer_uptodate(bh) || (mapped != buffer_mapped(bh)))
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100639 return total;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 total += bh->b_size;
641 } while ((bh = bh->b_this_page) != head);
642
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100643 /* if we reached the end of the page, sum forwards in following pages */
644 tlast = i_size_read(inode) >> PAGE_CACHE_SHIFT;
645 tindex = startpage->index + 1;
646
647 /* Prune this back to avoid pathological behavior */
648 tloff = min(tlast, startpage->index + 64);
649
650 pagevec_init(&pvec, 0);
651 while (!done && tindex <= tloff) {
652 unsigned len = min_t(pgoff_t, PAGEVEC_SIZE, tlast - tindex + 1);
653
654 if (!pagevec_lookup(&pvec, inode->i_mapping, tindex, len))
655 break;
656
657 for (i = 0; i < pagevec_count(&pvec); i++) {
658 struct page *page = pvec.pages[i];
Christoph Hellwig265c1fa2007-08-16 15:38:19 +1000659 size_t pg_offset, pg_len = 0;
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100660
661 if (tindex == tlast) {
662 pg_offset =
663 i_size_read(inode) & (PAGE_CACHE_SIZE - 1);
Christoph Hellwig1defeac2006-01-11 20:48:33 +1100664 if (!pg_offset) {
665 done = 1;
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100666 break;
Christoph Hellwig1defeac2006-01-11 20:48:33 +1100667 }
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100668 } else
669 pg_offset = PAGE_CACHE_SIZE;
670
671 if (page->index == tindex && !TestSetPageLocked(page)) {
Christoph Hellwig265c1fa2007-08-16 15:38:19 +1000672 pg_len = xfs_probe_page(page, pg_offset, mapped);
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100673 unlock_page(page);
674 }
675
Christoph Hellwig265c1fa2007-08-16 15:38:19 +1000676 if (!pg_len) {
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100677 done = 1;
678 break;
679 }
680
Christoph Hellwig265c1fa2007-08-16 15:38:19 +1000681 total += pg_len;
Christoph Hellwig1defeac2006-01-11 20:48:33 +1100682 tindex++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 }
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100684
685 pagevec_release(&pvec);
686 cond_resched();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 }
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100688
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 return total;
690}
691
692/*
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100693 * Test if a given page is suitable for writing as part of an unwritten
694 * or delayed allocate extent.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 */
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100696STATIC int
697xfs_is_delayed_page(
698 struct page *page,
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100699 unsigned int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 if (PageWriteback(page))
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100702 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703
704 if (page->mapping && page_has_buffers(page)) {
705 struct buffer_head *bh, *head;
706 int acceptable = 0;
707
708 bh = head = page_buffers(page);
709 do {
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100710 if (buffer_unwritten(bh))
711 acceptable = (type == IOMAP_UNWRITTEN);
712 else if (buffer_delay(bh))
713 acceptable = (type == IOMAP_DELAY);
David Chinner2ddee842006-03-22 12:47:40 +1100714 else if (buffer_dirty(bh) && buffer_mapped(bh))
David Chinnerdf3c7242007-05-24 15:27:03 +1000715 acceptable = (type == IOMAP_NEW);
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100716 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 } while ((bh = bh->b_this_page) != head);
719
720 if (acceptable)
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100721 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 }
723
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100724 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725}
726
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727/*
728 * Allocate & map buffers for page given the extent map. Write it out.
729 * except for the original page of a writepage, this is called on
730 * delalloc/unwritten pages only, for the original page it is possible
731 * that the page has no mapping at all.
732 */
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100733STATIC int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734xfs_convert_page(
735 struct inode *inode,
736 struct page *page,
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100737 loff_t tindex,
Christoph Hellwig1defeac2006-01-11 20:48:33 +1100738 xfs_iomap_t *mp,
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100739 xfs_ioend_t **ioendp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 struct writeback_control *wbc,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 int startio,
742 int all_bh)
743{
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100744 struct buffer_head *bh, *head;
Christoph Hellwig9260dc62006-01-11 20:48:47 +1100745 xfs_off_t end_offset;
746 unsigned long p_offset;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100747 unsigned int type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 int bbits = inode->i_blkbits;
Nathan Scott24e17b52005-05-05 13:33:20 -0700749 int len, page_dirty;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100750 int count = 0, done = 0, uptodate = 1;
Christoph Hellwig9260dc62006-01-11 20:48:47 +1100751 xfs_off_t offset = page_offset(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100753 if (page->index != tindex)
754 goto fail;
755 if (TestSetPageLocked(page))
756 goto fail;
757 if (PageWriteback(page))
758 goto fail_unlock_page;
759 if (page->mapping != inode->i_mapping)
760 goto fail_unlock_page;
761 if (!xfs_is_delayed_page(page, (*ioendp)->io_type))
762 goto fail_unlock_page;
763
Nathan Scott24e17b52005-05-05 13:33:20 -0700764 /*
765 * page_dirty is initially a count of buffers on the page before
Nathan Scottc41564b2006-03-29 08:55:14 +1000766 * EOF and is decremented as we move each into a cleanable state.
Christoph Hellwig9260dc62006-01-11 20:48:47 +1100767 *
768 * Derivation:
769 *
770 * End offset is the highest offset that this page should represent.
771 * If we are on the last page, (end_offset & (PAGE_CACHE_SIZE - 1))
772 * will evaluate non-zero and be less than PAGE_CACHE_SIZE and
773 * hence give us the correct page_dirty count. On any other page,
774 * it will be zero and in that case we need page_dirty to be the
775 * count of buffers on the page.
Nathan Scott24e17b52005-05-05 13:33:20 -0700776 */
Christoph Hellwig9260dc62006-01-11 20:48:47 +1100777 end_offset = min_t(unsigned long long,
778 (xfs_off_t)(page->index + 1) << PAGE_CACHE_SHIFT,
779 i_size_read(inode));
780
Nathan Scott24e17b52005-05-05 13:33:20 -0700781 len = 1 << inode->i_blkbits;
Christoph Hellwig9260dc62006-01-11 20:48:47 +1100782 p_offset = min_t(unsigned long, end_offset & (PAGE_CACHE_SIZE - 1),
783 PAGE_CACHE_SIZE);
784 p_offset = p_offset ? roundup(p_offset, len) : PAGE_CACHE_SIZE;
785 page_dirty = p_offset / len;
Nathan Scott24e17b52005-05-05 13:33:20 -0700786
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 bh = head = page_buffers(page);
788 do {
Christoph Hellwig9260dc62006-01-11 20:48:47 +1100789 if (offset >= end_offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 break;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100791 if (!buffer_uptodate(bh))
792 uptodate = 0;
793 if (!(PageUptodate(page) || buffer_uptodate(bh))) {
794 done = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 continue;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100796 }
797
Christoph Hellwig9260dc62006-01-11 20:48:47 +1100798 if (buffer_unwritten(bh) || buffer_delay(bh)) {
799 if (buffer_unwritten(bh))
800 type = IOMAP_UNWRITTEN;
801 else
802 type = IOMAP_DELAY;
803
804 if (!xfs_iomap_valid(mp, offset)) {
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100805 done = 1;
Christoph Hellwig9260dc62006-01-11 20:48:47 +1100806 continue;
807 }
808
809 ASSERT(!(mp->iomap_flags & IOMAP_HOLE));
810 ASSERT(!(mp->iomap_flags & IOMAP_DELAY));
811
812 xfs_map_at_offset(bh, offset, bbits, mp);
813 if (startio) {
Christoph Hellwig7336cea2006-01-11 20:49:16 +1100814 xfs_add_to_ioend(inode, bh, offset,
Christoph Hellwig9260dc62006-01-11 20:48:47 +1100815 type, ioendp, done);
816 } else {
817 set_buffer_dirty(bh);
818 unlock_buffer(bh);
819 mark_buffer_dirty(bh);
820 }
821 page_dirty--;
822 count++;
823 } else {
David Chinnerdf3c7242007-05-24 15:27:03 +1000824 type = IOMAP_NEW;
Christoph Hellwig9260dc62006-01-11 20:48:47 +1100825 if (buffer_mapped(bh) && all_bh && startio) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 lock_buffer(bh);
Christoph Hellwig7336cea2006-01-11 20:49:16 +1100827 xfs_add_to_ioend(inode, bh, offset,
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100828 type, ioendp, done);
829 count++;
Nathan Scott24e17b52005-05-05 13:33:20 -0700830 page_dirty--;
Christoph Hellwig9260dc62006-01-11 20:48:47 +1100831 } else {
832 done = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 }
Christoph Hellwig7336cea2006-01-11 20:49:16 +1100835 } while (offset += len, (bh = bh->b_this_page) != head);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100837 if (uptodate && bh == head)
838 SetPageUptodate(page);
839
840 if (startio) {
Christoph Hellwigf5e596b2006-01-11 20:49:42 +1100841 if (count) {
842 struct backing_dev_info *bdi;
843
844 bdi = inode->i_mapping->backing_dev_info;
David Chinner9fddaca2006-02-07 20:27:24 +1100845 wbc->nr_to_write--;
Christoph Hellwigf5e596b2006-01-11 20:49:42 +1100846 if (bdi_write_congested(bdi)) {
847 wbc->encountered_congestion = 1;
848 done = 1;
David Chinner9fddaca2006-02-07 20:27:24 +1100849 } else if (wbc->nr_to_write <= 0) {
Christoph Hellwigf5e596b2006-01-11 20:49:42 +1100850 done = 1;
851 }
852 }
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100853 xfs_start_page_writeback(page, wbc, !page_dirty, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 }
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100855
856 return done;
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100857 fail_unlock_page:
858 unlock_page(page);
859 fail:
860 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861}
862
863/*
864 * Convert & write out a cluster of pages in the same extent as defined
865 * by mp and following the start page.
866 */
867STATIC void
868xfs_cluster_write(
869 struct inode *inode,
870 pgoff_t tindex,
871 xfs_iomap_t *iomapp,
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100872 xfs_ioend_t **ioendp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 struct writeback_control *wbc,
874 int startio,
875 int all_bh,
876 pgoff_t tlast)
877{
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100878 struct pagevec pvec;
879 int done = 0, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100881 pagevec_init(&pvec, 0);
882 while (!done && tindex <= tlast) {
883 unsigned len = min_t(pgoff_t, PAGEVEC_SIZE, tlast - tindex + 1);
884
885 if (!pagevec_lookup(&pvec, inode->i_mapping, tindex, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 break;
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100887
888 for (i = 0; i < pagevec_count(&pvec); i++) {
889 done = xfs_convert_page(inode, pvec.pages[i], tindex++,
890 iomapp, ioendp, wbc, startio, all_bh);
891 if (done)
892 break;
893 }
894
895 pagevec_release(&pvec);
896 cond_resched();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897 }
898}
899
900/*
901 * Calling this without startio set means we are being asked to make a dirty
902 * page ready for freeing it's buffers. When called with startio set then
903 * we are coming from writepage.
904 *
905 * When called with startio set it is important that we write the WHOLE
906 * page if possible.
907 * The bh->b_state's cannot know if any of the blocks or which block for
908 * that matter are dirty due to mmap writes, and therefore bh uptodate is
Nathan Scottc41564b2006-03-29 08:55:14 +1000909 * only valid if the page itself isn't completely uptodate. Some layers
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910 * may clear the page dirty flag prior to calling write page, under the
911 * assumption the entire page will be written out; by not writing out the
912 * whole page the page can be reused before all valid dirty data is
913 * written out. Note: in the case of a page that has been dirty'd by
914 * mapwrite and but partially setup by block_prepare_write the
915 * bh->b_states's will not agree and only ones setup by BPW/BCW will have
916 * valid state, thus the whole page must be written out thing.
917 */
918
919STATIC int
920xfs_page_state_convert(
921 struct inode *inode,
922 struct page *page,
923 struct writeback_control *wbc,
924 int startio,
925 int unmapped) /* also implies page uptodate */
926{
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100927 struct buffer_head *bh, *head;
Christoph Hellwig1defeac2006-01-11 20:48:33 +1100928 xfs_iomap_t iomap;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100929 xfs_ioend_t *ioend = NULL, *iohead = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930 loff_t offset;
931 unsigned long p_offset = 0;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100932 unsigned int type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933 __uint64_t end_offset;
934 pgoff_t end_index, last_index, tlast;
Christoph Hellwigd5cb48a2006-01-11 20:49:02 +1100935 ssize_t size, len;
936 int flags, err, iomap_valid = 0, uptodate = 1;
Nathan Scott82721452006-04-11 15:10:55 +1000937 int page_dirty, count = 0;
938 int trylock = 0;
Christoph Hellwig6c4fe192006-01-11 20:49:28 +1100939 int all_bh = unmapped;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940
Nathan Scott82721452006-04-11 15:10:55 +1000941 if (startio) {
942 if (wbc->sync_mode == WB_SYNC_NONE && wbc->nonblocking)
943 trylock |= BMAPI_TRYLOCK;
944 }
Daniel Moore3ba08152005-05-05 13:31:34 -0700945
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946 /* Is this page beyond the end of the file? */
947 offset = i_size_read(inode);
948 end_index = offset >> PAGE_CACHE_SHIFT;
949 last_index = (offset - 1) >> PAGE_CACHE_SHIFT;
950 if (page->index >= end_index) {
951 if ((page->index >= end_index + 1) ||
952 !(i_size_read(inode) & (PAGE_CACHE_SIZE - 1))) {
Nathan Scott19d5bcf2005-11-02 15:14:09 +1100953 if (startio)
954 unlock_page(page);
955 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956 }
957 }
958
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959 /*
Nathan Scott24e17b52005-05-05 13:33:20 -0700960 * page_dirty is initially a count of buffers on the page before
Nathan Scottc41564b2006-03-29 08:55:14 +1000961 * EOF and is decremented as we move each into a cleanable state.
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100962 *
963 * Derivation:
964 *
965 * End offset is the highest offset that this page should represent.
966 * If we are on the last page, (end_offset & (PAGE_CACHE_SIZE - 1))
967 * will evaluate non-zero and be less than PAGE_CACHE_SIZE and
968 * hence give us the correct page_dirty count. On any other page,
969 * it will be zero and in that case we need page_dirty to be the
970 * count of buffers on the page.
971 */
972 end_offset = min_t(unsigned long long,
973 (xfs_off_t)(page->index + 1) << PAGE_CACHE_SHIFT, offset);
Nathan Scott24e17b52005-05-05 13:33:20 -0700974 len = 1 << inode->i_blkbits;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100975 p_offset = min_t(unsigned long, end_offset & (PAGE_CACHE_SIZE - 1),
976 PAGE_CACHE_SIZE);
977 p_offset = p_offset ? roundup(p_offset, len) : PAGE_CACHE_SIZE;
Nathan Scott24e17b52005-05-05 13:33:20 -0700978 page_dirty = p_offset / len;
979
Nathan Scott24e17b52005-05-05 13:33:20 -0700980 bh = head = page_buffers(page);
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100981 offset = page_offset(page);
David Chinnerdf3c7242007-05-24 15:27:03 +1000982 flags = BMAPI_READ;
983 type = IOMAP_NEW;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100984
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100985 /* TODO: cleanup count and page_dirty */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986
987 do {
988 if (offset >= end_offset)
989 break;
990 if (!buffer_uptodate(bh))
991 uptodate = 0;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100992 if (!(PageUptodate(page) || buffer_uptodate(bh)) && !startio) {
Christoph Hellwig1defeac2006-01-11 20:48:33 +1100993 /*
994 * the iomap is actually still valid, but the ioend
995 * isn't. shouldn't happen too often.
996 */
997 iomap_valid = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998 continue;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100999 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000
Christoph Hellwig1defeac2006-01-11 20:48:33 +11001001 if (iomap_valid)
1002 iomap_valid = xfs_iomap_valid(&iomap, offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003
1004 /*
1005 * First case, map an unwritten extent and prepare for
1006 * extent state conversion transaction on completion.
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +11001007 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008 * Second case, allocate space for a delalloc buffer.
1009 * We can return EAGAIN here in the release page case.
Christoph Hellwigd5cb48a2006-01-11 20:49:02 +11001010 *
1011 * Third case, an unmapped buffer was found, and we are
1012 * in a path where we need to write the whole page out.
David Chinnerdf3c7242007-05-24 15:27:03 +10001013 */
Christoph Hellwigd5cb48a2006-01-11 20:49:02 +11001014 if (buffer_unwritten(bh) || buffer_delay(bh) ||
1015 ((buffer_uptodate(bh) || PageUptodate(page)) &&
1016 !buffer_mapped(bh) && (unmapped || startio))) {
David Chinnereffd1202007-06-18 16:49:58 +10001017 int new_ioend = 0;
1018
David Chinnerdf3c7242007-05-24 15:27:03 +10001019 /*
Christoph Hellwig6c4fe192006-01-11 20:49:28 +11001020 * Make sure we don't use a read-only iomap
1021 */
David Chinnerdf3c7242007-05-24 15:27:03 +10001022 if (flags == BMAPI_READ)
Christoph Hellwig6c4fe192006-01-11 20:49:28 +11001023 iomap_valid = 0;
1024
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +11001025 if (buffer_unwritten(bh)) {
1026 type = IOMAP_UNWRITTEN;
Nathan Scott82721452006-04-11 15:10:55 +10001027 flags = BMAPI_WRITE | BMAPI_IGNSTATE;
Christoph Hellwigd5cb48a2006-01-11 20:49:02 +11001028 } else if (buffer_delay(bh)) {
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +11001029 type = IOMAP_DELAY;
Nathan Scott82721452006-04-11 15:10:55 +10001030 flags = BMAPI_ALLOCATE | trylock;
Christoph Hellwigd5cb48a2006-01-11 20:49:02 +11001031 } else {
Christoph Hellwig6c4fe192006-01-11 20:49:28 +11001032 type = IOMAP_NEW;
Nathan Scott82721452006-04-11 15:10:55 +10001033 flags = BMAPI_WRITE | BMAPI_MMAP;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +11001034 }
1035
Christoph Hellwig1defeac2006-01-11 20:48:33 +11001036 if (!iomap_valid) {
David Chinnereffd1202007-06-18 16:49:58 +10001037 /*
1038 * if we didn't have a valid mapping then we
1039 * need to ensure that we put the new mapping
1040 * in a new ioend structure. This needs to be
1041 * done to ensure that the ioends correctly
1042 * reflect the block mappings at io completion
1043 * for unwritten extent conversion.
1044 */
1045 new_ioend = 1;
Christoph Hellwig6c4fe192006-01-11 20:49:28 +11001046 if (type == IOMAP_NEW) {
1047 size = xfs_probe_cluster(inode,
1048 page, bh, head, 0);
Christoph Hellwigd5cb48a2006-01-11 20:49:02 +11001049 } else {
1050 size = len;
1051 }
1052
1053 err = xfs_map_blocks(inode, offset, size,
1054 &iomap, flags);
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +11001055 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056 goto error;
Christoph Hellwig1defeac2006-01-11 20:48:33 +11001057 iomap_valid = xfs_iomap_valid(&iomap, offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058 }
Christoph Hellwig1defeac2006-01-11 20:48:33 +11001059 if (iomap_valid) {
1060 xfs_map_at_offset(bh, offset,
1061 inode->i_blkbits, &iomap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062 if (startio) {
Christoph Hellwig7336cea2006-01-11 20:49:16 +11001063 xfs_add_to_ioend(inode, bh, offset,
Christoph Hellwig1defeac2006-01-11 20:48:33 +11001064 type, &ioend,
David Chinnereffd1202007-06-18 16:49:58 +10001065 new_ioend);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066 } else {
1067 set_buffer_dirty(bh);
1068 unlock_buffer(bh);
1069 mark_buffer_dirty(bh);
1070 }
1071 page_dirty--;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +11001072 count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073 }
Christoph Hellwigd5cb48a2006-01-11 20:49:02 +11001074 } else if (buffer_uptodate(bh) && startio) {
Christoph Hellwig6c4fe192006-01-11 20:49:28 +11001075 /*
1076 * we got here because the buffer is already mapped.
1077 * That means it must already have extents allocated
1078 * underneath it. Map the extent by reading it.
1079 */
David Chinnerdf3c7242007-05-24 15:27:03 +10001080 if (!iomap_valid || flags != BMAPI_READ) {
Christoph Hellwig6c4fe192006-01-11 20:49:28 +11001081 flags = BMAPI_READ;
1082 size = xfs_probe_cluster(inode, page, bh,
1083 head, 1);
1084 err = xfs_map_blocks(inode, offset, size,
1085 &iomap, flags);
1086 if (err)
1087 goto error;
1088 iomap_valid = xfs_iomap_valid(&iomap, offset);
1089 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090
David Chinnerdf3c7242007-05-24 15:27:03 +10001091 /*
1092 * We set the type to IOMAP_NEW in case we are doing a
1093 * small write at EOF that is extending the file but
1094 * without needing an allocation. We need to update the
1095 * file size on I/O completion in this case so it is
1096 * the same case as having just allocated a new extent
1097 * that we are writing into for the first time.
1098 */
1099 type = IOMAP_NEW;
Christoph Hellwigd5cb48a2006-01-11 20:49:02 +11001100 if (!test_and_set_bit(BH_Lock, &bh->b_state)) {
1101 ASSERT(buffer_mapped(bh));
Christoph Hellwig6c4fe192006-01-11 20:49:28 +11001102 if (iomap_valid)
1103 all_bh = 1;
Christoph Hellwig7336cea2006-01-11 20:49:16 +11001104 xfs_add_to_ioend(inode, bh, offset, type,
Christoph Hellwigd5cb48a2006-01-11 20:49:02 +11001105 &ioend, !iomap_valid);
1106 page_dirty--;
1107 count++;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +11001108 } else {
Christoph Hellwig1defeac2006-01-11 20:48:33 +11001109 iomap_valid = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110 }
Christoph Hellwigd5cb48a2006-01-11 20:49:02 +11001111 } else if ((buffer_uptodate(bh) || PageUptodate(page)) &&
1112 (unmapped || startio)) {
1113 iomap_valid = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114 }
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +11001115
1116 if (!iohead)
1117 iohead = ioend;
1118
1119 } while (offset += len, ((bh = bh->b_this_page) != head));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120
1121 if (uptodate && bh == head)
1122 SetPageUptodate(page);
1123
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +11001124 if (startio)
1125 xfs_start_page_writeback(page, wbc, 1, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126
Christoph Hellwig1defeac2006-01-11 20:48:33 +11001127 if (ioend && iomap_valid) {
1128 offset = (iomap.iomap_offset + iomap.iomap_bsize - 1) >>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129 PAGE_CACHE_SHIFT;
Nathan Scott775bf6c2005-05-05 13:33:01 -07001130 tlast = min_t(pgoff_t, offset, last_index);
Christoph Hellwig1defeac2006-01-11 20:48:33 +11001131 xfs_cluster_write(inode, page->index + 1, &iomap, &ioend,
Christoph Hellwig6c4fe192006-01-11 20:49:28 +11001132 wbc, startio, all_bh, tlast);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133 }
1134
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +11001135 if (iohead)
1136 xfs_submit_ioend(iohead);
1137
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138 return page_dirty;
1139
1140error:
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +11001141 if (iohead)
1142 xfs_cancel_ioend(iohead);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143
1144 /*
1145 * If it's delalloc and we have nowhere to put it,
1146 * throw it away, unless the lower layers told
1147 * us to try again.
1148 */
1149 if (err != -EAGAIN) {
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +11001150 if (!unmapped)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151 block_invalidatepage(page, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152 ClearPageUptodate(page);
1153 }
1154 return err;
1155}
1156
Nathan Scottf51623b2006-03-14 13:26:27 +11001157/*
1158 * writepage: Called from one of two places:
1159 *
1160 * 1. we are flushing a delalloc buffer head.
1161 *
1162 * 2. we are writing out a dirty page. Typically the page dirty
1163 * state is cleared before we get here. In this case is it
1164 * conceivable we have no buffer heads.
1165 *
1166 * For delalloc space on the page we need to allocate space and
1167 * flush it. For unmapped buffer heads on the page we should
1168 * allocate space if the page is uptodate. For any other dirty
1169 * buffer heads on the page we should flush them.
1170 *
1171 * If we detect that a transaction would be required to flush
1172 * the page, we have to check the process flags first, if we
1173 * are already in a transaction or disk I/O during allocations
1174 * is off, we need to fail the writepage and redirty the page.
1175 */
1176
1177STATIC int
Nathan Scotte4c573b2006-03-14 13:54:26 +11001178xfs_vm_writepage(
Nathan Scottf51623b2006-03-14 13:26:27 +11001179 struct page *page,
1180 struct writeback_control *wbc)
1181{
1182 int error;
1183 int need_trans;
1184 int delalloc, unmapped, unwritten;
1185 struct inode *inode = page->mapping->host;
1186
1187 xfs_page_trace(XFS_WRITEPAGE_ENTER, inode, page, 0);
1188
1189 /*
1190 * We need a transaction if:
1191 * 1. There are delalloc buffers on the page
1192 * 2. The page is uptodate and we have unmapped buffers
1193 * 3. The page is uptodate and we have no buffers
1194 * 4. There are unwritten buffers on the page
1195 */
1196
1197 if (!page_has_buffers(page)) {
1198 unmapped = 1;
1199 need_trans = 1;
1200 } else {
1201 xfs_count_page_state(page, &delalloc, &unmapped, &unwritten);
1202 if (!PageUptodate(page))
1203 unmapped = 0;
1204 need_trans = delalloc + unmapped + unwritten;
1205 }
1206
1207 /*
1208 * If we need a transaction and the process flags say
1209 * we are already in a transaction, or no IO is allowed
1210 * then mark the page dirty again and leave the page
1211 * as is.
1212 */
Nathan Scott59c1b082006-06-09 14:59:13 +10001213 if (current_test_flags(PF_FSTRANS) && need_trans)
Nathan Scottf51623b2006-03-14 13:26:27 +11001214 goto out_fail;
1215
1216 /*
1217 * Delay hooking up buffer heads until we have
1218 * made our go/no-go decision.
1219 */
1220 if (!page_has_buffers(page))
1221 create_empty_buffers(page, 1 << inode->i_blkbits, 0);
1222
1223 /*
1224 * Convert delayed allocate, unwritten or unmapped space
1225 * to real space and flush out to disk.
1226 */
1227 error = xfs_page_state_convert(inode, page, wbc, 1, unmapped);
1228 if (error == -EAGAIN)
1229 goto out_fail;
1230 if (unlikely(error < 0))
1231 goto out_unlock;
1232
1233 return 0;
1234
1235out_fail:
1236 redirty_page_for_writepage(wbc, page);
1237 unlock_page(page);
1238 return 0;
1239out_unlock:
1240 unlock_page(page);
1241 return error;
1242}
1243
Nathan Scott7d4fb402006-06-09 15:27:16 +10001244STATIC int
1245xfs_vm_writepages(
1246 struct address_space *mapping,
1247 struct writeback_control *wbc)
1248{
Nathan Scott67fcaa72006-06-09 17:00:52 +10001249 struct bhv_vnode *vp = vn_from_inode(mapping->host);
Nathan Scott7d4fb402006-06-09 15:27:16 +10001250
1251 if (VN_TRUNC(vp))
1252 VUNTRUNCATE(vp);
1253 return generic_writepages(mapping, wbc);
1254}
1255
Nathan Scottf51623b2006-03-14 13:26:27 +11001256/*
1257 * Called to move a page into cleanable state - and from there
1258 * to be released. Possibly the page is already clean. We always
1259 * have buffer heads in this call.
1260 *
1261 * Returns 0 if the page is ok to release, 1 otherwise.
1262 *
1263 * Possible scenarios are:
1264 *
1265 * 1. We are being called to release a page which has been written
1266 * to via regular I/O. buffer heads will be dirty and possibly
1267 * delalloc. If no delalloc buffer heads in this case then we
1268 * can just return zero.
1269 *
1270 * 2. We are called to release a page which has been written via
1271 * mmap, all we need to do is ensure there is no delalloc
1272 * state in the buffer heads, if not we can let the caller
1273 * free them and we should come back later via writepage.
1274 */
1275STATIC int
Nathan Scott238f4c52006-03-17 17:26:25 +11001276xfs_vm_releasepage(
Nathan Scottf51623b2006-03-14 13:26:27 +11001277 struct page *page,
1278 gfp_t gfp_mask)
1279{
1280 struct inode *inode = page->mapping->host;
1281 int dirty, delalloc, unmapped, unwritten;
1282 struct writeback_control wbc = {
1283 .sync_mode = WB_SYNC_ALL,
1284 .nr_to_write = 1,
1285 };
1286
Nathan Scotted9d88f2006-09-28 10:56:43 +10001287 xfs_page_trace(XFS_RELEASEPAGE_ENTER, inode, page, 0);
Nathan Scottf51623b2006-03-14 13:26:27 +11001288
Nathan Scott238f4c52006-03-17 17:26:25 +11001289 if (!page_has_buffers(page))
1290 return 0;
1291
Nathan Scottf51623b2006-03-14 13:26:27 +11001292 xfs_count_page_state(page, &delalloc, &unmapped, &unwritten);
1293 if (!delalloc && !unwritten)
1294 goto free_buffers;
1295
1296 if (!(gfp_mask & __GFP_FS))
1297 return 0;
1298
1299 /* If we are already inside a transaction or the thread cannot
1300 * do I/O, we cannot release this page.
1301 */
Nathan Scott59c1b082006-06-09 14:59:13 +10001302 if (current_test_flags(PF_FSTRANS))
Nathan Scottf51623b2006-03-14 13:26:27 +11001303 return 0;
1304
1305 /*
1306 * Convert delalloc space to real space, do not flush the
1307 * data out to disk, that will be done by the caller.
1308 * Never need to allocate space here - we will always
1309 * come back to writepage in that case.
1310 */
1311 dirty = xfs_page_state_convert(inode, page, &wbc, 0, 0);
1312 if (dirty == 0 && !unwritten)
1313 goto free_buffers;
1314 return 0;
1315
1316free_buffers:
1317 return try_to_free_buffers(page);
1318}
1319
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320STATIC int
Nathan Scottc2536662006-03-29 10:44:40 +10001321__xfs_get_blocks(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322 struct inode *inode,
1323 sector_t iblock,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324 struct buffer_head *bh_result,
1325 int create,
1326 int direct,
1327 bmapi_flags_t flags)
1328{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329 xfs_iomap_t iomap;
Nathan Scottfdc7ed72005-11-02 15:13:13 +11001330 xfs_off_t offset;
1331 ssize_t size;
Nathan Scottc2536662006-03-29 10:44:40 +10001332 int niomap = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334
Nathan Scottfdc7ed72005-11-02 15:13:13 +11001335 offset = (xfs_off_t)iblock << inode->i_blkbits;
Nathan Scottc2536662006-03-29 10:44:40 +10001336 ASSERT(bh_result->b_size >= (1 << inode->i_blkbits));
1337 size = bh_result->b_size;
Christoph Hellwig739bfb22007-08-29 10:58:01 +10001338 error = xfs_bmap(XFS_I(inode), offset, size,
Nathan Scott67fcaa72006-06-09 17:00:52 +10001339 create ? flags : BMAPI_READ, &iomap, &niomap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340 if (error)
1341 return -error;
Nathan Scottc2536662006-03-29 10:44:40 +10001342 if (niomap == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343 return 0;
1344
1345 if (iomap.iomap_bn != IOMAP_DADDR_NULL) {
Nathan Scott87cbc492006-03-14 13:26:43 +11001346 /*
1347 * For unwritten extents do not report a disk address on
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348 * the read case (treat as if we're reading into a hole).
1349 */
1350 if (create || !(iomap.iomap_flags & IOMAP_UNWRITTEN)) {
Nathan Scott87cbc492006-03-14 13:26:43 +11001351 xfs_map_buffer(bh_result, &iomap, offset,
1352 inode->i_blkbits);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353 }
1354 if (create && (iomap.iomap_flags & IOMAP_UNWRITTEN)) {
1355 if (direct)
1356 bh_result->b_private = inode;
1357 set_buffer_unwritten(bh_result);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358 }
1359 }
1360
Nathan Scottc2536662006-03-29 10:44:40 +10001361 /*
1362 * If this is a realtime file, data may be on a different device.
1363 * to that pointed to from the buffer_head b_bdev currently.
1364 */
Nathan Scottce8e9222006-01-11 15:39:08 +11001365 bh_result->b_bdev = iomap.iomap_target->bt_bdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366
Nathan Scottc2536662006-03-29 10:44:40 +10001367 /*
David Chinner549054a2007-02-10 18:36:35 +11001368 * If we previously allocated a block out beyond eof and we are now
1369 * coming back to use it then we will need to flag it as new even if it
1370 * has a disk address.
1371 *
1372 * With sub-block writes into unwritten extents we also need to mark
1373 * the buffer as new so that the unwritten parts of the buffer gets
1374 * correctly zeroed.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375 */
1376 if (create &&
1377 ((!buffer_mapped(bh_result) && !buffer_uptodate(bh_result)) ||
David Chinner549054a2007-02-10 18:36:35 +11001378 (offset >= i_size_read(inode)) ||
1379 (iomap.iomap_flags & (IOMAP_NEW|IOMAP_UNWRITTEN))))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380 set_buffer_new(bh_result);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381
1382 if (iomap.iomap_flags & IOMAP_DELAY) {
1383 BUG_ON(direct);
1384 if (create) {
1385 set_buffer_uptodate(bh_result);
1386 set_buffer_mapped(bh_result);
1387 set_buffer_delay(bh_result);
1388 }
1389 }
1390
Nathan Scottc2536662006-03-29 10:44:40 +10001391 if (direct || size > (1 << inode->i_blkbits)) {
Nathan Scottfdc7ed72005-11-02 15:13:13 +11001392 ASSERT(iomap.iomap_bsize - iomap.iomap_delta > 0);
1393 offset = min_t(xfs_off_t,
Nathan Scottc2536662006-03-29 10:44:40 +10001394 iomap.iomap_bsize - iomap.iomap_delta, size);
1395 bh_result->b_size = (ssize_t)min_t(xfs_off_t, LONG_MAX, offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396 }
1397
1398 return 0;
1399}
1400
1401int
Nathan Scottc2536662006-03-29 10:44:40 +10001402xfs_get_blocks(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403 struct inode *inode,
1404 sector_t iblock,
1405 struct buffer_head *bh_result,
1406 int create)
1407{
Nathan Scottc2536662006-03-29 10:44:40 +10001408 return __xfs_get_blocks(inode, iblock,
Badari Pulavartyfa30bd02006-03-26 01:38:01 -08001409 bh_result, create, 0, BMAPI_WRITE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410}
1411
1412STATIC int
Nathan Scotte4c573b2006-03-14 13:54:26 +11001413xfs_get_blocks_direct(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414 struct inode *inode,
1415 sector_t iblock,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416 struct buffer_head *bh_result,
1417 int create)
1418{
Nathan Scottc2536662006-03-29 10:44:40 +10001419 return __xfs_get_blocks(inode, iblock,
Badari Pulavarty1d8fa7a2006-03-26 01:38:02 -08001420 bh_result, create, 1, BMAPI_WRITE|BMAPI_DIRECT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421}
1422
Christoph Hellwigf0973862005-09-05 08:22:52 +10001423STATIC void
Nathan Scotte4c573b2006-03-14 13:54:26 +11001424xfs_end_io_direct(
Christoph Hellwigf0973862005-09-05 08:22:52 +10001425 struct kiocb *iocb,
1426 loff_t offset,
1427 ssize_t size,
1428 void *private)
1429{
1430 xfs_ioend_t *ioend = iocb->private;
1431
1432 /*
1433 * Non-NULL private data means we need to issue a transaction to
1434 * convert a range from unwritten to written extents. This needs
Nathan Scottc41564b2006-03-29 08:55:14 +10001435 * to happen from process context but aio+dio I/O completion
Christoph Hellwigf0973862005-09-05 08:22:52 +10001436 * happens from irq context so we need to defer it to a workqueue.
Nathan Scottc41564b2006-03-29 08:55:14 +10001437 * This is not necessary for synchronous direct I/O, but we do
Christoph Hellwigf0973862005-09-05 08:22:52 +10001438 * it anyway to keep the code uniform and simpler.
1439 *
David Chinnere927af92007-06-05 16:24:36 +10001440 * Well, if only it were that simple. Because synchronous direct I/O
1441 * requires extent conversion to occur *before* we return to userspace,
1442 * we have to wait for extent conversion to complete. Look at the
1443 * iocb that has been passed to us to determine if this is AIO or
1444 * not. If it is synchronous, tell xfs_finish_ioend() to kick the
1445 * workqueue and wait for it to complete.
1446 *
Christoph Hellwigf0973862005-09-05 08:22:52 +10001447 * The core direct I/O code might be changed to always call the
1448 * completion handler in the future, in which case all this can
1449 * go away.
1450 */
Lachlan McIlroyba87ea62007-05-08 13:49:46 +10001451 ioend->io_offset = offset;
1452 ioend->io_size = size;
1453 if (ioend->io_type == IOMAP_READ) {
David Chinnere927af92007-06-05 16:24:36 +10001454 xfs_finish_ioend(ioend, 0);
Lachlan McIlroyba87ea62007-05-08 13:49:46 +10001455 } else if (private && size > 0) {
David Chinnere927af92007-06-05 16:24:36 +10001456 xfs_finish_ioend(ioend, is_sync_kiocb(iocb));
Christoph Hellwigf0973862005-09-05 08:22:52 +10001457 } else {
Lachlan McIlroyba87ea62007-05-08 13:49:46 +10001458 /*
1459 * A direct I/O write ioend starts it's life in unwritten
1460 * state in case they map an unwritten extent. This write
1461 * didn't map an unwritten extent so switch it's completion
1462 * handler.
1463 */
1464 INIT_WORK(&ioend->io_work, xfs_end_bio_written);
David Chinnere927af92007-06-05 16:24:36 +10001465 xfs_finish_ioend(ioend, 0);
Christoph Hellwigf0973862005-09-05 08:22:52 +10001466 }
1467
1468 /*
Nathan Scottc41564b2006-03-29 08:55:14 +10001469 * blockdev_direct_IO can return an error even after the I/O
Christoph Hellwigf0973862005-09-05 08:22:52 +10001470 * completion handler was called. Thus we need to protect
1471 * against double-freeing.
1472 */
1473 iocb->private = NULL;
1474}
1475
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476STATIC ssize_t
Nathan Scotte4c573b2006-03-14 13:54:26 +11001477xfs_vm_direct_IO(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478 int rw,
1479 struct kiocb *iocb,
1480 const struct iovec *iov,
1481 loff_t offset,
1482 unsigned long nr_segs)
1483{
1484 struct file *file = iocb->ki_filp;
1485 struct inode *inode = file->f_mapping->host;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486 xfs_iomap_t iomap;
1487 int maps = 1;
1488 int error;
Christoph Hellwigf0973862005-09-05 08:22:52 +10001489 ssize_t ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490
Christoph Hellwig739bfb22007-08-29 10:58:01 +10001491 error = xfs_bmap(XFS_I(inode), offset, 0,
1492 BMAPI_DEVICE, &iomap, &maps);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493 if (error)
1494 return -error;
1495
Lachlan McIlroy721259b2006-09-07 14:27:05 +10001496 if (rw == WRITE) {
Lachlan McIlroyba87ea62007-05-08 13:49:46 +10001497 iocb->private = xfs_alloc_ioend(inode, IOMAP_UNWRITTEN);
Lachlan McIlroy721259b2006-09-07 14:27:05 +10001498 ret = blockdev_direct_IO_own_locking(rw, iocb, inode,
1499 iomap.iomap_target->bt_bdev,
1500 iov, offset, nr_segs,
1501 xfs_get_blocks_direct,
1502 xfs_end_io_direct);
1503 } else {
Lachlan McIlroyba87ea62007-05-08 13:49:46 +10001504 iocb->private = xfs_alloc_ioend(inode, IOMAP_READ);
Lachlan McIlroy721259b2006-09-07 14:27:05 +10001505 ret = blockdev_direct_IO_no_locking(rw, iocb, inode,
1506 iomap.iomap_target->bt_bdev,
1507 iov, offset, nr_segs,
1508 xfs_get_blocks_direct,
1509 xfs_end_io_direct);
1510 }
Christoph Hellwigf0973862005-09-05 08:22:52 +10001511
Zach Brown8459d862006-12-10 02:21:05 -08001512 if (unlikely(ret != -EIOCBQUEUED && iocb->private))
Christoph Hellwigf0973862005-09-05 08:22:52 +10001513 xfs_destroy_ioend(iocb->private);
1514 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515}
1516
Nathan Scottf51623b2006-03-14 13:26:27 +11001517STATIC int
Nathan Scotte4c573b2006-03-14 13:54:26 +11001518xfs_vm_prepare_write(
Nathan Scottf51623b2006-03-14 13:26:27 +11001519 struct file *file,
1520 struct page *page,
1521 unsigned int from,
1522 unsigned int to)
1523{
Nathan Scottc2536662006-03-29 10:44:40 +10001524 return block_prepare_write(page, from, to, xfs_get_blocks);
Nathan Scottf51623b2006-03-14 13:26:27 +11001525}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001526
1527STATIC sector_t
Nathan Scotte4c573b2006-03-14 13:54:26 +11001528xfs_vm_bmap(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529 struct address_space *mapping,
1530 sector_t block)
1531{
1532 struct inode *inode = (struct inode *)mapping->host;
Christoph Hellwig739bfb22007-08-29 10:58:01 +10001533 struct xfs_inode *ip = XFS_I(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534
Christoph Hellwig739bfb22007-08-29 10:58:01 +10001535 vn_trace_entry(vn_from_inode(inode), __FUNCTION__,
1536 (inst_t *)__return_address);
1537 xfs_rwlock(ip, VRWLOCK_READ);
1538 xfs_flush_pages(ip, (xfs_off_t)0, -1, 0, FI_REMAPF);
1539 xfs_rwunlock(ip, VRWLOCK_READ);
Nathan Scottc2536662006-03-29 10:44:40 +10001540 return generic_block_bmap(mapping, block, xfs_get_blocks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541}
1542
1543STATIC int
Nathan Scotte4c573b2006-03-14 13:54:26 +11001544xfs_vm_readpage(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545 struct file *unused,
1546 struct page *page)
1547{
Nathan Scottc2536662006-03-29 10:44:40 +10001548 return mpage_readpage(page, xfs_get_blocks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549}
1550
1551STATIC int
Nathan Scotte4c573b2006-03-14 13:54:26 +11001552xfs_vm_readpages(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553 struct file *unused,
1554 struct address_space *mapping,
1555 struct list_head *pages,
1556 unsigned nr_pages)
1557{
Nathan Scottc2536662006-03-29 10:44:40 +10001558 return mpage_readpages(mapping, pages, nr_pages, xfs_get_blocks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559}
1560
NeilBrown2ff28e22006-03-26 01:37:18 -08001561STATIC void
Nathan Scott238f4c52006-03-17 17:26:25 +11001562xfs_vm_invalidatepage(
Nathan Scottbcec2b72005-09-02 16:40:17 +10001563 struct page *page,
1564 unsigned long offset)
1565{
1566 xfs_page_trace(XFS_INVALIDPAGE_ENTER,
1567 page->mapping->host, page, offset);
NeilBrown2ff28e22006-03-26 01:37:18 -08001568 block_invalidatepage(page, offset);
Nathan Scottbcec2b72005-09-02 16:40:17 +10001569}
1570
Christoph Hellwigf5e54d62006-06-28 04:26:44 -07001571const struct address_space_operations xfs_address_space_operations = {
Nathan Scotte4c573b2006-03-14 13:54:26 +11001572 .readpage = xfs_vm_readpage,
1573 .readpages = xfs_vm_readpages,
1574 .writepage = xfs_vm_writepage,
Nathan Scott7d4fb402006-06-09 15:27:16 +10001575 .writepages = xfs_vm_writepages,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576 .sync_page = block_sync_page,
Nathan Scott238f4c52006-03-17 17:26:25 +11001577 .releasepage = xfs_vm_releasepage,
1578 .invalidatepage = xfs_vm_invalidatepage,
Nathan Scotte4c573b2006-03-14 13:54:26 +11001579 .prepare_write = xfs_vm_prepare_write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580 .commit_write = generic_commit_write,
Nathan Scotte4c573b2006-03-14 13:54:26 +11001581 .bmap = xfs_vm_bmap,
1582 .direct_IO = xfs_vm_direct_IO,
Christoph Lametere965f962006-02-01 03:05:41 -08001583 .migratepage = buffer_migrate_page,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584};