blob: 9ea33ea6a225747bf3cf82d1221cd362c975eb13 [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_dir.h"
25#include "xfs_dir2.h"
26#include "xfs_trans.h"
27#include "xfs_dmapi.h"
28#include "xfs_mount.h"
29#include "xfs_bmap_btree.h"
30#include "xfs_alloc_btree.h"
31#include "xfs_ialloc_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include "xfs_dir_sf.h"
33#include "xfs_dir2_sf.h"
Nathan Scotta844f452005-11-02 14:38:42 +110034#include "xfs_attr_sf.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include "xfs_dinode.h"
36#include "xfs_inode.h"
Nathan Scotta844f452005-11-02 14:38:42 +110037#include "xfs_alloc.h"
38#include "xfs_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#include "xfs_error.h"
40#include "xfs_rw.h"
41#include "xfs_iomap.h"
42#include <linux/mpage.h>
Christoph Hellwig10ce4442006-01-11 20:48:14 +110043#include <linux/pagevec.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070044#include <linux/writeback.h>
45
46STATIC void xfs_count_page_state(struct page *, int *, int *, int *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070047
48#if defined(XFS_RW_TRACE)
49void
50xfs_page_trace(
51 int tag,
52 struct inode *inode,
53 struct page *page,
54 int mask)
55{
56 xfs_inode_t *ip;
57 bhv_desc_t *bdp;
58 vnode_t *vp = LINVFS_GET_VP(inode);
59 loff_t isize = i_size_read(inode);
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +110060 loff_t offset = page_offset(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -070061 int delalloc = -1, unmapped = -1, unwritten = -1;
62
63 if (page_has_buffers(page))
64 xfs_count_page_state(page, &delalloc, &unmapped, &unwritten);
65
66 bdp = vn_bhv_lookup(VN_BHV_HEAD(vp), &xfs_vnodeops);
67 ip = XFS_BHVTOI(bdp);
68 if (!ip->i_rwtrace)
69 return;
70
71 ktrace_enter(ip->i_rwtrace,
72 (void *)((unsigned long)tag),
73 (void *)ip,
74 (void *)inode,
75 (void *)page,
76 (void *)((unsigned long)mask),
77 (void *)((unsigned long)((ip->i_d.di_size >> 32) & 0xffffffff)),
78 (void *)((unsigned long)(ip->i_d.di_size & 0xffffffff)),
79 (void *)((unsigned long)((isize >> 32) & 0xffffffff)),
80 (void *)((unsigned long)(isize & 0xffffffff)),
81 (void *)((unsigned long)((offset >> 32) & 0xffffffff)),
82 (void *)((unsigned long)(offset & 0xffffffff)),
83 (void *)((unsigned long)delalloc),
84 (void *)((unsigned long)unmapped),
85 (void *)((unsigned long)unwritten),
86 (void *)NULL,
87 (void *)NULL);
88}
89#else
90#define xfs_page_trace(tag, inode, page, mask)
91#endif
92
Christoph Hellwig0829c362005-09-02 16:58:49 +100093/*
94 * Schedule IO completion handling on a xfsdatad if this was
95 * the final hold on this ioend.
96 */
97STATIC void
98xfs_finish_ioend(
99 xfs_ioend_t *ioend)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100{
Christoph Hellwig0829c362005-09-02 16:58:49 +1000101 if (atomic_dec_and_test(&ioend->io_remaining))
102 queue_work(xfsdatad_workqueue, &ioend->io_work);
103}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100105/*
106 * We're now finished for good with this ioend structure.
107 * Update the page state via the associated buffer_heads,
108 * release holds on the inode and bio, and finally free
109 * up memory. Do not use the ioend after this.
110 */
Christoph Hellwig0829c362005-09-02 16:58:49 +1000111STATIC void
112xfs_destroy_ioend(
113 xfs_ioend_t *ioend)
114{
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100115 struct buffer_head *bh, *next;
116
117 for (bh = ioend->io_buffer_head; bh; bh = next) {
118 next = bh->b_private;
119 bh->b_end_io(bh, ioend->io_uptodate);
120 }
121
Christoph Hellwig0829c362005-09-02 16:58:49 +1000122 vn_iowake(ioend->io_vnode);
123 mempool_free(ioend, xfs_ioend_pool);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124}
125
126/*
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100127 * Buffered IO write completion for delayed allocate extents.
128 * TODO: Update ondisk isize now that we know the file data
129 * has been flushed (i.e. the notorious "NULL file" problem).
130 */
131STATIC void
132xfs_end_bio_delalloc(
133 void *data)
134{
135 xfs_ioend_t *ioend = data;
136
137 xfs_destroy_ioend(ioend);
138}
139
140/*
141 * Buffered IO write completion for regular, written extents.
142 */
143STATIC void
144xfs_end_bio_written(
145 void *data)
146{
147 xfs_ioend_t *ioend = data;
148
149 xfs_destroy_ioend(ioend);
150}
151
152/*
153 * IO write completion for unwritten extents.
154 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 * Issue transactions to convert a buffer range from unwritten
Christoph Hellwigf0973862005-09-05 08:22:52 +1000156 * to written extents.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 */
158STATIC void
Christoph Hellwig0829c362005-09-02 16:58:49 +1000159xfs_end_bio_unwritten(
160 void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161{
Christoph Hellwig0829c362005-09-02 16:58:49 +1000162 xfs_ioend_t *ioend = data;
163 vnode_t *vp = ioend->io_vnode;
164 xfs_off_t offset = ioend->io_offset;
165 size_t size = ioend->io_size;
166 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167
Christoph Hellwig0829c362005-09-02 16:58:49 +1000168 if (ioend->io_uptodate)
169 VOP_BMAP(vp, offset, size, BMAPI_UNWRITTEN, NULL, NULL, error);
170 xfs_destroy_ioend(ioend);
171}
172
173/*
174 * Allocate and initialise an IO completion structure.
175 * We need to track unwritten extent write completion here initially.
176 * We'll need to extend this for updating the ondisk inode size later
177 * (vs. incore size).
178 */
179STATIC xfs_ioend_t *
180xfs_alloc_ioend(
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100181 struct inode *inode,
182 unsigned int type)
Christoph Hellwig0829c362005-09-02 16:58:49 +1000183{
184 xfs_ioend_t *ioend;
185
186 ioend = mempool_alloc(xfs_ioend_pool, GFP_NOFS);
187
188 /*
189 * Set the count to 1 initially, which will prevent an I/O
190 * completion callback from happening before we have started
191 * all the I/O from calling the completion routine too early.
192 */
193 atomic_set(&ioend->io_remaining, 1);
194 ioend->io_uptodate = 1; /* cleared if any I/O fails */
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100195 ioend->io_list = NULL;
196 ioend->io_type = type;
Christoph Hellwig0829c362005-09-02 16:58:49 +1000197 ioend->io_vnode = LINVFS_GET_VP(inode);
Christoph Hellwigc1a073b2005-09-05 08:23:35 +1000198 ioend->io_buffer_head = NULL;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100199 ioend->io_buffer_tail = NULL;
Christoph Hellwig0829c362005-09-02 16:58:49 +1000200 atomic_inc(&ioend->io_vnode->v_iocount);
201 ioend->io_offset = 0;
202 ioend->io_size = 0;
203
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100204 if (type == IOMAP_UNWRITTEN)
205 INIT_WORK(&ioend->io_work, xfs_end_bio_unwritten, ioend);
206 else if (type == IOMAP_DELAY)
207 INIT_WORK(&ioend->io_work, xfs_end_bio_delalloc, ioend);
208 else
209 INIT_WORK(&ioend->io_work, xfs_end_bio_written, ioend);
Christoph Hellwig0829c362005-09-02 16:58:49 +1000210
211 return ioend;
212}
213
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214STATIC int
215xfs_map_blocks(
216 struct inode *inode,
217 loff_t offset,
218 ssize_t count,
219 xfs_iomap_t *mapp,
220 int flags)
221{
222 vnode_t *vp = LINVFS_GET_VP(inode);
223 int error, nmaps = 1;
224
225 VOP_BMAP(vp, offset, count, flags, mapp, &nmaps, error);
226 if (!error && (flags & (BMAPI_WRITE|BMAPI_ALLOCATE)))
227 VMODIFY(vp);
228 return -error;
229}
230
Christoph Hellwig1defeac2006-01-11 20:48:33 +1100231STATIC inline int
232xfs_iomap_valid(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 xfs_iomap_t *iomapp,
Christoph Hellwig1defeac2006-01-11 20:48:33 +1100234 loff_t offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235{
Christoph Hellwig1defeac2006-01-11 20:48:33 +1100236 return offset >= iomapp->iomap_offset &&
237 offset < iomapp->iomap_offset + iomapp->iomap_bsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238}
239
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100240/*
241 * BIO completion handler for buffered IO.
242 */
243STATIC int
244xfs_end_bio(
245 struct bio *bio,
246 unsigned int bytes_done,
247 int error)
248{
249 xfs_ioend_t *ioend = bio->bi_private;
250
251 if (bio->bi_size)
252 return 1;
253
254 ASSERT(ioend);
255 ASSERT(atomic_read(&bio->bi_cnt) >= 1);
256
257 /* Toss bio and pass work off to an xfsdatad thread */
258 if (!test_bit(BIO_UPTODATE, &bio->bi_flags))
259 ioend->io_uptodate = 0;
260 bio->bi_private = NULL;
261 bio->bi_end_io = NULL;
262
263 bio_put(bio);
264 xfs_finish_ioend(ioend);
265 return 0;
266}
267
268STATIC void
269xfs_submit_ioend_bio(
270 xfs_ioend_t *ioend,
271 struct bio *bio)
272{
273 atomic_inc(&ioend->io_remaining);
274
275 bio->bi_private = ioend;
276 bio->bi_end_io = xfs_end_bio;
277
278 submit_bio(WRITE, bio);
279 ASSERT(!bio_flagged(bio, BIO_EOPNOTSUPP));
280 bio_put(bio);
281}
282
283STATIC struct bio *
284xfs_alloc_ioend_bio(
285 struct buffer_head *bh)
286{
287 struct bio *bio;
288 int nvecs = bio_get_nr_vecs(bh->b_bdev);
289
290 do {
291 bio = bio_alloc(GFP_NOIO, nvecs);
292 nvecs >>= 1;
293 } while (!bio);
294
295 ASSERT(bio->bi_private == NULL);
296 bio->bi_sector = bh->b_blocknr * (bh->b_size >> 9);
297 bio->bi_bdev = bh->b_bdev;
298 bio_get(bio);
299 return bio;
300}
301
302STATIC void
303xfs_start_buffer_writeback(
304 struct buffer_head *bh)
305{
306 ASSERT(buffer_mapped(bh));
307 ASSERT(buffer_locked(bh));
308 ASSERT(!buffer_delay(bh));
309 ASSERT(!buffer_unwritten(bh));
310
311 mark_buffer_async_write(bh);
312 set_buffer_uptodate(bh);
313 clear_buffer_dirty(bh);
314}
315
316STATIC void
317xfs_start_page_writeback(
318 struct page *page,
319 struct writeback_control *wbc,
320 int clear_dirty,
321 int buffers)
322{
323 ASSERT(PageLocked(page));
324 ASSERT(!PageWriteback(page));
325 set_page_writeback(page);
326 if (clear_dirty)
327 clear_page_dirty(page);
328 unlock_page(page);
329 if (!buffers) {
330 end_page_writeback(page);
331 wbc->pages_skipped++; /* We didn't write this page */
332 }
333}
334
335static inline int bio_add_buffer(struct bio *bio, struct buffer_head *bh)
336{
337 return bio_add_page(bio, bh->b_page, bh->b_size, bh_offset(bh));
338}
339
340/*
341 * Submit all of the bios for all of the ioends we have saved up,
342 * covering the initial writepage page and also any probed pages.
343 */
344STATIC void
345xfs_submit_ioend(
346 xfs_ioend_t *ioend)
347{
348 xfs_ioend_t *next;
349 struct buffer_head *bh;
350 struct bio *bio;
351 sector_t lastblock = 0;
352
353 do {
354 next = ioend->io_list;
355 bio = NULL;
356
357 for (bh = ioend->io_buffer_head; bh; bh = bh->b_private) {
358 xfs_start_buffer_writeback(bh);
359
360 if (!bio) {
361 retry:
362 bio = xfs_alloc_ioend_bio(bh);
363 } else if (bh->b_blocknr != lastblock + 1) {
364 xfs_submit_ioend_bio(ioend, bio);
365 goto retry;
366 }
367
368 if (bio_add_buffer(bio, bh) != bh->b_size) {
369 xfs_submit_ioend_bio(ioend, bio);
370 goto retry;
371 }
372
373 lastblock = bh->b_blocknr;
374 }
375 if (bio)
376 xfs_submit_ioend_bio(ioend, bio);
377 xfs_finish_ioend(ioend);
378 } while ((ioend = next) != NULL);
379}
380
381/*
382 * Cancel submission of all buffer_heads so far in this endio.
383 * Toss the endio too. Only ever called for the initial page
384 * in a writepage request, so only ever one page.
385 */
386STATIC void
387xfs_cancel_ioend(
388 xfs_ioend_t *ioend)
389{
390 xfs_ioend_t *next;
391 struct buffer_head *bh, *next_bh;
392
393 do {
394 next = ioend->io_list;
395 bh = ioend->io_buffer_head;
396 do {
397 next_bh = bh->b_private;
398 clear_buffer_async_write(bh);
399 unlock_buffer(bh);
400 } while ((bh = next_bh) != NULL);
401
402 vn_iowake(ioend->io_vnode);
403 mempool_free(ioend, xfs_ioend_pool);
404 } while ((ioend = next) != NULL);
405}
406
407/*
408 * Test to see if we've been building up a completion structure for
409 * earlier buffers -- if so, we try to append to this ioend if we
410 * can, otherwise we finish off any current ioend and start another.
411 * Return true if we've finished the given ioend.
412 */
413STATIC void
414xfs_add_to_ioend(
415 struct inode *inode,
416 struct buffer_head *bh,
Christoph Hellwig7336cea2006-01-11 20:49:16 +1100417 xfs_off_t offset,
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100418 unsigned int type,
419 xfs_ioend_t **result,
420 int need_ioend)
421{
422 xfs_ioend_t *ioend = *result;
423
424 if (!ioend || need_ioend || type != ioend->io_type) {
425 xfs_ioend_t *previous = *result;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100426
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100427 ioend = xfs_alloc_ioend(inode, type);
428 ioend->io_offset = offset;
429 ioend->io_buffer_head = bh;
430 ioend->io_buffer_tail = bh;
431 if (previous)
432 previous->io_list = ioend;
433 *result = ioend;
434 } else {
435 ioend->io_buffer_tail->b_private = bh;
436 ioend->io_buffer_tail = bh;
437 }
438
439 bh->b_private = NULL;
440 ioend->io_size += bh->b_size;
441}
442
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443STATIC void
444xfs_map_at_offset(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 struct buffer_head *bh,
Christoph Hellwig1defeac2006-01-11 20:48:33 +1100446 loff_t offset,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 int block_bits,
Christoph Hellwig1defeac2006-01-11 20:48:33 +1100448 xfs_iomap_t *iomapp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449{
450 xfs_daddr_t bn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 int sector_shift;
452
453 ASSERT(!(iomapp->iomap_flags & IOMAP_HOLE));
454 ASSERT(!(iomapp->iomap_flags & IOMAP_DELAY));
455 ASSERT(iomapp->iomap_bn != IOMAP_DADDR_NULL);
456
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 sector_shift = block_bits - BBSHIFT;
Christoph Hellwig1defeac2006-01-11 20:48:33 +1100458 bn = (iomapp->iomap_bn >> sector_shift) +
459 ((offset - iomapp->iomap_offset) >> block_bits);
460
461 ASSERT(bn || (iomapp->iomap_flags & IOMAP_REALTIME));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 ASSERT((bn << sector_shift) >= iomapp->iomap_bn);
463
464 lock_buffer(bh);
465 bh->b_blocknr = bn;
Nathan Scottce8e9222006-01-11 15:39:08 +1100466 bh->b_bdev = iomapp->iomap_target->bt_bdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 set_buffer_mapped(bh);
468 clear_buffer_delay(bh);
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100469 clear_buffer_unwritten(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470}
471
472/*
Christoph Hellwig6c4fe192006-01-11 20:49:28 +1100473 * Look for a page at index that is suitable for clustering.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 */
475STATIC unsigned int
Christoph Hellwig6c4fe192006-01-11 20:49:28 +1100476xfs_probe_page(
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100477 struct page *page,
Christoph Hellwig6c4fe192006-01-11 20:49:28 +1100478 unsigned int pg_offset,
479 int mapped)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 int ret = 0;
482
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 if (PageWriteback(page))
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100484 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485
486 if (page->mapping && PageDirty(page)) {
487 if (page_has_buffers(page)) {
488 struct buffer_head *bh, *head;
489
490 bh = head = page_buffers(page);
491 do {
Christoph Hellwig6c4fe192006-01-11 20:49:28 +1100492 if (!buffer_uptodate(bh))
493 break;
494 if (mapped != buffer_mapped(bh))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 break;
496 ret += bh->b_size;
497 if (ret >= pg_offset)
498 break;
499 } while ((bh = bh->b_this_page) != head);
500 } else
Christoph Hellwig6c4fe192006-01-11 20:49:28 +1100501 ret = mapped ? 0 : PAGE_CACHE_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 }
503
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 return ret;
505}
506
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100507STATIC size_t
Christoph Hellwig6c4fe192006-01-11 20:49:28 +1100508xfs_probe_cluster(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 struct inode *inode,
510 struct page *startpage,
511 struct buffer_head *bh,
Christoph Hellwig6c4fe192006-01-11 20:49:28 +1100512 struct buffer_head *head,
513 int mapped)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514{
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100515 struct pagevec pvec;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 pgoff_t tindex, tlast, tloff;
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100517 size_t total = 0;
518 int done = 0, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519
520 /* First sum forwards in this page */
521 do {
Christoph Hellwig6c4fe192006-01-11 20:49:28 +1100522 if (mapped != buffer_mapped(bh))
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100523 return total;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 total += bh->b_size;
525 } while ((bh = bh->b_this_page) != head);
526
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100527 /* if we reached the end of the page, sum forwards in following pages */
528 tlast = i_size_read(inode) >> PAGE_CACHE_SHIFT;
529 tindex = startpage->index + 1;
530
531 /* Prune this back to avoid pathological behavior */
532 tloff = min(tlast, startpage->index + 64);
533
534 pagevec_init(&pvec, 0);
535 while (!done && tindex <= tloff) {
536 unsigned len = min_t(pgoff_t, PAGEVEC_SIZE, tlast - tindex + 1);
537
538 if (!pagevec_lookup(&pvec, inode->i_mapping, tindex, len))
539 break;
540
541 for (i = 0; i < pagevec_count(&pvec); i++) {
542 struct page *page = pvec.pages[i];
543 size_t pg_offset, len = 0;
544
545 if (tindex == tlast) {
546 pg_offset =
547 i_size_read(inode) & (PAGE_CACHE_SIZE - 1);
Christoph Hellwig1defeac2006-01-11 20:48:33 +1100548 if (!pg_offset) {
549 done = 1;
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100550 break;
Christoph Hellwig1defeac2006-01-11 20:48:33 +1100551 }
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100552 } else
553 pg_offset = PAGE_CACHE_SIZE;
554
555 if (page->index == tindex && !TestSetPageLocked(page)) {
Christoph Hellwig6c4fe192006-01-11 20:49:28 +1100556 len = xfs_probe_page(page, pg_offset, mapped);
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100557 unlock_page(page);
558 }
559
560 if (!len) {
561 done = 1;
562 break;
563 }
564
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 total += len;
Christoph Hellwig1defeac2006-01-11 20:48:33 +1100566 tindex++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 }
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100568
569 pagevec_release(&pvec);
570 cond_resched();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 }
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100572
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 return total;
574}
575
576/*
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100577 * Test if a given page is suitable for writing as part of an unwritten
578 * or delayed allocate extent.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 */
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100580STATIC int
581xfs_is_delayed_page(
582 struct page *page,
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100583 unsigned int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 if (PageWriteback(page))
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100586 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587
588 if (page->mapping && page_has_buffers(page)) {
589 struct buffer_head *bh, *head;
590 int acceptable = 0;
591
592 bh = head = page_buffers(page);
593 do {
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100594 if (buffer_unwritten(bh))
595 acceptable = (type == IOMAP_UNWRITTEN);
596 else if (buffer_delay(bh))
597 acceptable = (type == IOMAP_DELAY);
Christoph Hellwig6c4fe192006-01-11 20:49:28 +1100598 else if (buffer_mapped(bh))
599 acceptable = (type == 0);
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100600 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 } while ((bh = bh->b_this_page) != head);
603
604 if (acceptable)
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100605 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 }
607
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100608 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609}
610
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611/*
612 * Allocate & map buffers for page given the extent map. Write it out.
613 * except for the original page of a writepage, this is called on
614 * delalloc/unwritten pages only, for the original page it is possible
615 * that the page has no mapping at all.
616 */
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100617STATIC int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618xfs_convert_page(
619 struct inode *inode,
620 struct page *page,
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100621 loff_t tindex,
Christoph Hellwig1defeac2006-01-11 20:48:33 +1100622 xfs_iomap_t *mp,
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100623 xfs_ioend_t **ioendp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 struct writeback_control *wbc,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 int startio,
626 int all_bh)
627{
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100628 struct buffer_head *bh, *head;
Christoph Hellwig9260dc62006-01-11 20:48:47 +1100629 xfs_off_t end_offset;
630 unsigned long p_offset;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100631 unsigned int type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 int bbits = inode->i_blkbits;
Nathan Scott24e17b52005-05-05 13:33:20 -0700633 int len, page_dirty;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100634 int count = 0, done = 0, uptodate = 1;
Christoph Hellwig9260dc62006-01-11 20:48:47 +1100635 xfs_off_t offset = page_offset(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100637 if (page->index != tindex)
638 goto fail;
639 if (TestSetPageLocked(page))
640 goto fail;
641 if (PageWriteback(page))
642 goto fail_unlock_page;
643 if (page->mapping != inode->i_mapping)
644 goto fail_unlock_page;
645 if (!xfs_is_delayed_page(page, (*ioendp)->io_type))
646 goto fail_unlock_page;
647
Nathan Scott24e17b52005-05-05 13:33:20 -0700648 /*
649 * page_dirty is initially a count of buffers on the page before
650 * EOF and is decrememted as we move each into a cleanable state.
Christoph Hellwig9260dc62006-01-11 20:48:47 +1100651 *
652 * Derivation:
653 *
654 * End offset is the highest offset that this page should represent.
655 * If we are on the last page, (end_offset & (PAGE_CACHE_SIZE - 1))
656 * will evaluate non-zero and be less than PAGE_CACHE_SIZE and
657 * hence give us the correct page_dirty count. On any other page,
658 * it will be zero and in that case we need page_dirty to be the
659 * count of buffers on the page.
Nathan Scott24e17b52005-05-05 13:33:20 -0700660 */
Christoph Hellwig9260dc62006-01-11 20:48:47 +1100661 end_offset = min_t(unsigned long long,
662 (xfs_off_t)(page->index + 1) << PAGE_CACHE_SHIFT,
663 i_size_read(inode));
664
Nathan Scott24e17b52005-05-05 13:33:20 -0700665 len = 1 << inode->i_blkbits;
Christoph Hellwig9260dc62006-01-11 20:48:47 +1100666 p_offset = min_t(unsigned long, end_offset & (PAGE_CACHE_SIZE - 1),
667 PAGE_CACHE_SIZE);
668 p_offset = p_offset ? roundup(p_offset, len) : PAGE_CACHE_SIZE;
669 page_dirty = p_offset / len;
Nathan Scott24e17b52005-05-05 13:33:20 -0700670
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 bh = head = page_buffers(page);
672 do {
Christoph Hellwig9260dc62006-01-11 20:48:47 +1100673 if (offset >= end_offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 break;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100675 if (!buffer_uptodate(bh))
676 uptodate = 0;
677 if (!(PageUptodate(page) || buffer_uptodate(bh))) {
678 done = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679 continue;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100680 }
681
Christoph Hellwig9260dc62006-01-11 20:48:47 +1100682 if (buffer_unwritten(bh) || buffer_delay(bh)) {
683 if (buffer_unwritten(bh))
684 type = IOMAP_UNWRITTEN;
685 else
686 type = IOMAP_DELAY;
687
688 if (!xfs_iomap_valid(mp, offset)) {
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100689 done = 1;
Christoph Hellwig9260dc62006-01-11 20:48:47 +1100690 continue;
691 }
692
693 ASSERT(!(mp->iomap_flags & IOMAP_HOLE));
694 ASSERT(!(mp->iomap_flags & IOMAP_DELAY));
695
696 xfs_map_at_offset(bh, offset, bbits, mp);
697 if (startio) {
Christoph Hellwig7336cea2006-01-11 20:49:16 +1100698 xfs_add_to_ioend(inode, bh, offset,
Christoph Hellwig9260dc62006-01-11 20:48:47 +1100699 type, ioendp, done);
700 } else {
701 set_buffer_dirty(bh);
702 unlock_buffer(bh);
703 mark_buffer_dirty(bh);
704 }
705 page_dirty--;
706 count++;
707 } else {
708 type = 0;
709 if (buffer_mapped(bh) && all_bh && startio) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 lock_buffer(bh);
Christoph Hellwig7336cea2006-01-11 20:49:16 +1100711 xfs_add_to_ioend(inode, bh, offset,
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100712 type, ioendp, done);
713 count++;
Nathan Scott24e17b52005-05-05 13:33:20 -0700714 page_dirty--;
Christoph Hellwig9260dc62006-01-11 20:48:47 +1100715 } else {
716 done = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 }
Christoph Hellwig7336cea2006-01-11 20:49:16 +1100719 } while (offset += len, (bh = bh->b_this_page) != head);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100721 if (uptodate && bh == head)
722 SetPageUptodate(page);
723
724 if (startio) {
725 if (count)
726 wbc->nr_to_write--;
727 xfs_start_page_writeback(page, wbc, !page_dirty, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 }
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100729
730 return done;
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100731 fail_unlock_page:
732 unlock_page(page);
733 fail:
734 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735}
736
737/*
738 * Convert & write out a cluster of pages in the same extent as defined
739 * by mp and following the start page.
740 */
741STATIC void
742xfs_cluster_write(
743 struct inode *inode,
744 pgoff_t tindex,
745 xfs_iomap_t *iomapp,
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100746 xfs_ioend_t **ioendp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 struct writeback_control *wbc,
748 int startio,
749 int all_bh,
750 pgoff_t tlast)
751{
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100752 struct pagevec pvec;
753 int done = 0, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100755 pagevec_init(&pvec, 0);
756 while (!done && tindex <= tlast) {
757 unsigned len = min_t(pgoff_t, PAGEVEC_SIZE, tlast - tindex + 1);
758
759 if (!pagevec_lookup(&pvec, inode->i_mapping, tindex, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 break;
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100761
762 for (i = 0; i < pagevec_count(&pvec); i++) {
763 done = xfs_convert_page(inode, pvec.pages[i], tindex++,
764 iomapp, ioendp, wbc, startio, all_bh);
765 if (done)
766 break;
767 }
768
769 pagevec_release(&pvec);
770 cond_resched();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 }
772}
773
774/*
775 * Calling this without startio set means we are being asked to make a dirty
776 * page ready for freeing it's buffers. When called with startio set then
777 * we are coming from writepage.
778 *
779 * When called with startio set it is important that we write the WHOLE
780 * page if possible.
781 * The bh->b_state's cannot know if any of the blocks or which block for
782 * that matter are dirty due to mmap writes, and therefore bh uptodate is
783 * only vaild if the page itself isn't completely uptodate. Some layers
784 * may clear the page dirty flag prior to calling write page, under the
785 * assumption the entire page will be written out; by not writing out the
786 * whole page the page can be reused before all valid dirty data is
787 * written out. Note: in the case of a page that has been dirty'd by
788 * mapwrite and but partially setup by block_prepare_write the
789 * bh->b_states's will not agree and only ones setup by BPW/BCW will have
790 * valid state, thus the whole page must be written out thing.
791 */
792
793STATIC int
794xfs_page_state_convert(
795 struct inode *inode,
796 struct page *page,
797 struct writeback_control *wbc,
798 int startio,
799 int unmapped) /* also implies page uptodate */
800{
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100801 struct buffer_head *bh, *head;
Christoph Hellwig1defeac2006-01-11 20:48:33 +1100802 xfs_iomap_t iomap;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100803 xfs_ioend_t *ioend = NULL, *iohead = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 loff_t offset;
805 unsigned long p_offset = 0;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100806 unsigned int type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 __uint64_t end_offset;
808 pgoff_t end_index, last_index, tlast;
Christoph Hellwigd5cb48a2006-01-11 20:49:02 +1100809 ssize_t size, len;
810 int flags, err, iomap_valid = 0, uptodate = 1;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100811 int page_dirty, count = 0, trylock_flag = 0;
Christoph Hellwig6c4fe192006-01-11 20:49:28 +1100812 int all_bh = unmapped;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813
Daniel Moore3ba08152005-05-05 13:31:34 -0700814 /* wait for other IO threads? */
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100815 if (startio && wbc->sync_mode != WB_SYNC_NONE)
816 trylock_flag |= BMAPI_TRYLOCK;
Daniel Moore3ba08152005-05-05 13:31:34 -0700817
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818 /* Is this page beyond the end of the file? */
819 offset = i_size_read(inode);
820 end_index = offset >> PAGE_CACHE_SHIFT;
821 last_index = (offset - 1) >> PAGE_CACHE_SHIFT;
822 if (page->index >= end_index) {
823 if ((page->index >= end_index + 1) ||
824 !(i_size_read(inode) & (PAGE_CACHE_SIZE - 1))) {
Nathan Scott19d5bcf2005-11-02 15:14:09 +1100825 if (startio)
826 unlock_page(page);
827 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 }
829 }
830
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 /*
Nathan Scott24e17b52005-05-05 13:33:20 -0700832 * page_dirty is initially a count of buffers on the page before
833 * EOF and is decrememted as we move each into a cleanable state.
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100834 *
835 * Derivation:
836 *
837 * End offset is the highest offset that this page should represent.
838 * If we are on the last page, (end_offset & (PAGE_CACHE_SIZE - 1))
839 * will evaluate non-zero and be less than PAGE_CACHE_SIZE and
840 * hence give us the correct page_dirty count. On any other page,
841 * it will be zero and in that case we need page_dirty to be the
842 * count of buffers on the page.
843 */
844 end_offset = min_t(unsigned long long,
845 (xfs_off_t)(page->index + 1) << PAGE_CACHE_SHIFT, offset);
Nathan Scott24e17b52005-05-05 13:33:20 -0700846 len = 1 << inode->i_blkbits;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100847 p_offset = min_t(unsigned long, end_offset & (PAGE_CACHE_SIZE - 1),
848 PAGE_CACHE_SIZE);
849 p_offset = p_offset ? roundup(p_offset, len) : PAGE_CACHE_SIZE;
Nathan Scott24e17b52005-05-05 13:33:20 -0700850 page_dirty = p_offset / len;
851
Nathan Scott24e17b52005-05-05 13:33:20 -0700852 bh = head = page_buffers(page);
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100853 offset = page_offset(page);
Christoph Hellwig6c4fe192006-01-11 20:49:28 +1100854 flags = -1;
855 type = 0;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100856
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100857 /* TODO: cleanup count and page_dirty */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858
859 do {
860 if (offset >= end_offset)
861 break;
862 if (!buffer_uptodate(bh))
863 uptodate = 0;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100864 if (!(PageUptodate(page) || buffer_uptodate(bh)) && !startio) {
Christoph Hellwig1defeac2006-01-11 20:48:33 +1100865 /*
866 * the iomap is actually still valid, but the ioend
867 * isn't. shouldn't happen too often.
868 */
869 iomap_valid = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 continue;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100871 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872
Christoph Hellwig1defeac2006-01-11 20:48:33 +1100873 if (iomap_valid)
874 iomap_valid = xfs_iomap_valid(&iomap, offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875
876 /*
877 * First case, map an unwritten extent and prepare for
878 * extent state conversion transaction on completion.
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100879 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880 * Second case, allocate space for a delalloc buffer.
881 * We can return EAGAIN here in the release page case.
Christoph Hellwigd5cb48a2006-01-11 20:49:02 +1100882 *
883 * Third case, an unmapped buffer was found, and we are
884 * in a path where we need to write the whole page out.
885 */
886 if (buffer_unwritten(bh) || buffer_delay(bh) ||
887 ((buffer_uptodate(bh) || PageUptodate(page)) &&
888 !buffer_mapped(bh) && (unmapped || startio))) {
Christoph Hellwig6c4fe192006-01-11 20:49:28 +1100889 /*
890 * Make sure we don't use a read-only iomap
891 */
892 if (flags == BMAPI_READ)
893 iomap_valid = 0;
894
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100895 if (buffer_unwritten(bh)) {
896 type = IOMAP_UNWRITTEN;
897 flags = BMAPI_WRITE|BMAPI_IGNSTATE;
Christoph Hellwigd5cb48a2006-01-11 20:49:02 +1100898 } else if (buffer_delay(bh)) {
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100899 type = IOMAP_DELAY;
900 flags = BMAPI_ALLOCATE;
901 if (!startio)
902 flags |= trylock_flag;
Christoph Hellwigd5cb48a2006-01-11 20:49:02 +1100903 } else {
Christoph Hellwig6c4fe192006-01-11 20:49:28 +1100904 type = IOMAP_NEW;
Christoph Hellwigd5cb48a2006-01-11 20:49:02 +1100905 flags = BMAPI_WRITE|BMAPI_MMAP;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100906 }
907
Christoph Hellwig1defeac2006-01-11 20:48:33 +1100908 if (!iomap_valid) {
Christoph Hellwig6c4fe192006-01-11 20:49:28 +1100909 if (type == IOMAP_NEW) {
910 size = xfs_probe_cluster(inode,
911 page, bh, head, 0);
Christoph Hellwigd5cb48a2006-01-11 20:49:02 +1100912 } else {
913 size = len;
914 }
915
916 err = xfs_map_blocks(inode, offset, size,
917 &iomap, flags);
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100918 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919 goto error;
Christoph Hellwig1defeac2006-01-11 20:48:33 +1100920 iomap_valid = xfs_iomap_valid(&iomap, offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921 }
Christoph Hellwig1defeac2006-01-11 20:48:33 +1100922 if (iomap_valid) {
923 xfs_map_at_offset(bh, offset,
924 inode->i_blkbits, &iomap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925 if (startio) {
Christoph Hellwig7336cea2006-01-11 20:49:16 +1100926 xfs_add_to_ioend(inode, bh, offset,
Christoph Hellwig1defeac2006-01-11 20:48:33 +1100927 type, &ioend,
928 !iomap_valid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929 } else {
930 set_buffer_dirty(bh);
931 unlock_buffer(bh);
932 mark_buffer_dirty(bh);
933 }
934 page_dirty--;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100935 count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 }
Christoph Hellwigd5cb48a2006-01-11 20:49:02 +1100937 } else if (buffer_uptodate(bh) && startio) {
Christoph Hellwig6c4fe192006-01-11 20:49:28 +1100938 /*
939 * we got here because the buffer is already mapped.
940 * That means it must already have extents allocated
941 * underneath it. Map the extent by reading it.
942 */
943 if (!iomap_valid || type != 0) {
944 flags = BMAPI_READ;
945 size = xfs_probe_cluster(inode, page, bh,
946 head, 1);
947 err = xfs_map_blocks(inode, offset, size,
948 &iomap, flags);
949 if (err)
950 goto error;
951 iomap_valid = xfs_iomap_valid(&iomap, offset);
952 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953
Christoph Hellwig6c4fe192006-01-11 20:49:28 +1100954 type = 0;
Christoph Hellwigd5cb48a2006-01-11 20:49:02 +1100955 if (!test_and_set_bit(BH_Lock, &bh->b_state)) {
956 ASSERT(buffer_mapped(bh));
Christoph Hellwig6c4fe192006-01-11 20:49:28 +1100957 if (iomap_valid)
958 all_bh = 1;
Christoph Hellwig7336cea2006-01-11 20:49:16 +1100959 xfs_add_to_ioend(inode, bh, offset, type,
Christoph Hellwigd5cb48a2006-01-11 20:49:02 +1100960 &ioend, !iomap_valid);
961 page_dirty--;
962 count++;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100963 } else {
Christoph Hellwig1defeac2006-01-11 20:48:33 +1100964 iomap_valid = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965 }
Christoph Hellwigd5cb48a2006-01-11 20:49:02 +1100966 } else if ((buffer_uptodate(bh) || PageUptodate(page)) &&
967 (unmapped || startio)) {
968 iomap_valid = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969 }
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100970
971 if (!iohead)
972 iohead = ioend;
973
974 } while (offset += len, ((bh = bh->b_this_page) != head));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975
976 if (uptodate && bh == head)
977 SetPageUptodate(page);
978
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100979 if (startio)
980 xfs_start_page_writeback(page, wbc, 1, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981
Christoph Hellwig1defeac2006-01-11 20:48:33 +1100982 if (ioend && iomap_valid) {
983 offset = (iomap.iomap_offset + iomap.iomap_bsize - 1) >>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984 PAGE_CACHE_SHIFT;
Nathan Scott775bf6c2005-05-05 13:33:01 -0700985 tlast = min_t(pgoff_t, offset, last_index);
Christoph Hellwig1defeac2006-01-11 20:48:33 +1100986 xfs_cluster_write(inode, page->index + 1, &iomap, &ioend,
Christoph Hellwig6c4fe192006-01-11 20:49:28 +1100987 wbc, startio, all_bh, tlast);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988 }
989
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100990 if (iohead)
991 xfs_submit_ioend(iohead);
992
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993 return page_dirty;
994
995error:
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100996 if (iohead)
997 xfs_cancel_ioend(iohead);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998
999 /*
1000 * If it's delalloc and we have nowhere to put it,
1001 * throw it away, unless the lower layers told
1002 * us to try again.
1003 */
1004 if (err != -EAGAIN) {
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +11001005 if (!unmapped)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006 block_invalidatepage(page, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007 ClearPageUptodate(page);
1008 }
1009 return err;
1010}
1011
1012STATIC int
1013__linvfs_get_block(
1014 struct inode *inode,
1015 sector_t iblock,
1016 unsigned long blocks,
1017 struct buffer_head *bh_result,
1018 int create,
1019 int direct,
1020 bmapi_flags_t flags)
1021{
1022 vnode_t *vp = LINVFS_GET_VP(inode);
1023 xfs_iomap_t iomap;
Nathan Scottfdc7ed72005-11-02 15:13:13 +11001024 xfs_off_t offset;
1025 ssize_t size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026 int retpbbm = 1;
1027 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028
Nathan Scottfdc7ed72005-11-02 15:13:13 +11001029 offset = (xfs_off_t)iblock << inode->i_blkbits;
Nathan Scotta4656392005-11-25 16:41:57 +11001030 if (blocks)
1031 size = (ssize_t) min_t(xfs_off_t, LONG_MAX,
1032 (xfs_off_t)blocks << inode->i_blkbits);
1033 else
1034 size = 1 << inode->i_blkbits;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035
1036 VOP_BMAP(vp, offset, size,
1037 create ? flags : BMAPI_READ, &iomap, &retpbbm, error);
1038 if (error)
1039 return -error;
1040
1041 if (retpbbm == 0)
1042 return 0;
1043
1044 if (iomap.iomap_bn != IOMAP_DADDR_NULL) {
Nathan Scottfdc7ed72005-11-02 15:13:13 +11001045 xfs_daddr_t bn;
1046 xfs_off_t delta;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047
1048 /* For unwritten extents do not report a disk address on
1049 * the read case (treat as if we're reading into a hole).
1050 */
1051 if (create || !(iomap.iomap_flags & IOMAP_UNWRITTEN)) {
1052 delta = offset - iomap.iomap_offset;
1053 delta >>= inode->i_blkbits;
1054
1055 bn = iomap.iomap_bn >> (inode->i_blkbits - BBSHIFT);
1056 bn += delta;
1057 BUG_ON(!bn && !(iomap.iomap_flags & IOMAP_REALTIME));
1058 bh_result->b_blocknr = bn;
1059 set_buffer_mapped(bh_result);
1060 }
1061 if (create && (iomap.iomap_flags & IOMAP_UNWRITTEN)) {
1062 if (direct)
1063 bh_result->b_private = inode;
1064 set_buffer_unwritten(bh_result);
1065 set_buffer_delay(bh_result);
1066 }
1067 }
1068
1069 /* If this is a realtime file, data might be on a new device */
Nathan Scottce8e9222006-01-11 15:39:08 +11001070 bh_result->b_bdev = iomap.iomap_target->bt_bdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071
1072 /* If we previously allocated a block out beyond eof and
1073 * we are now coming back to use it then we will need to
1074 * flag it as new even if it has a disk address.
1075 */
1076 if (create &&
1077 ((!buffer_mapped(bh_result) && !buffer_uptodate(bh_result)) ||
Nathan Scottfdc7ed72005-11-02 15:13:13 +11001078 (offset >= i_size_read(inode)) || (iomap.iomap_flags & IOMAP_NEW)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079 set_buffer_new(bh_result);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080
1081 if (iomap.iomap_flags & IOMAP_DELAY) {
1082 BUG_ON(direct);
1083 if (create) {
1084 set_buffer_uptodate(bh_result);
1085 set_buffer_mapped(bh_result);
1086 set_buffer_delay(bh_result);
1087 }
1088 }
1089
1090 if (blocks) {
Nathan Scottfdc7ed72005-11-02 15:13:13 +11001091 ASSERT(iomap.iomap_bsize - iomap.iomap_delta > 0);
1092 offset = min_t(xfs_off_t,
1093 iomap.iomap_bsize - iomap.iomap_delta,
Nathan Scotta4656392005-11-25 16:41:57 +11001094 (xfs_off_t)blocks << inode->i_blkbits);
Nathan Scottfdc7ed72005-11-02 15:13:13 +11001095 bh_result->b_size = (u32) min_t(xfs_off_t, UINT_MAX, offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096 }
1097
1098 return 0;
1099}
1100
1101int
1102linvfs_get_block(
1103 struct inode *inode,
1104 sector_t iblock,
1105 struct buffer_head *bh_result,
1106 int create)
1107{
1108 return __linvfs_get_block(inode, iblock, 0, bh_result,
1109 create, 0, BMAPI_WRITE);
1110}
1111
1112STATIC int
1113linvfs_get_blocks_direct(
1114 struct inode *inode,
1115 sector_t iblock,
1116 unsigned long max_blocks,
1117 struct buffer_head *bh_result,
1118 int create)
1119{
1120 return __linvfs_get_block(inode, iblock, max_blocks, bh_result,
1121 create, 1, BMAPI_WRITE|BMAPI_DIRECT);
1122}
1123
Christoph Hellwigf0973862005-09-05 08:22:52 +10001124STATIC void
1125linvfs_end_io_direct(
1126 struct kiocb *iocb,
1127 loff_t offset,
1128 ssize_t size,
1129 void *private)
1130{
1131 xfs_ioend_t *ioend = iocb->private;
1132
1133 /*
1134 * Non-NULL private data means we need to issue a transaction to
1135 * convert a range from unwritten to written extents. This needs
1136 * to happen from process contect but aio+dio I/O completion
1137 * happens from irq context so we need to defer it to a workqueue.
1138 * This is not nessecary for synchronous direct I/O, but we do
1139 * it anyway to keep the code uniform and simpler.
1140 *
1141 * The core direct I/O code might be changed to always call the
1142 * completion handler in the future, in which case all this can
1143 * go away.
1144 */
1145 if (private && size > 0) {
1146 ioend->io_offset = offset;
1147 ioend->io_size = size;
1148 xfs_finish_ioend(ioend);
1149 } else {
1150 ASSERT(size >= 0);
1151 xfs_destroy_ioend(ioend);
1152 }
1153
1154 /*
1155 * blockdev_direct_IO can return an error even afer the I/O
1156 * completion handler was called. Thus we need to protect
1157 * against double-freeing.
1158 */
1159 iocb->private = NULL;
1160}
1161
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162STATIC ssize_t
1163linvfs_direct_IO(
1164 int rw,
1165 struct kiocb *iocb,
1166 const struct iovec *iov,
1167 loff_t offset,
1168 unsigned long nr_segs)
1169{
1170 struct file *file = iocb->ki_filp;
1171 struct inode *inode = file->f_mapping->host;
1172 vnode_t *vp = LINVFS_GET_VP(inode);
1173 xfs_iomap_t iomap;
1174 int maps = 1;
1175 int error;
Christoph Hellwigf0973862005-09-05 08:22:52 +10001176 ssize_t ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177
1178 VOP_BMAP(vp, offset, 0, BMAPI_DEVICE, &iomap, &maps, error);
1179 if (error)
1180 return -error;
1181
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +11001182 iocb->private = xfs_alloc_ioend(inode, IOMAP_UNWRITTEN);
Christoph Hellwigf0973862005-09-05 08:22:52 +10001183
1184 ret = blockdev_direct_IO_own_locking(rw, iocb, inode,
Nathan Scottce8e9222006-01-11 15:39:08 +11001185 iomap.iomap_target->bt_bdev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186 iov, offset, nr_segs,
1187 linvfs_get_blocks_direct,
Christoph Hellwigf0973862005-09-05 08:22:52 +10001188 linvfs_end_io_direct);
1189
1190 if (unlikely(ret <= 0 && iocb->private))
1191 xfs_destroy_ioend(iocb->private);
1192 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193}
1194
1195
1196STATIC sector_t
1197linvfs_bmap(
1198 struct address_space *mapping,
1199 sector_t block)
1200{
1201 struct inode *inode = (struct inode *)mapping->host;
1202 vnode_t *vp = LINVFS_GET_VP(inode);
1203 int error;
1204
1205 vn_trace_entry(vp, "linvfs_bmap", (inst_t *)__return_address);
1206
1207 VOP_RWLOCK(vp, VRWLOCK_READ);
1208 VOP_FLUSH_PAGES(vp, (xfs_off_t)0, -1, 0, FI_REMAPF, error);
1209 VOP_RWUNLOCK(vp, VRWLOCK_READ);
1210 return generic_block_bmap(mapping, block, linvfs_get_block);
1211}
1212
1213STATIC int
1214linvfs_readpage(
1215 struct file *unused,
1216 struct page *page)
1217{
1218 return mpage_readpage(page, linvfs_get_block);
1219}
1220
1221STATIC int
1222linvfs_readpages(
1223 struct file *unused,
1224 struct address_space *mapping,
1225 struct list_head *pages,
1226 unsigned nr_pages)
1227{
1228 return mpage_readpages(mapping, pages, nr_pages, linvfs_get_block);
1229}
1230
1231STATIC void
1232xfs_count_page_state(
1233 struct page *page,
1234 int *delalloc,
1235 int *unmapped,
1236 int *unwritten)
1237{
1238 struct buffer_head *bh, *head;
1239
1240 *delalloc = *unmapped = *unwritten = 0;
1241
1242 bh = head = page_buffers(page);
1243 do {
1244 if (buffer_uptodate(bh) && !buffer_mapped(bh))
1245 (*unmapped) = 1;
1246 else if (buffer_unwritten(bh) && !buffer_delay(bh))
1247 clear_buffer_unwritten(bh);
1248 else if (buffer_unwritten(bh))
1249 (*unwritten) = 1;
1250 else if (buffer_delay(bh))
1251 (*delalloc) = 1;
1252 } while ((bh = bh->b_this_page) != head);
1253}
1254
1255
1256/*
1257 * writepage: Called from one of two places:
1258 *
1259 * 1. we are flushing a delalloc buffer head.
1260 *
1261 * 2. we are writing out a dirty page. Typically the page dirty
1262 * state is cleared before we get here. In this case is it
1263 * conceivable we have no buffer heads.
1264 *
1265 * For delalloc space on the page we need to allocate space and
1266 * flush it. For unmapped buffer heads on the page we should
1267 * allocate space if the page is uptodate. For any other dirty
1268 * buffer heads on the page we should flush them.
1269 *
1270 * If we detect that a transaction would be required to flush
1271 * the page, we have to check the process flags first, if we
1272 * are already in a transaction or disk I/O during allocations
1273 * is off, we need to fail the writepage and redirty the page.
1274 */
1275
1276STATIC int
1277linvfs_writepage(
1278 struct page *page,
1279 struct writeback_control *wbc)
1280{
1281 int error;
1282 int need_trans;
1283 int delalloc, unmapped, unwritten;
1284 struct inode *inode = page->mapping->host;
1285
1286 xfs_page_trace(XFS_WRITEPAGE_ENTER, inode, page, 0);
1287
1288 /*
1289 * We need a transaction if:
1290 * 1. There are delalloc buffers on the page
1291 * 2. The page is uptodate and we have unmapped buffers
1292 * 3. The page is uptodate and we have no buffers
1293 * 4. There are unwritten buffers on the page
1294 */
1295
1296 if (!page_has_buffers(page)) {
1297 unmapped = 1;
1298 need_trans = 1;
1299 } else {
1300 xfs_count_page_state(page, &delalloc, &unmapped, &unwritten);
1301 if (!PageUptodate(page))
1302 unmapped = 0;
1303 need_trans = delalloc + unmapped + unwritten;
1304 }
1305
1306 /*
1307 * If we need a transaction and the process flags say
1308 * we are already in a transaction, or no IO is allowed
1309 * then mark the page dirty again and leave the page
1310 * as is.
1311 */
1312 if (PFLAGS_TEST_FSTRANS() && need_trans)
1313 goto out_fail;
1314
1315 /*
1316 * Delay hooking up buffer heads until we have
1317 * made our go/no-go decision.
1318 */
1319 if (!page_has_buffers(page))
1320 create_empty_buffers(page, 1 << inode->i_blkbits, 0);
1321
1322 /*
1323 * Convert delayed allocate, unwritten or unmapped space
1324 * to real space and flush out to disk.
1325 */
1326 error = xfs_page_state_convert(inode, page, wbc, 1, unmapped);
1327 if (error == -EAGAIN)
1328 goto out_fail;
1329 if (unlikely(error < 0))
1330 goto out_unlock;
1331
1332 return 0;
1333
1334out_fail:
1335 redirty_page_for_writepage(wbc, page);
1336 unlock_page(page);
1337 return 0;
1338out_unlock:
1339 unlock_page(page);
1340 return error;
1341}
1342
Nathan Scottbcec2b72005-09-02 16:40:17 +10001343STATIC int
1344linvfs_invalidate_page(
1345 struct page *page,
1346 unsigned long offset)
1347{
1348 xfs_page_trace(XFS_INVALIDPAGE_ENTER,
1349 page->mapping->host, page, offset);
1350 return block_invalidatepage(page, offset);
1351}
1352
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353/*
1354 * Called to move a page into cleanable state - and from there
1355 * to be released. Possibly the page is already clean. We always
1356 * have buffer heads in this call.
1357 *
1358 * Returns 0 if the page is ok to release, 1 otherwise.
1359 *
1360 * Possible scenarios are:
1361 *
1362 * 1. We are being called to release a page which has been written
1363 * to via regular I/O. buffer heads will be dirty and possibly
1364 * delalloc. If no delalloc buffer heads in this case then we
1365 * can just return zero.
1366 *
1367 * 2. We are called to release a page which has been written via
1368 * mmap, all we need to do is ensure there is no delalloc
1369 * state in the buffer heads, if not we can let the caller
1370 * free them and we should come back later via writepage.
1371 */
1372STATIC int
1373linvfs_release_page(
1374 struct page *page,
Al Viro27496a82005-10-21 03:20:48 -04001375 gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376{
1377 struct inode *inode = page->mapping->host;
1378 int dirty, delalloc, unmapped, unwritten;
1379 struct writeback_control wbc = {
1380 .sync_mode = WB_SYNC_ALL,
1381 .nr_to_write = 1,
1382 };
1383
1384 xfs_page_trace(XFS_RELEASEPAGE_ENTER, inode, page, gfp_mask);
1385
1386 xfs_count_page_state(page, &delalloc, &unmapped, &unwritten);
1387 if (!delalloc && !unwritten)
1388 goto free_buffers;
1389
1390 if (!(gfp_mask & __GFP_FS))
1391 return 0;
1392
1393 /* If we are already inside a transaction or the thread cannot
1394 * do I/O, we cannot release this page.
1395 */
1396 if (PFLAGS_TEST_FSTRANS())
1397 return 0;
1398
1399 /*
1400 * Convert delalloc space to real space, do not flush the
1401 * data out to disk, that will be done by the caller.
1402 * Never need to allocate space here - we will always
1403 * come back to writepage in that case.
1404 */
1405 dirty = xfs_page_state_convert(inode, page, &wbc, 0, 0);
1406 if (dirty == 0 && !unwritten)
1407 goto free_buffers;
1408 return 0;
1409
1410free_buffers:
1411 return try_to_free_buffers(page);
1412}
1413
1414STATIC int
1415linvfs_prepare_write(
1416 struct file *file,
1417 struct page *page,
1418 unsigned int from,
1419 unsigned int to)
1420{
1421 return block_prepare_write(page, from, to, linvfs_get_block);
1422}
1423
1424struct address_space_operations linvfs_aops = {
1425 .readpage = linvfs_readpage,
1426 .readpages = linvfs_readpages,
1427 .writepage = linvfs_writepage,
1428 .sync_page = block_sync_page,
1429 .releasepage = linvfs_release_page,
Nathan Scottbcec2b72005-09-02 16:40:17 +10001430 .invalidatepage = linvfs_invalidate_page,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431 .prepare_write = linvfs_prepare_write,
1432 .commit_write = generic_commit_write,
1433 .bmap = linvfs_bmap,
1434 .direct_IO = linvfs_direct_IO,
1435};