ALSA: pcm: potential uninitialized return values
[pandora-kernel.git] / fs / xfs / xfs_aops.c
1 /*
2  * Copyright (c) 2000-2005 Silicon Graphics, Inc.
3  * All Rights Reserved.
4  *
5  * This program is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU General Public License as
7  * published by the Free Software Foundation.
8  *
9  * 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.
13  *
14  * 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
17  */
18 #include "xfs.h"
19 #include "xfs_bit.h"
20 #include "xfs_log.h"
21 #include "xfs_inum.h"
22 #include "xfs_sb.h"
23 #include "xfs_ag.h"
24 #include "xfs_trans.h"
25 #include "xfs_mount.h"
26 #include "xfs_bmap_btree.h"
27 #include "xfs_dinode.h"
28 #include "xfs_inode.h"
29 #include "xfs_alloc.h"
30 #include "xfs_error.h"
31 #include "xfs_rw.h"
32 #include "xfs_iomap.h"
33 #include "xfs_vnodeops.h"
34 #include "xfs_trace.h"
35 #include "xfs_bmap.h"
36 #include <linux/gfp.h>
37 #include <linux/mpage.h>
38 #include <linux/pagevec.h>
39 #include <linux/writeback.h>
40
41 void
42 xfs_count_page_state(
43         struct page             *page,
44         int                     *delalloc,
45         int                     *unwritten)
46 {
47         struct buffer_head      *bh, *head;
48
49         *delalloc = *unwritten = 0;
50
51         bh = head = page_buffers(page);
52         do {
53                 if (buffer_unwritten(bh))
54                         (*unwritten) = 1;
55                 else if (buffer_delay(bh))
56                         (*delalloc) = 1;
57         } while ((bh = bh->b_this_page) != head);
58 }
59
60 STATIC struct block_device *
61 xfs_find_bdev_for_inode(
62         struct inode            *inode)
63 {
64         struct xfs_inode        *ip = XFS_I(inode);
65         struct xfs_mount        *mp = ip->i_mount;
66
67         if (XFS_IS_REALTIME_INODE(ip))
68                 return mp->m_rtdev_targp->bt_bdev;
69         else
70                 return mp->m_ddev_targp->bt_bdev;
71 }
72
73 /*
74  * We're now finished for good with this ioend structure.
75  * Update the page state via the associated buffer_heads,
76  * release holds on the inode and bio, and finally free
77  * up memory.  Do not use the ioend after this.
78  */
79 STATIC void
80 xfs_destroy_ioend(
81         xfs_ioend_t             *ioend)
82 {
83         struct buffer_head      *bh, *next;
84
85         for (bh = ioend->io_buffer_head; bh; bh = next) {
86                 next = bh->b_private;
87                 bh->b_end_io(bh, !ioend->io_error);
88         }
89
90         if (ioend->io_iocb) {
91                 inode_dio_done(ioend->io_inode);
92                 if (ioend->io_isasync) {
93                         aio_complete(ioend->io_iocb, ioend->io_error ?
94                                         ioend->io_error : ioend->io_result, 0);
95                 }
96         }
97
98         mempool_free(ioend, xfs_ioend_pool);
99 }
100
101 /*
102  * If the end of the current ioend is beyond the current EOF,
103  * return the new EOF value, otherwise zero.
104  */
105 STATIC xfs_fsize_t
106 xfs_ioend_new_eof(
107         xfs_ioend_t             *ioend)
108 {
109         xfs_inode_t             *ip = XFS_I(ioend->io_inode);
110         xfs_fsize_t             isize;
111         xfs_fsize_t             bsize;
112
113         bsize = ioend->io_offset + ioend->io_size;
114         isize = MAX(ip->i_size, ip->i_new_size);
115         isize = MIN(isize, bsize);
116         return isize > ip->i_d.di_size ? isize : 0;
117 }
118
119 /*
120  * Fast and loose check if this write could update the on-disk inode size.
121  */
122 static inline bool xfs_ioend_is_append(struct xfs_ioend *ioend)
123 {
124         return ioend->io_offset + ioend->io_size >
125                 XFS_I(ioend->io_inode)->i_d.di_size;
126 }
127
128 /*
129  * Update on-disk file size now that data has been written to disk.  The
130  * current in-memory file size is i_size.  If a write is beyond eof i_new_size
131  * will be the intended file size until i_size is updated.  If this write does
132  * not extend all the way to the valid file size then restrict this update to
133  * the end of the write.
134  *
135  * This function does not block as blocking on the inode lock in IO completion
136  * can lead to IO completion order dependency deadlocks.. If it can't get the
137  * inode ilock it will return EAGAIN. Callers must handle this.
138  */
139 STATIC int
140 xfs_setfilesize(
141         xfs_ioend_t             *ioend)
142 {
143         xfs_inode_t             *ip = XFS_I(ioend->io_inode);
144         xfs_fsize_t             isize;
145
146         if (!xfs_ilock_nowait(ip, XFS_ILOCK_EXCL))
147                 return EAGAIN;
148
149         isize = xfs_ioend_new_eof(ioend);
150         if (isize) {
151                 trace_xfs_setfilesize(ip, ioend->io_offset, ioend->io_size);
152                 ip->i_d.di_size = isize;
153                 xfs_mark_inode_dirty(ip);
154         }
155
156         xfs_iunlock(ip, XFS_ILOCK_EXCL);
157         return 0;
158 }
159
160 /*
161  * Schedule IO completion handling on the final put of an ioend.
162  *
163  * If there is no work to do we might as well call it a day and free the
164  * ioend right now.
165  */
166 STATIC void
167 xfs_finish_ioend(
168         struct xfs_ioend        *ioend)
169 {
170         if (atomic_dec_and_test(&ioend->io_remaining)) {
171                 if (ioend->io_type == IO_UNWRITTEN)
172                         queue_work(xfsconvertd_workqueue, &ioend->io_work);
173                 else if (xfs_ioend_is_append(ioend))
174                         queue_work(xfsdatad_workqueue, &ioend->io_work);
175                 else
176                         xfs_destroy_ioend(ioend);
177         }
178 }
179
180 /*
181  * IO write completion.
182  */
183 STATIC void
184 xfs_end_io(
185         struct work_struct *work)
186 {
187         xfs_ioend_t     *ioend = container_of(work, xfs_ioend_t, io_work);
188         struct xfs_inode *ip = XFS_I(ioend->io_inode);
189         int             error = 0;
190
191         if (XFS_FORCED_SHUTDOWN(ip->i_mount)) {
192                 ioend->io_error = -EIO;
193                 goto done;
194         }
195         if (ioend->io_error)
196                 goto done;
197
198         /*
199          * For unwritten extents we need to issue transactions to convert a
200          * range to normal written extens after the data I/O has finished.
201          */
202         if (ioend->io_type == IO_UNWRITTEN) {
203                 error = xfs_iomap_write_unwritten(ip, ioend->io_offset,
204                                                  ioend->io_size);
205                 if (error) {
206                         ioend->io_error = -error;
207                         goto done;
208                 }
209         }
210
211         /*
212          * We might have to update the on-disk file size after extending
213          * writes.
214          */
215         error = xfs_setfilesize(ioend);
216         ASSERT(!error || error == EAGAIN);
217
218 done:
219         /*
220          * If we didn't complete processing of the ioend, requeue it to the
221          * tail of the workqueue for another attempt later. Otherwise destroy
222          * it.
223          */
224         if (error == EAGAIN) {
225                 atomic_inc(&ioend->io_remaining);
226                 xfs_finish_ioend(ioend);
227                 /* ensure we don't spin on blocked ioends */
228                 delay(1);
229         } else {
230                 xfs_destroy_ioend(ioend);
231         }
232 }
233
234 /*
235  * Call IO completion handling in caller context on the final put of an ioend.
236  */
237 STATIC void
238 xfs_finish_ioend_sync(
239         struct xfs_ioend        *ioend)
240 {
241         if (atomic_dec_and_test(&ioend->io_remaining))
242                 xfs_end_io(&ioend->io_work);
243 }
244
245 /*
246  * Allocate and initialise an IO completion structure.
247  * We need to track unwritten extent write completion here initially.
248  * We'll need to extend this for updating the ondisk inode size later
249  * (vs. incore size).
250  */
251 STATIC xfs_ioend_t *
252 xfs_alloc_ioend(
253         struct inode            *inode,
254         unsigned int            type)
255 {
256         xfs_ioend_t             *ioend;
257
258         ioend = mempool_alloc(xfs_ioend_pool, GFP_NOFS);
259
260         /*
261          * Set the count to 1 initially, which will prevent an I/O
262          * completion callback from happening before we have started
263          * all the I/O from calling the completion routine too early.
264          */
265         atomic_set(&ioend->io_remaining, 1);
266         ioend->io_isasync = 0;
267         ioend->io_error = 0;
268         ioend->io_list = NULL;
269         ioend->io_type = type;
270         ioend->io_inode = inode;
271         ioend->io_buffer_head = NULL;
272         ioend->io_buffer_tail = NULL;
273         ioend->io_offset = 0;
274         ioend->io_size = 0;
275         ioend->io_iocb = NULL;
276         ioend->io_result = 0;
277
278         INIT_WORK(&ioend->io_work, xfs_end_io);
279         return ioend;
280 }
281
282 STATIC int
283 xfs_map_blocks(
284         struct inode            *inode,
285         loff_t                  offset,
286         struct xfs_bmbt_irec    *imap,
287         int                     type,
288         int                     nonblocking)
289 {
290         struct xfs_inode        *ip = XFS_I(inode);
291         struct xfs_mount        *mp = ip->i_mount;
292         ssize_t                 count = 1 << inode->i_blkbits;
293         xfs_fileoff_t           offset_fsb, end_fsb;
294         int                     error = 0;
295         int                     bmapi_flags = XFS_BMAPI_ENTIRE;
296         int                     nimaps = 1;
297
298         if (XFS_FORCED_SHUTDOWN(mp))
299                 return -XFS_ERROR(EIO);
300
301         if (type == IO_UNWRITTEN)
302                 bmapi_flags |= XFS_BMAPI_IGSTATE;
303
304         if (!xfs_ilock_nowait(ip, XFS_ILOCK_SHARED)) {
305                 if (nonblocking)
306                         return -XFS_ERROR(EAGAIN);
307                 xfs_ilock(ip, XFS_ILOCK_SHARED);
308         }
309
310         ASSERT(ip->i_d.di_format != XFS_DINODE_FMT_BTREE ||
311                (ip->i_df.if_flags & XFS_IFEXTENTS));
312         ASSERT(offset <= mp->m_maxioffset);
313
314         if (offset + count > mp->m_maxioffset)
315                 count = mp->m_maxioffset - offset;
316         end_fsb = XFS_B_TO_FSB(mp, (xfs_ufsize_t)offset + count);
317         offset_fsb = XFS_B_TO_FSBT(mp, offset);
318         error = xfs_bmapi_read(ip, offset_fsb, end_fsb - offset_fsb,
319                                 imap, &nimaps, bmapi_flags);
320         xfs_iunlock(ip, XFS_ILOCK_SHARED);
321
322         if (error)
323                 return -XFS_ERROR(error);
324
325         if (type == IO_DELALLOC &&
326             (!nimaps || isnullstartblock(imap->br_startblock))) {
327                 error = xfs_iomap_write_allocate(ip, offset, count, imap);
328                 if (!error)
329                         trace_xfs_map_blocks_alloc(ip, offset, count, type, imap);
330                 return -XFS_ERROR(error);
331         }
332
333 #ifdef DEBUG
334         if (type == IO_UNWRITTEN) {
335                 ASSERT(nimaps);
336                 ASSERT(imap->br_startblock != HOLESTARTBLOCK);
337                 ASSERT(imap->br_startblock != DELAYSTARTBLOCK);
338         }
339 #endif
340         if (nimaps)
341                 trace_xfs_map_blocks_found(ip, offset, count, type, imap);
342         return 0;
343 }
344
345 STATIC int
346 xfs_imap_valid(
347         struct inode            *inode,
348         struct xfs_bmbt_irec    *imap,
349         xfs_off_t               offset)
350 {
351         offset >>= inode->i_blkbits;
352
353         return offset >= imap->br_startoff &&
354                 offset < imap->br_startoff + imap->br_blockcount;
355 }
356
357 /*
358  * BIO completion handler for buffered IO.
359  */
360 STATIC void
361 xfs_end_bio(
362         struct bio              *bio,
363         int                     error)
364 {
365         xfs_ioend_t             *ioend = bio->bi_private;
366
367         ASSERT(atomic_read(&bio->bi_cnt) >= 1);
368         if (!ioend->io_error && !test_bit(BIO_UPTODATE, &bio->bi_flags))
369                 ioend->io_error = error;
370
371         /* Toss bio and pass work off to an xfsdatad thread */
372         bio->bi_private = NULL;
373         bio->bi_end_io = NULL;
374         bio_put(bio);
375
376         xfs_finish_ioend(ioend);
377 }
378
379 STATIC void
380 xfs_submit_ioend_bio(
381         struct writeback_control *wbc,
382         xfs_ioend_t             *ioend,
383         struct bio              *bio)
384 {
385         atomic_inc(&ioend->io_remaining);
386         bio->bi_private = ioend;
387         bio->bi_end_io = xfs_end_bio;
388
389         /*
390          * If the I/O is beyond EOF we mark the inode dirty immediately
391          * but don't update the inode size until I/O completion.
392          */
393         if (xfs_ioend_new_eof(ioend))
394                 xfs_mark_inode_dirty(XFS_I(ioend->io_inode));
395
396         submit_bio(wbc->sync_mode == WB_SYNC_ALL ? WRITE_SYNC : WRITE, bio);
397 }
398
399 STATIC struct bio *
400 xfs_alloc_ioend_bio(
401         struct buffer_head      *bh)
402 {
403         int                     nvecs = bio_get_nr_vecs(bh->b_bdev);
404         struct bio              *bio = bio_alloc(GFP_NOIO, nvecs);
405
406         ASSERT(bio->bi_private == NULL);
407         bio->bi_sector = bh->b_blocknr * (bh->b_size >> 9);
408         bio->bi_bdev = bh->b_bdev;
409         return bio;
410 }
411
412 STATIC void
413 xfs_start_buffer_writeback(
414         struct buffer_head      *bh)
415 {
416         ASSERT(buffer_mapped(bh));
417         ASSERT(buffer_locked(bh));
418         ASSERT(!buffer_delay(bh));
419         ASSERT(!buffer_unwritten(bh));
420
421         mark_buffer_async_write(bh);
422         set_buffer_uptodate(bh);
423         clear_buffer_dirty(bh);
424 }
425
426 STATIC void
427 xfs_start_page_writeback(
428         struct page             *page,
429         int                     clear_dirty,
430         int                     buffers)
431 {
432         ASSERT(PageLocked(page));
433         ASSERT(!PageWriteback(page));
434         if (clear_dirty)
435                 clear_page_dirty_for_io(page);
436         set_page_writeback(page);
437         unlock_page(page);
438         /* If no buffers on the page are to be written, finish it here */
439         if (!buffers)
440                 end_page_writeback(page);
441 }
442
443 static inline int bio_add_buffer(struct bio *bio, struct buffer_head *bh)
444 {
445         return bio_add_page(bio, bh->b_page, bh->b_size, bh_offset(bh));
446 }
447
448 /*
449  * Submit all of the bios for all of the ioends we have saved up, covering the
450  * initial writepage page and also any probed pages.
451  *
452  * Because we may have multiple ioends spanning a page, we need to start
453  * writeback on all the buffers before we submit them for I/O. If we mark the
454  * buffers as we got, then we can end up with a page that only has buffers
455  * marked async write and I/O complete on can occur before we mark the other
456  * buffers async write.
457  *
458  * The end result of this is that we trip a bug in end_page_writeback() because
459  * we call it twice for the one page as the code in end_buffer_async_write()
460  * assumes that all buffers on the page are started at the same time.
461  *
462  * The fix is two passes across the ioend list - one to start writeback on the
463  * buffer_heads, and then submit them for I/O on the second pass.
464  */
465 STATIC void
466 xfs_submit_ioend(
467         struct writeback_control *wbc,
468         xfs_ioend_t             *ioend)
469 {
470         xfs_ioend_t             *head = ioend;
471         xfs_ioend_t             *next;
472         struct buffer_head      *bh;
473         struct bio              *bio;
474         sector_t                lastblock = 0;
475
476         /* Pass 1 - start writeback */
477         do {
478                 next = ioend->io_list;
479                 for (bh = ioend->io_buffer_head; bh; bh = bh->b_private)
480                         xfs_start_buffer_writeback(bh);
481         } while ((ioend = next) != NULL);
482
483         /* Pass 2 - submit I/O */
484         ioend = head;
485         do {
486                 next = ioend->io_list;
487                 bio = NULL;
488
489                 for (bh = ioend->io_buffer_head; bh; bh = bh->b_private) {
490
491                         if (!bio) {
492  retry:
493                                 bio = xfs_alloc_ioend_bio(bh);
494                         } else if (bh->b_blocknr != lastblock + 1) {
495                                 xfs_submit_ioend_bio(wbc, ioend, bio);
496                                 goto retry;
497                         }
498
499                         if (bio_add_buffer(bio, bh) != bh->b_size) {
500                                 xfs_submit_ioend_bio(wbc, ioend, bio);
501                                 goto retry;
502                         }
503
504                         lastblock = bh->b_blocknr;
505                 }
506                 if (bio)
507                         xfs_submit_ioend_bio(wbc, ioend, bio);
508                 xfs_finish_ioend(ioend);
509         } while ((ioend = next) != NULL);
510 }
511
512 /*
513  * Cancel submission of all buffer_heads so far in this endio.
514  * Toss the endio too.  Only ever called for the initial page
515  * in a writepage request, so only ever one page.
516  */
517 STATIC void
518 xfs_cancel_ioend(
519         xfs_ioend_t             *ioend)
520 {
521         xfs_ioend_t             *next;
522         struct buffer_head      *bh, *next_bh;
523
524         do {
525                 next = ioend->io_list;
526                 bh = ioend->io_buffer_head;
527                 do {
528                         next_bh = bh->b_private;
529                         clear_buffer_async_write(bh);
530                         unlock_buffer(bh);
531                 } while ((bh = next_bh) != NULL);
532
533                 mempool_free(ioend, xfs_ioend_pool);
534         } while ((ioend = next) != NULL);
535 }
536
537 /*
538  * Test to see if we've been building up a completion structure for
539  * earlier buffers -- if so, we try to append to this ioend if we
540  * can, otherwise we finish off any current ioend and start another.
541  * Return true if we've finished the given ioend.
542  */
543 STATIC void
544 xfs_add_to_ioend(
545         struct inode            *inode,
546         struct buffer_head      *bh,
547         xfs_off_t               offset,
548         unsigned int            type,
549         xfs_ioend_t             **result,
550         int                     need_ioend)
551 {
552         xfs_ioend_t             *ioend = *result;
553
554         if (!ioend || need_ioend || type != ioend->io_type) {
555                 xfs_ioend_t     *previous = *result;
556
557                 ioend = xfs_alloc_ioend(inode, type);
558                 ioend->io_offset = offset;
559                 ioend->io_buffer_head = bh;
560                 ioend->io_buffer_tail = bh;
561                 if (previous)
562                         previous->io_list = ioend;
563                 *result = ioend;
564         } else {
565                 ioend->io_buffer_tail->b_private = bh;
566                 ioend->io_buffer_tail = bh;
567         }
568
569         bh->b_private = NULL;
570         ioend->io_size += bh->b_size;
571 }
572
573 STATIC void
574 xfs_map_buffer(
575         struct inode            *inode,
576         struct buffer_head      *bh,
577         struct xfs_bmbt_irec    *imap,
578         xfs_off_t               offset)
579 {
580         sector_t                bn;
581         struct xfs_mount        *m = XFS_I(inode)->i_mount;
582         xfs_off_t               iomap_offset = XFS_FSB_TO_B(m, imap->br_startoff);
583         xfs_daddr_t             iomap_bn = xfs_fsb_to_db(XFS_I(inode), imap->br_startblock);
584
585         ASSERT(imap->br_startblock != HOLESTARTBLOCK);
586         ASSERT(imap->br_startblock != DELAYSTARTBLOCK);
587
588         bn = (iomap_bn >> (inode->i_blkbits - BBSHIFT)) +
589               ((offset - iomap_offset) >> inode->i_blkbits);
590
591         ASSERT(bn || XFS_IS_REALTIME_INODE(XFS_I(inode)));
592
593         bh->b_blocknr = bn;
594         set_buffer_mapped(bh);
595 }
596
597 STATIC void
598 xfs_map_at_offset(
599         struct inode            *inode,
600         struct buffer_head      *bh,
601         struct xfs_bmbt_irec    *imap,
602         xfs_off_t               offset)
603 {
604         ASSERT(imap->br_startblock != HOLESTARTBLOCK);
605         ASSERT(imap->br_startblock != DELAYSTARTBLOCK);
606
607         xfs_map_buffer(inode, bh, imap, offset);
608         set_buffer_mapped(bh);
609         clear_buffer_delay(bh);
610         clear_buffer_unwritten(bh);
611 }
612
613 /*
614  * Test if a given page is suitable for writing as part of an unwritten
615  * or delayed allocate extent.
616  */
617 STATIC int
618 xfs_is_delayed_page(
619         struct page             *page,
620         unsigned int            type)
621 {
622         if (PageWriteback(page))
623                 return 0;
624
625         if (page->mapping && page_has_buffers(page)) {
626                 struct buffer_head      *bh, *head;
627                 int                     acceptable = 0;
628
629                 bh = head = page_buffers(page);
630                 do {
631                         if (buffer_unwritten(bh))
632                                 acceptable = (type == IO_UNWRITTEN);
633                         else if (buffer_delay(bh))
634                                 acceptable = (type == IO_DELALLOC);
635                         else if (buffer_dirty(bh) && buffer_mapped(bh))
636                                 acceptable = (type == IO_OVERWRITE);
637                         else
638                                 break;
639                 } while ((bh = bh->b_this_page) != head);
640
641                 if (acceptable)
642                         return 1;
643         }
644
645         return 0;
646 }
647
648 /*
649  * Allocate & map buffers for page given the extent map. Write it out.
650  * except for the original page of a writepage, this is called on
651  * delalloc/unwritten pages only, for the original page it is possible
652  * that the page has no mapping at all.
653  */
654 STATIC int
655 xfs_convert_page(
656         struct inode            *inode,
657         struct page             *page,
658         loff_t                  tindex,
659         struct xfs_bmbt_irec    *imap,
660         xfs_ioend_t             **ioendp,
661         struct writeback_control *wbc)
662 {
663         struct buffer_head      *bh, *head;
664         xfs_off_t               end_offset;
665         unsigned long           p_offset;
666         unsigned int            type;
667         int                     len, page_dirty;
668         int                     count = 0, done = 0, uptodate = 1;
669         xfs_off_t               offset = page_offset(page);
670
671         if (page->index != tindex)
672                 goto fail;
673         if (!trylock_page(page))
674                 goto fail;
675         if (PageWriteback(page))
676                 goto fail_unlock_page;
677         if (page->mapping != inode->i_mapping)
678                 goto fail_unlock_page;
679         if (!xfs_is_delayed_page(page, (*ioendp)->io_type))
680                 goto fail_unlock_page;
681
682         /*
683          * page_dirty is initially a count of buffers on the page before
684          * EOF and is decremented as we move each into a cleanable state.
685          *
686          * Derivation:
687          *
688          * End offset is the highest offset that this page should represent.
689          * If we are on the last page, (end_offset & (PAGE_CACHE_SIZE - 1))
690          * will evaluate non-zero and be less than PAGE_CACHE_SIZE and
691          * hence give us the correct page_dirty count. On any other page,
692          * it will be zero and in that case we need page_dirty to be the
693          * count of buffers on the page.
694          */
695         end_offset = min_t(unsigned long long,
696                         (xfs_off_t)(page->index + 1) << PAGE_CACHE_SHIFT,
697                         i_size_read(inode));
698
699         len = 1 << inode->i_blkbits;
700         p_offset = min_t(unsigned long, end_offset & (PAGE_CACHE_SIZE - 1),
701                                         PAGE_CACHE_SIZE);
702         p_offset = p_offset ? roundup(p_offset, len) : PAGE_CACHE_SIZE;
703         page_dirty = p_offset / len;
704
705         bh = head = page_buffers(page);
706         do {
707                 if (offset >= end_offset)
708                         break;
709                 if (!buffer_uptodate(bh))
710                         uptodate = 0;
711                 if (!(PageUptodate(page) || buffer_uptodate(bh))) {
712                         done = 1;
713                         continue;
714                 }
715
716                 if (buffer_unwritten(bh) || buffer_delay(bh) ||
717                     buffer_mapped(bh)) {
718                         if (buffer_unwritten(bh))
719                                 type = IO_UNWRITTEN;
720                         else if (buffer_delay(bh))
721                                 type = IO_DELALLOC;
722                         else
723                                 type = IO_OVERWRITE;
724
725                         if (!xfs_imap_valid(inode, imap, offset)) {
726                                 done = 1;
727                                 continue;
728                         }
729
730                         lock_buffer(bh);
731                         if (type != IO_OVERWRITE)
732                                 xfs_map_at_offset(inode, bh, imap, offset);
733                         xfs_add_to_ioend(inode, bh, offset, type,
734                                          ioendp, done);
735
736                         page_dirty--;
737                         count++;
738                 } else {
739                         done = 1;
740                 }
741         } while (offset += len, (bh = bh->b_this_page) != head);
742
743         if (uptodate && bh == head)
744                 SetPageUptodate(page);
745
746         if (count) {
747                 if (--wbc->nr_to_write <= 0 &&
748                     wbc->sync_mode == WB_SYNC_NONE)
749                         done = 1;
750         }
751         xfs_start_page_writeback(page, !page_dirty, count);
752
753         return done;
754  fail_unlock_page:
755         unlock_page(page);
756  fail:
757         return 1;
758 }
759
760 /*
761  * Convert & write out a cluster of pages in the same extent as defined
762  * by mp and following the start page.
763  */
764 STATIC void
765 xfs_cluster_write(
766         struct inode            *inode,
767         pgoff_t                 tindex,
768         struct xfs_bmbt_irec    *imap,
769         xfs_ioend_t             **ioendp,
770         struct writeback_control *wbc,
771         pgoff_t                 tlast)
772 {
773         struct pagevec          pvec;
774         int                     done = 0, i;
775
776         pagevec_init(&pvec, 0);
777         while (!done && tindex <= tlast) {
778                 unsigned len = min_t(pgoff_t, PAGEVEC_SIZE, tlast - tindex + 1);
779
780                 if (!pagevec_lookup(&pvec, inode->i_mapping, tindex, len))
781                         break;
782
783                 for (i = 0; i < pagevec_count(&pvec); i++) {
784                         done = xfs_convert_page(inode, pvec.pages[i], tindex++,
785                                         imap, ioendp, wbc);
786                         if (done)
787                                 break;
788                 }
789
790                 pagevec_release(&pvec);
791                 cond_resched();
792         }
793 }
794
795 STATIC void
796 xfs_vm_invalidatepage(
797         struct page             *page,
798         unsigned long           offset)
799 {
800         trace_xfs_invalidatepage(page->mapping->host, page, offset);
801         block_invalidatepage(page, offset);
802 }
803
804 /*
805  * If the page has delalloc buffers on it, we need to punch them out before we
806  * invalidate the page. If we don't, we leave a stale delalloc mapping on the
807  * inode that can trip a BUG() in xfs_get_blocks() later on if a direct IO read
808  * is done on that same region - the delalloc extent is returned when none is
809  * supposed to be there.
810  *
811  * We prevent this by truncating away the delalloc regions on the page before
812  * invalidating it. Because they are delalloc, we can do this without needing a
813  * transaction. Indeed - if we get ENOSPC errors, we have to be able to do this
814  * truncation without a transaction as there is no space left for block
815  * reservation (typically why we see a ENOSPC in writeback).
816  *
817  * This is not a performance critical path, so for now just do the punching a
818  * buffer head at a time.
819  */
820 STATIC void
821 xfs_aops_discard_page(
822         struct page             *page)
823 {
824         struct inode            *inode = page->mapping->host;
825         struct xfs_inode        *ip = XFS_I(inode);
826         struct buffer_head      *bh, *head;
827         loff_t                  offset = page_offset(page);
828
829         if (!xfs_is_delayed_page(page, IO_DELALLOC))
830                 goto out_invalidate;
831
832         if (XFS_FORCED_SHUTDOWN(ip->i_mount))
833                 goto out_invalidate;
834
835         xfs_alert(ip->i_mount,
836                 "page discard on page %p, inode 0x%llx, offset %llu.",
837                         page, ip->i_ino, offset);
838
839         xfs_ilock(ip, XFS_ILOCK_EXCL);
840         bh = head = page_buffers(page);
841         do {
842                 int             error;
843                 xfs_fileoff_t   start_fsb;
844
845                 if (!buffer_delay(bh))
846                         goto next_buffer;
847
848                 start_fsb = XFS_B_TO_FSBT(ip->i_mount, offset);
849                 error = xfs_bmap_punch_delalloc_range(ip, start_fsb, 1);
850                 if (error) {
851                         /* something screwed, just bail */
852                         if (!XFS_FORCED_SHUTDOWN(ip->i_mount)) {
853                                 xfs_alert(ip->i_mount,
854                         "page discard unable to remove delalloc mapping.");
855                         }
856                         break;
857                 }
858 next_buffer:
859                 offset += 1 << inode->i_blkbits;
860
861         } while ((bh = bh->b_this_page) != head);
862
863         xfs_iunlock(ip, XFS_ILOCK_EXCL);
864 out_invalidate:
865         xfs_vm_invalidatepage(page, 0);
866         return;
867 }
868
869 /*
870  * Write out a dirty page.
871  *
872  * For delalloc space on the page we need to allocate space and flush it.
873  * For unwritten space on the page we need to start the conversion to
874  * regular allocated space.
875  * For any other dirty buffer heads on the page we should flush them.
876  */
877 STATIC int
878 xfs_vm_writepage(
879         struct page             *page,
880         struct writeback_control *wbc)
881 {
882         struct inode            *inode = page->mapping->host;
883         struct buffer_head      *bh, *head;
884         struct xfs_bmbt_irec    imap;
885         xfs_ioend_t             *ioend = NULL, *iohead = NULL;
886         loff_t                  offset;
887         unsigned int            type;
888         __uint64_t              end_offset;
889         pgoff_t                 end_index, last_index;
890         ssize_t                 len;
891         int                     err, imap_valid = 0, uptodate = 1;
892         int                     count = 0;
893         int                     nonblocking = 0;
894
895         trace_xfs_writepage(inode, page, 0);
896
897         ASSERT(page_has_buffers(page));
898
899         /*
900          * Refuse to write the page out if we are called from reclaim context.
901          *
902          * This avoids stack overflows when called from deeply used stacks in
903          * random callers for direct reclaim or memcg reclaim.  We explicitly
904          * allow reclaim from kswapd as the stack usage there is relatively low.
905          *
906          * This should never happen except in the case of a VM regression so
907          * warn about it.
908          */
909         if (WARN_ON_ONCE((current->flags & (PF_MEMALLOC|PF_KSWAPD)) ==
910                         PF_MEMALLOC))
911                 goto redirty;
912
913         /*
914          * Given that we do not allow direct reclaim to call us, we should
915          * never be called while in a filesystem transaction.
916          */
917         if (WARN_ON(current->flags & PF_FSTRANS))
918                 goto redirty;
919
920         /* Is this page beyond the end of the file? */
921         offset = i_size_read(inode);
922         end_index = offset >> PAGE_CACHE_SHIFT;
923         last_index = (offset - 1) >> PAGE_CACHE_SHIFT;
924         if (page->index >= end_index) {
925                 if ((page->index >= end_index + 1) ||
926                     !(i_size_read(inode) & (PAGE_CACHE_SIZE - 1))) {
927                         unlock_page(page);
928                         return 0;
929                 }
930         }
931
932         end_offset = min_t(unsigned long long,
933                         (xfs_off_t)(page->index + 1) << PAGE_CACHE_SHIFT,
934                         offset);
935         len = 1 << inode->i_blkbits;
936
937         bh = head = page_buffers(page);
938         offset = page_offset(page);
939         type = IO_OVERWRITE;
940
941         if (wbc->sync_mode == WB_SYNC_NONE)
942                 nonblocking = 1;
943
944         do {
945                 int new_ioend = 0;
946
947                 if (offset >= end_offset)
948                         break;
949                 if (!buffer_uptodate(bh))
950                         uptodate = 0;
951
952                 /*
953                  * set_page_dirty dirties all buffers in a page, independent
954                  * of their state.  The dirty state however is entirely
955                  * meaningless for holes (!mapped && uptodate), so skip
956                  * buffers covering holes here.
957                  */
958                 if (!buffer_mapped(bh) && buffer_uptodate(bh)) {
959                         imap_valid = 0;
960                         continue;
961                 }
962
963                 if (buffer_unwritten(bh)) {
964                         if (type != IO_UNWRITTEN) {
965                                 type = IO_UNWRITTEN;
966                                 imap_valid = 0;
967                         }
968                 } else if (buffer_delay(bh)) {
969                         if (type != IO_DELALLOC) {
970                                 type = IO_DELALLOC;
971                                 imap_valid = 0;
972                         }
973                 } else if (buffer_uptodate(bh)) {
974                         if (type != IO_OVERWRITE) {
975                                 type = IO_OVERWRITE;
976                                 imap_valid = 0;
977                         }
978                 } else {
979                         if (PageUptodate(page)) {
980                                 ASSERT(buffer_mapped(bh));
981                                 imap_valid = 0;
982                         }
983                         continue;
984                 }
985
986                 if (imap_valid)
987                         imap_valid = xfs_imap_valid(inode, &imap, offset);
988                 if (!imap_valid) {
989                         /*
990                          * If we didn't have a valid mapping then we need to
991                          * put the new mapping into a separate ioend structure.
992                          * This ensures non-contiguous extents always have
993                          * separate ioends, which is particularly important
994                          * for unwritten extent conversion at I/O completion
995                          * time.
996                          */
997                         new_ioend = 1;
998                         err = xfs_map_blocks(inode, offset, &imap, type,
999                                              nonblocking);
1000                         if (err)
1001                                 goto error;
1002                         imap_valid = xfs_imap_valid(inode, &imap, offset);
1003                 }
1004                 if (imap_valid) {
1005                         lock_buffer(bh);
1006                         if (type != IO_OVERWRITE)
1007                                 xfs_map_at_offset(inode, bh, &imap, offset);
1008                         xfs_add_to_ioend(inode, bh, offset, type, &ioend,
1009                                          new_ioend);
1010                         count++;
1011                 }
1012
1013                 if (!iohead)
1014                         iohead = ioend;
1015
1016         } while (offset += len, ((bh = bh->b_this_page) != head));
1017
1018         if (uptodate && bh == head)
1019                 SetPageUptodate(page);
1020
1021         xfs_start_page_writeback(page, 1, count);
1022
1023         if (ioend && imap_valid) {
1024                 xfs_off_t               end_index;
1025
1026                 end_index = imap.br_startoff + imap.br_blockcount;
1027
1028                 /* to bytes */
1029                 end_index <<= inode->i_blkbits;
1030
1031                 /* to pages */
1032                 end_index = (end_index - 1) >> PAGE_CACHE_SHIFT;
1033
1034                 /* check against file size */
1035                 if (end_index > last_index)
1036                         end_index = last_index;
1037
1038                 xfs_cluster_write(inode, page->index + 1, &imap, &ioend,
1039                                   wbc, end_index);
1040         }
1041
1042         if (iohead)
1043                 xfs_submit_ioend(wbc, iohead);
1044
1045         return 0;
1046
1047 error:
1048         if (iohead)
1049                 xfs_cancel_ioend(iohead);
1050
1051         if (err == -EAGAIN)
1052                 goto redirty;
1053
1054         xfs_aops_discard_page(page);
1055         ClearPageUptodate(page);
1056         unlock_page(page);
1057         return err;
1058
1059 redirty:
1060         redirty_page_for_writepage(wbc, page);
1061         unlock_page(page);
1062         return 0;
1063 }
1064
1065 STATIC int
1066 xfs_vm_writepages(
1067         struct address_space    *mapping,
1068         struct writeback_control *wbc)
1069 {
1070         xfs_iflags_clear(XFS_I(mapping->host), XFS_ITRUNCATED);
1071         return generic_writepages(mapping, wbc);
1072 }
1073
1074 /*
1075  * Called to move a page into cleanable state - and from there
1076  * to be released. The page should already be clean. We always
1077  * have buffer heads in this call.
1078  *
1079  * Returns 1 if the page is ok to release, 0 otherwise.
1080  */
1081 STATIC int
1082 xfs_vm_releasepage(
1083         struct page             *page,
1084         gfp_t                   gfp_mask)
1085 {
1086         int                     delalloc, unwritten;
1087
1088         trace_xfs_releasepage(page->mapping->host, page, 0);
1089
1090         xfs_count_page_state(page, &delalloc, &unwritten);
1091
1092         if (WARN_ON(delalloc))
1093                 return 0;
1094         if (WARN_ON(unwritten))
1095                 return 0;
1096
1097         return try_to_free_buffers(page);
1098 }
1099
1100 STATIC int
1101 __xfs_get_blocks(
1102         struct inode            *inode,
1103         sector_t                iblock,
1104         struct buffer_head      *bh_result,
1105         int                     create,
1106         int                     direct)
1107 {
1108         struct xfs_inode        *ip = XFS_I(inode);
1109         struct xfs_mount        *mp = ip->i_mount;
1110         xfs_fileoff_t           offset_fsb, end_fsb;
1111         int                     error = 0;
1112         int                     lockmode = 0;
1113         struct xfs_bmbt_irec    imap;
1114         int                     nimaps = 1;
1115         xfs_off_t               offset;
1116         ssize_t                 size;
1117         int                     new = 0;
1118
1119         if (XFS_FORCED_SHUTDOWN(mp))
1120                 return -XFS_ERROR(EIO);
1121
1122         offset = (xfs_off_t)iblock << inode->i_blkbits;
1123         ASSERT(bh_result->b_size >= (1 << inode->i_blkbits));
1124         size = bh_result->b_size;
1125
1126         if (!create && direct && offset >= i_size_read(inode))
1127                 return 0;
1128
1129         if (create) {
1130                 lockmode = XFS_ILOCK_EXCL;
1131                 xfs_ilock(ip, lockmode);
1132         } else {
1133                 lockmode = xfs_ilock_map_shared(ip);
1134         }
1135
1136         ASSERT(offset <= mp->m_maxioffset);
1137         if (offset + size > mp->m_maxioffset)
1138                 size = mp->m_maxioffset - offset;
1139         end_fsb = XFS_B_TO_FSB(mp, (xfs_ufsize_t)offset + size);
1140         offset_fsb = XFS_B_TO_FSBT(mp, offset);
1141
1142         error = xfs_bmapi_read(ip, offset_fsb, end_fsb - offset_fsb,
1143                                 &imap, &nimaps, XFS_BMAPI_ENTIRE);
1144         if (error)
1145                 goto out_unlock;
1146
1147         if (create &&
1148             (!nimaps ||
1149              (imap.br_startblock == HOLESTARTBLOCK ||
1150               imap.br_startblock == DELAYSTARTBLOCK))) {
1151                 if (direct) {
1152                         error = xfs_iomap_write_direct(ip, offset, size,
1153                                                        &imap, nimaps);
1154                 } else {
1155                         error = xfs_iomap_write_delay(ip, offset, size, &imap);
1156                 }
1157                 if (error)
1158                         goto out_unlock;
1159
1160                 trace_xfs_get_blocks_alloc(ip, offset, size, 0, &imap);
1161         } else if (nimaps) {
1162                 trace_xfs_get_blocks_found(ip, offset, size, 0, &imap);
1163         } else {
1164                 trace_xfs_get_blocks_notfound(ip, offset, size);
1165                 goto out_unlock;
1166         }
1167         xfs_iunlock(ip, lockmode);
1168
1169         if (imap.br_startblock != HOLESTARTBLOCK &&
1170             imap.br_startblock != DELAYSTARTBLOCK) {
1171                 /*
1172                  * For unwritten extents do not report a disk address on
1173                  * the read case (treat as if we're reading into a hole).
1174                  */
1175                 if (create || !ISUNWRITTEN(&imap))
1176                         xfs_map_buffer(inode, bh_result, &imap, offset);
1177                 if (create && ISUNWRITTEN(&imap)) {
1178                         if (direct)
1179                                 bh_result->b_private = inode;
1180                         set_buffer_unwritten(bh_result);
1181                 }
1182         }
1183
1184         /*
1185          * If this is a realtime file, data may be on a different device.
1186          * to that pointed to from the buffer_head b_bdev currently.
1187          */
1188         bh_result->b_bdev = xfs_find_bdev_for_inode(inode);
1189
1190         /*
1191          * If we previously allocated a block out beyond eof and we are now
1192          * coming back to use it then we will need to flag it as new even if it
1193          * has a disk address.
1194          *
1195          * With sub-block writes into unwritten extents we also need to mark
1196          * the buffer as new so that the unwritten parts of the buffer gets
1197          * correctly zeroed.
1198          */
1199         if (create &&
1200             ((!buffer_mapped(bh_result) && !buffer_uptodate(bh_result)) ||
1201              (offset >= i_size_read(inode)) ||
1202              (new || ISUNWRITTEN(&imap))))
1203                 set_buffer_new(bh_result);
1204
1205         if (imap.br_startblock == DELAYSTARTBLOCK) {
1206                 BUG_ON(direct);
1207                 if (create) {
1208                         set_buffer_uptodate(bh_result);
1209                         set_buffer_mapped(bh_result);
1210                         set_buffer_delay(bh_result);
1211                 }
1212         }
1213
1214         /*
1215          * If this is O_DIRECT or the mpage code calling tell them how large
1216          * the mapping is, so that we can avoid repeated get_blocks calls.
1217          */
1218         if (direct || size > (1 << inode->i_blkbits)) {
1219                 xfs_off_t               mapping_size;
1220
1221                 mapping_size = imap.br_startoff + imap.br_blockcount - iblock;
1222                 mapping_size <<= inode->i_blkbits;
1223
1224                 ASSERT(mapping_size > 0);
1225                 if (mapping_size > size)
1226                         mapping_size = size;
1227                 if (mapping_size > LONG_MAX)
1228                         mapping_size = LONG_MAX;
1229
1230                 bh_result->b_size = mapping_size;
1231         }
1232
1233         return 0;
1234
1235 out_unlock:
1236         xfs_iunlock(ip, lockmode);
1237         return -error;
1238 }
1239
1240 int
1241 xfs_get_blocks(
1242         struct inode            *inode,
1243         sector_t                iblock,
1244         struct buffer_head      *bh_result,
1245         int                     create)
1246 {
1247         return __xfs_get_blocks(inode, iblock, bh_result, create, 0);
1248 }
1249
1250 STATIC int
1251 xfs_get_blocks_direct(
1252         struct inode            *inode,
1253         sector_t                iblock,
1254         struct buffer_head      *bh_result,
1255         int                     create)
1256 {
1257         return __xfs_get_blocks(inode, iblock, bh_result, create, 1);
1258 }
1259
1260 /*
1261  * Complete a direct I/O write request.
1262  *
1263  * If the private argument is non-NULL __xfs_get_blocks signals us that we
1264  * need to issue a transaction to convert the range from unwritten to written
1265  * extents.  In case this is regular synchronous I/O we just call xfs_end_io
1266  * to do this and we are done.  But in case this was a successful AIO
1267  * request this handler is called from interrupt context, from which we
1268  * can't start transactions.  In that case offload the I/O completion to
1269  * the workqueues we also use for buffered I/O completion.
1270  */
1271 STATIC void
1272 xfs_end_io_direct_write(
1273         struct kiocb            *iocb,
1274         loff_t                  offset,
1275         ssize_t                 size,
1276         void                    *private,
1277         int                     ret,
1278         bool                    is_async)
1279 {
1280         struct xfs_ioend        *ioend = iocb->private;
1281
1282         /*
1283          * blockdev_direct_IO can return an error even after the I/O
1284          * completion handler was called.  Thus we need to protect
1285          * against double-freeing.
1286          */
1287         iocb->private = NULL;
1288
1289         ioend->io_offset = offset;
1290         ioend->io_size = size;
1291         ioend->io_iocb = iocb;
1292         ioend->io_result = ret;
1293         if (private && size > 0)
1294                 ioend->io_type = IO_UNWRITTEN;
1295
1296         if (is_async) {
1297                 ioend->io_isasync = 1;
1298                 xfs_finish_ioend(ioend);
1299         } else {
1300                 xfs_finish_ioend_sync(ioend);
1301         }
1302 }
1303
1304 STATIC ssize_t
1305 xfs_vm_direct_IO(
1306         int                     rw,
1307         struct kiocb            *iocb,
1308         const struct iovec      *iov,
1309         loff_t                  offset,
1310         unsigned long           nr_segs)
1311 {
1312         struct inode            *inode = iocb->ki_filp->f_mapping->host;
1313         struct block_device     *bdev = xfs_find_bdev_for_inode(inode);
1314         ssize_t                 ret;
1315
1316         if (rw & WRITE) {
1317                 iocb->private = xfs_alloc_ioend(inode, IO_DIRECT);
1318
1319                 ret = __blockdev_direct_IO(rw, iocb, inode, bdev, iov,
1320                                             offset, nr_segs,
1321                                             xfs_get_blocks_direct,
1322                                             xfs_end_io_direct_write, NULL, 0);
1323                 if (ret != -EIOCBQUEUED && iocb->private)
1324                         xfs_destroy_ioend(iocb->private);
1325         } else {
1326                 ret = __blockdev_direct_IO(rw, iocb, inode, bdev, iov,
1327                                             offset, nr_segs,
1328                                             xfs_get_blocks_direct,
1329                                             NULL, NULL, 0);
1330         }
1331
1332         return ret;
1333 }
1334
1335 STATIC void
1336 xfs_vm_write_failed(
1337         struct address_space    *mapping,
1338         loff_t                  to)
1339 {
1340         struct inode            *inode = mapping->host;
1341
1342         if (to > inode->i_size) {
1343                 /*
1344                  * punch out the delalloc blocks we have already allocated. We
1345                  * don't call xfs_setattr() to do this as we may be in the
1346                  * middle of a multi-iovec write and so the vfs inode->i_size
1347                  * will not match the xfs ip->i_size and so it will zero too
1348                  * much. Hence we jus truncate the page cache to zero what is
1349                  * necessary and punch the delalloc blocks directly.
1350                  */
1351                 struct xfs_inode        *ip = XFS_I(inode);
1352                 xfs_fileoff_t           start_fsb;
1353                 xfs_fileoff_t           end_fsb;
1354                 int                     error;
1355
1356                 truncate_pagecache(inode, to, inode->i_size);
1357
1358                 /*
1359                  * Check if there are any blocks that are outside of i_size
1360                  * that need to be trimmed back.
1361                  */
1362                 start_fsb = XFS_B_TO_FSB(ip->i_mount, inode->i_size) + 1;
1363                 end_fsb = XFS_B_TO_FSB(ip->i_mount, to);
1364                 if (end_fsb <= start_fsb)
1365                         return;
1366
1367                 xfs_ilock(ip, XFS_ILOCK_EXCL);
1368                 error = xfs_bmap_punch_delalloc_range(ip, start_fsb,
1369                                                         end_fsb - start_fsb);
1370                 if (error) {
1371                         /* something screwed, just bail */
1372                         if (!XFS_FORCED_SHUTDOWN(ip->i_mount)) {
1373                                 xfs_alert(ip->i_mount,
1374                         "xfs_vm_write_failed: unable to clean up ino %lld",
1375                                                 ip->i_ino);
1376                         }
1377                 }
1378                 xfs_iunlock(ip, XFS_ILOCK_EXCL);
1379         }
1380 }
1381
1382 STATIC int
1383 xfs_vm_write_begin(
1384         struct file             *file,
1385         struct address_space    *mapping,
1386         loff_t                  pos,
1387         unsigned                len,
1388         unsigned                flags,
1389         struct page             **pagep,
1390         void                    **fsdata)
1391 {
1392         int                     ret;
1393
1394         ret = block_write_begin(mapping, pos, len, flags | AOP_FLAG_NOFS,
1395                                 pagep, xfs_get_blocks);
1396         if (unlikely(ret))
1397                 xfs_vm_write_failed(mapping, pos + len);
1398         return ret;
1399 }
1400
1401 STATIC int
1402 xfs_vm_write_end(
1403         struct file             *file,
1404         struct address_space    *mapping,
1405         loff_t                  pos,
1406         unsigned                len,
1407         unsigned                copied,
1408         struct page             *page,
1409         void                    *fsdata)
1410 {
1411         int                     ret;
1412
1413         ret = generic_write_end(file, mapping, pos, len, copied, page, fsdata);
1414         if (unlikely(ret < len))
1415                 xfs_vm_write_failed(mapping, pos + len);
1416         return ret;
1417 }
1418
1419 STATIC sector_t
1420 xfs_vm_bmap(
1421         struct address_space    *mapping,
1422         sector_t                block)
1423 {
1424         struct inode            *inode = (struct inode *)mapping->host;
1425         struct xfs_inode        *ip = XFS_I(inode);
1426
1427         trace_xfs_vm_bmap(XFS_I(inode));
1428         xfs_ilock(ip, XFS_IOLOCK_SHARED);
1429         xfs_flush_pages(ip, (xfs_off_t)0, -1, 0, FI_REMAPF);
1430         xfs_iunlock(ip, XFS_IOLOCK_SHARED);
1431         return generic_block_bmap(mapping, block, xfs_get_blocks);
1432 }
1433
1434 STATIC int
1435 xfs_vm_readpage(
1436         struct file             *unused,
1437         struct page             *page)
1438 {
1439         return mpage_readpage(page, xfs_get_blocks);
1440 }
1441
1442 STATIC int
1443 xfs_vm_readpages(
1444         struct file             *unused,
1445         struct address_space    *mapping,
1446         struct list_head        *pages,
1447         unsigned                nr_pages)
1448 {
1449         return mpage_readpages(mapping, pages, nr_pages, xfs_get_blocks);
1450 }
1451
1452 const struct address_space_operations xfs_address_space_operations = {
1453         .readpage               = xfs_vm_readpage,
1454         .readpages              = xfs_vm_readpages,
1455         .writepage              = xfs_vm_writepage,
1456         .writepages             = xfs_vm_writepages,
1457         .releasepage            = xfs_vm_releasepage,
1458         .invalidatepage         = xfs_vm_invalidatepage,
1459         .write_begin            = xfs_vm_write_begin,
1460         .write_end              = xfs_vm_write_end,
1461         .bmap                   = xfs_vm_bmap,
1462         .direct_IO              = xfs_vm_direct_IO,
1463         .migratepage            = buffer_migrate_page,
1464         .is_partially_uptodate  = block_is_partially_uptodate,
1465         .error_remove_page      = generic_error_remove_page,
1466 };