2 * Copyright (C) Sistina Software, Inc. 1997-2003 All rights reserved.
3 * Copyright (C) 2004-2008 Red Hat, Inc. All rights reserved.
5 * This copyrighted material is made available to anyone wishing to use,
6 * modify, copy, or redistribute it subject to the terms and conditions
7 * of the GNU General Public License version 2.
10 #include <linux/sched.h>
11 #include <linux/slab.h>
12 #include <linux/spinlock.h>
13 #include <linux/completion.h>
14 #include <linux/buffer_head.h>
15 #include <linux/pagemap.h>
16 #include <linux/pagevec.h>
17 #include <linux/mpage.h>
19 #include <linux/writeback.h>
20 #include <linux/swap.h>
21 #include <linux/gfs2_ondisk.h>
22 #include <linux/backing-dev.h>
23 #include <linux/uio.h>
24 #include <trace/events/writeback.h>
25 #include <linux/sched/signal.h>
43 void gfs2_page_add_databufs(struct gfs2_inode *ip, struct page *page,
44 unsigned int from, unsigned int len)
46 struct buffer_head *head = page_buffers(page);
47 unsigned int bsize = head->b_size;
48 struct buffer_head *bh;
49 unsigned int to = from + len;
50 unsigned int start, end;
52 for (bh = head, start = 0; bh != head || !start;
53 bh = bh->b_this_page, start = end) {
59 set_buffer_uptodate(bh);
60 gfs2_trans_add_data(ip->i_gl, bh);
65 * gfs2_get_block_noalloc - Fills in a buffer head with details about a block
67 * @lblock: The block number to look up
68 * @bh_result: The buffer head to return the result in
69 * @create: Non-zero if we may add block to the file
74 static int gfs2_get_block_noalloc(struct inode *inode, sector_t lblock,
75 struct buffer_head *bh_result, int create)
79 error = gfs2_block_map(inode, lblock, bh_result, 0);
82 if (!buffer_mapped(bh_result))
88 * gfs2_writepage_common - Common bits of writepage
89 * @page: The page to be written
90 * @wbc: The writeback control
92 * Returns: 1 if writepage is ok, otherwise an error code or zero if no error.
95 static int gfs2_writepage_common(struct page *page,
96 struct writeback_control *wbc)
98 struct inode *inode = page->mapping->host;
99 struct gfs2_inode *ip = GFS2_I(inode);
100 struct gfs2_sbd *sdp = GFS2_SB(inode);
101 loff_t i_size = i_size_read(inode);
102 pgoff_t end_index = i_size >> PAGE_SHIFT;
105 if (gfs2_assert_withdraw(sdp, gfs2_glock_is_held_excl(ip->i_gl)))
107 if (current->journal_info)
109 /* Is the page fully outside i_size? (truncate in progress) */
110 offset = i_size & (PAGE_SIZE-1);
111 if (page->index > end_index || (page->index == end_index && !offset)) {
112 page->mapping->a_ops->invalidatepage(page, 0, PAGE_SIZE);
117 redirty_page_for_writepage(wbc, page);
124 * gfs2_writepage - Write page for writeback mappings
126 * @wbc: The writeback control
130 static int gfs2_writepage(struct page *page, struct writeback_control *wbc)
134 ret = gfs2_writepage_common(page, wbc);
138 return nobh_writepage(page, gfs2_get_block_noalloc, wbc);
141 /* This is the same as calling block_write_full_page, but it also
142 * writes pages outside of i_size
144 static int gfs2_write_full_page(struct page *page, get_block_t *get_block,
145 struct writeback_control *wbc)
147 struct inode * const inode = page->mapping->host;
148 loff_t i_size = i_size_read(inode);
149 const pgoff_t end_index = i_size >> PAGE_SHIFT;
153 * The page straddles i_size. It must be zeroed out on each and every
154 * writepage invocation because it may be mmapped. "A file is mapped
155 * in multiples of the page size. For a file that is not a multiple of
156 * the page size, the remaining memory is zeroed when mapped, and
157 * writes to that region are not written out to the file."
159 offset = i_size & (PAGE_SIZE-1);
160 if (page->index == end_index && offset)
161 zero_user_segment(page, offset, PAGE_SIZE);
163 return __block_write_full_page(inode, page, get_block, wbc,
164 end_buffer_async_write);
168 * __gfs2_jdata_writepage - The core of jdata writepage
169 * @page: The page to write
170 * @wbc: The writeback control
172 * This is shared between writepage and writepages and implements the
173 * core of the writepage operation. If a transaction is required then
174 * PageChecked will have been set and the transaction will have
175 * already been started before this is called.
178 static int __gfs2_jdata_writepage(struct page *page, struct writeback_control *wbc)
180 struct inode *inode = page->mapping->host;
181 struct gfs2_inode *ip = GFS2_I(inode);
182 struct gfs2_sbd *sdp = GFS2_SB(inode);
184 if (PageChecked(page)) {
185 ClearPageChecked(page);
186 if (!page_has_buffers(page)) {
187 create_empty_buffers(page, inode->i_sb->s_blocksize,
188 BIT(BH_Dirty)|BIT(BH_Uptodate));
190 gfs2_page_add_databufs(ip, page, 0, sdp->sd_vfs->s_blocksize);
192 return gfs2_write_full_page(page, gfs2_get_block_noalloc, wbc);
196 * gfs2_jdata_writepage - Write complete page
197 * @page: Page to write
198 * @wbc: The writeback control
204 static int gfs2_jdata_writepage(struct page *page, struct writeback_control *wbc)
206 struct inode *inode = page->mapping->host;
207 struct gfs2_inode *ip = GFS2_I(inode);
208 struct gfs2_sbd *sdp = GFS2_SB(inode);
211 if (gfs2_assert_withdraw(sdp, gfs2_glock_is_held_excl(ip->i_gl)))
213 if (PageChecked(page) || current->journal_info)
215 ret = __gfs2_jdata_writepage(page, wbc);
219 redirty_page_for_writepage(wbc, page);
226 * gfs2_writepages - Write a bunch of dirty pages back to disk
227 * @mapping: The mapping to write
228 * @wbc: Write-back control
230 * Used for both ordered and writeback modes.
232 static int gfs2_writepages(struct address_space *mapping,
233 struct writeback_control *wbc)
235 struct gfs2_sbd *sdp = gfs2_mapping2sbd(mapping);
236 int ret = mpage_writepages(mapping, wbc, gfs2_get_block_noalloc);
239 * Even if we didn't write any pages here, we might still be holding
240 * dirty pages in the ail. We forcibly flush the ail because we don't
241 * want balance_dirty_pages() to loop indefinitely trying to write out
242 * pages held in the ail that it can't find.
245 set_bit(SDF_FORCE_AIL_FLUSH, &sdp->sd_flags);
251 * gfs2_write_jdata_pagevec - Write back a pagevec's worth of pages
252 * @mapping: The mapping
253 * @wbc: The writeback control
254 * @pvec: The vector of pages
255 * @nr_pages: The number of pages to write
256 * @done_index: Page index
258 * Returns: non-zero if loop should terminate, zero otherwise
261 static int gfs2_write_jdata_pagevec(struct address_space *mapping,
262 struct writeback_control *wbc,
263 struct pagevec *pvec,
267 struct inode *inode = mapping->host;
268 struct gfs2_sbd *sdp = GFS2_SB(inode);
269 unsigned nrblocks = nr_pages * (PAGE_SIZE/inode->i_sb->s_blocksize);
273 ret = gfs2_trans_begin(sdp, nrblocks, nrblocks);
277 for(i = 0; i < nr_pages; i++) {
278 struct page *page = pvec->pages[i];
280 *done_index = page->index;
284 if (unlikely(page->mapping != mapping)) {
290 if (!PageDirty(page)) {
291 /* someone wrote it for us */
292 goto continue_unlock;
295 if (PageWriteback(page)) {
296 if (wbc->sync_mode != WB_SYNC_NONE)
297 wait_on_page_writeback(page);
299 goto continue_unlock;
302 BUG_ON(PageWriteback(page));
303 if (!clear_page_dirty_for_io(page))
304 goto continue_unlock;
306 trace_wbc_writepage(wbc, inode_to_bdi(inode));
308 ret = __gfs2_jdata_writepage(page, wbc);
310 if (ret == AOP_WRITEPAGE_ACTIVATE) {
316 * done_index is set past this page,
317 * so media errors will not choke
318 * background writeout for the entire
319 * file. This has consequences for
320 * range_cyclic semantics (ie. it may
321 * not be suitable for data integrity
324 *done_index = page->index + 1;
331 * We stop writing back only if we are not doing
332 * integrity sync. In case of integrity sync we have to
333 * keep going until we have written all the pages
334 * we tagged for writeback prior to entering this loop.
336 if (--wbc->nr_to_write <= 0 && wbc->sync_mode == WB_SYNC_NONE) {
347 * gfs2_write_cache_jdata - Like write_cache_pages but different
348 * @mapping: The mapping to write
349 * @wbc: The writeback control
351 * The reason that we use our own function here is that we need to
352 * start transactions before we grab page locks. This allows us
353 * to get the ordering right.
356 static int gfs2_write_cache_jdata(struct address_space *mapping,
357 struct writeback_control *wbc)
363 pgoff_t uninitialized_var(writeback_index);
372 if (wbc->range_cyclic) {
373 writeback_index = mapping->writeback_index; /* prev offset */
374 index = writeback_index;
381 index = wbc->range_start >> PAGE_SHIFT;
382 end = wbc->range_end >> PAGE_SHIFT;
383 if (wbc->range_start == 0 && wbc->range_end == LLONG_MAX)
385 cycled = 1; /* ignore range_cyclic tests */
387 if (wbc->sync_mode == WB_SYNC_ALL || wbc->tagged_writepages)
388 tag = PAGECACHE_TAG_TOWRITE;
390 tag = PAGECACHE_TAG_DIRTY;
393 if (wbc->sync_mode == WB_SYNC_ALL || wbc->tagged_writepages)
394 tag_pages_for_writeback(mapping, index, end);
396 while (!done && (index <= end)) {
397 nr_pages = pagevec_lookup_range_tag(&pvec, mapping, &index, end,
402 ret = gfs2_write_jdata_pagevec(mapping, wbc, &pvec, nr_pages, &done_index);
407 pagevec_release(&pvec);
411 if (!cycled && !done) {
414 * We hit the last page and there is more work to be done: wrap
415 * back to the start of the file
419 end = writeback_index - 1;
423 if (wbc->range_cyclic || (range_whole && wbc->nr_to_write > 0))
424 mapping->writeback_index = done_index;
431 * gfs2_jdata_writepages - Write a bunch of dirty pages back to disk
432 * @mapping: The mapping to write
433 * @wbc: The writeback control
437 static int gfs2_jdata_writepages(struct address_space *mapping,
438 struct writeback_control *wbc)
440 struct gfs2_inode *ip = GFS2_I(mapping->host);
441 struct gfs2_sbd *sdp = GFS2_SB(mapping->host);
444 ret = gfs2_write_cache_jdata(mapping, wbc);
445 if (ret == 0 && wbc->sync_mode == WB_SYNC_ALL) {
446 gfs2_log_flush(sdp, ip->i_gl, GFS2_LOG_HEAD_FLUSH_NORMAL |
447 GFS2_LFC_JDATA_WPAGES);
448 ret = gfs2_write_cache_jdata(mapping, wbc);
454 * stuffed_readpage - Fill in a Linux page with stuffed file data
461 int stuffed_readpage(struct gfs2_inode *ip, struct page *page)
463 struct buffer_head *dibh;
464 u64 dsize = i_size_read(&ip->i_inode);
469 * Due to the order of unstuffing files and ->fault(), we can be
470 * asked for a zero page in the case of a stuffed file being extended,
471 * so we need to supply one here. It doesn't happen often.
473 if (unlikely(page->index)) {
474 zero_user(page, 0, PAGE_SIZE);
475 SetPageUptodate(page);
479 error = gfs2_meta_inode_buffer(ip, &dibh);
483 kaddr = kmap_atomic(page);
484 if (dsize > gfs2_max_stuffed_size(ip))
485 dsize = gfs2_max_stuffed_size(ip);
486 memcpy(kaddr, dibh->b_data + sizeof(struct gfs2_dinode), dsize);
487 memset(kaddr + dsize, 0, PAGE_SIZE - dsize);
488 kunmap_atomic(kaddr);
489 flush_dcache_page(page);
491 SetPageUptodate(page);
498 * __gfs2_readpage - readpage
499 * @file: The file to read a page for
500 * @page: The page to read
502 * This is the core of gfs2's readpage. It's used by the internal file
503 * reading code as in that case we already hold the glock. Also it's
504 * called by gfs2_readpage() once the required lock has been granted.
507 static int __gfs2_readpage(void *file, struct page *page)
509 struct gfs2_inode *ip = GFS2_I(page->mapping->host);
510 struct gfs2_sbd *sdp = GFS2_SB(page->mapping->host);
514 if (i_blocksize(page->mapping->host) == PAGE_SIZE &&
515 !page_has_buffers(page)) {
516 error = iomap_readpage(page, &gfs2_iomap_ops);
517 } else if (gfs2_is_stuffed(ip)) {
518 error = stuffed_readpage(ip, page);
521 error = mpage_readpage(page, gfs2_block_map);
524 if (unlikely(test_bit(SDF_SHUTDOWN, &sdp->sd_flags)))
531 * gfs2_readpage - read a page of a file
532 * @file: The file to read
533 * @page: The page of the file
535 * This deals with the locking required. We have to unlock and
536 * relock the page in order to get the locking in the right
540 static int gfs2_readpage(struct file *file, struct page *page)
542 struct address_space *mapping = page->mapping;
543 struct gfs2_inode *ip = GFS2_I(mapping->host);
544 struct gfs2_holder gh;
548 gfs2_holder_init(ip->i_gl, LM_ST_SHARED, 0, &gh);
549 error = gfs2_glock_nq(&gh);
552 error = AOP_TRUNCATED_PAGE;
554 if (page->mapping == mapping && !PageUptodate(page))
555 error = __gfs2_readpage(file, page);
560 gfs2_holder_uninit(&gh);
561 if (error && error != AOP_TRUNCATED_PAGE)
567 * gfs2_internal_read - read an internal file
568 * @ip: The gfs2 inode
569 * @buf: The buffer to fill
570 * @pos: The file position
571 * @size: The amount to read
575 int gfs2_internal_read(struct gfs2_inode *ip, char *buf, loff_t *pos,
578 struct address_space *mapping = ip->i_inode.i_mapping;
579 unsigned long index = *pos / PAGE_SIZE;
580 unsigned offset = *pos & (PAGE_SIZE - 1);
588 if (offset + size > PAGE_SIZE)
589 amt = PAGE_SIZE - offset;
590 page = read_cache_page(mapping, index, __gfs2_readpage, NULL);
592 return PTR_ERR(page);
593 p = kmap_atomic(page);
594 memcpy(buf + copied, p + offset, amt);
600 } while(copied < size);
606 * gfs2_readpages - Read a bunch of pages at once
607 * @file: The file to read from
608 * @mapping: Address space info
609 * @pages: List of pages to read
610 * @nr_pages: Number of pages to read
613 * 1. This is only for readahead, so we can simply ignore any things
614 * which are slightly inconvenient (such as locking conflicts between
615 * the page lock and the glock) and return having done no I/O. Its
616 * obviously not something we'd want to do on too regular a basis.
617 * Any I/O we ignore at this time will be done via readpage later.
618 * 2. We don't handle stuffed files here we let readpage do the honours.
619 * 3. mpage_readpages() does most of the heavy lifting in the common case.
620 * 4. gfs2_block_map() is relied upon to set BH_Boundary in the right places.
623 static int gfs2_readpages(struct file *file, struct address_space *mapping,
624 struct list_head *pages, unsigned nr_pages)
626 struct inode *inode = mapping->host;
627 struct gfs2_inode *ip = GFS2_I(inode);
628 struct gfs2_sbd *sdp = GFS2_SB(inode);
629 struct gfs2_holder gh;
632 gfs2_holder_init(ip->i_gl, LM_ST_SHARED, 0, &gh);
633 ret = gfs2_glock_nq(&gh);
636 if (!gfs2_is_stuffed(ip))
637 ret = mpage_readpages(mapping, pages, nr_pages, gfs2_block_map);
640 gfs2_holder_uninit(&gh);
641 if (unlikely(test_bit(SDF_SHUTDOWN, &sdp->sd_flags)))
647 * adjust_fs_space - Adjusts the free space available due to gfs2_grow
648 * @inode: the rindex inode
650 void adjust_fs_space(struct inode *inode)
652 struct gfs2_sbd *sdp = inode->i_sb->s_fs_info;
653 struct gfs2_inode *m_ip = GFS2_I(sdp->sd_statfs_inode);
654 struct gfs2_inode *l_ip = GFS2_I(sdp->sd_sc_inode);
655 struct gfs2_statfs_change_host *m_sc = &sdp->sd_statfs_master;
656 struct gfs2_statfs_change_host *l_sc = &sdp->sd_statfs_local;
657 struct buffer_head *m_bh, *l_bh;
658 u64 fs_total, new_free;
660 /* Total up the file system space, according to the latest rindex. */
661 fs_total = gfs2_ri_total(sdp);
662 if (gfs2_meta_inode_buffer(m_ip, &m_bh) != 0)
665 spin_lock(&sdp->sd_statfs_spin);
666 gfs2_statfs_change_in(m_sc, m_bh->b_data +
667 sizeof(struct gfs2_dinode));
668 if (fs_total > (m_sc->sc_total + l_sc->sc_total))
669 new_free = fs_total - (m_sc->sc_total + l_sc->sc_total);
672 spin_unlock(&sdp->sd_statfs_spin);
673 fs_warn(sdp, "File system extended by %llu blocks.\n",
674 (unsigned long long)new_free);
675 gfs2_statfs_change(sdp, new_free, new_free, 0);
677 if (gfs2_meta_inode_buffer(l_ip, &l_bh) != 0)
679 update_statfs(sdp, m_bh, l_bh);
686 * gfs2_stuffed_write_end - Write end for stuffed files
688 * @dibh: The buffer_head containing the on-disk inode
689 * @pos: The file position
690 * @copied: How much was actually copied by the VFS
693 * This copies the data from the page into the inode block after
694 * the inode data structure itself.
696 * Returns: copied bytes or errno
698 int gfs2_stuffed_write_end(struct inode *inode, struct buffer_head *dibh,
699 loff_t pos, unsigned copied,
702 struct gfs2_inode *ip = GFS2_I(inode);
703 u64 to = pos + copied;
705 unsigned char *buf = dibh->b_data + sizeof(struct gfs2_dinode);
707 BUG_ON(pos + copied > gfs2_max_stuffed_size(ip));
709 kaddr = kmap_atomic(page);
710 memcpy(buf + pos, kaddr + pos, copied);
711 flush_dcache_page(page);
712 kunmap_atomic(kaddr);
714 WARN_ON(!PageUptodate(page));
719 if (inode->i_size < to)
720 i_size_write(inode, to);
721 mark_inode_dirty(inode);
727 * jdata_set_page_dirty - Page dirtying function
728 * @page: The page to dirty
730 * Returns: 1 if it dirtyed the page, or 0 otherwise
733 static int jdata_set_page_dirty(struct page *page)
735 SetPageChecked(page);
736 return __set_page_dirty_buffers(page);
740 * gfs2_bmap - Block map function
741 * @mapping: Address space info
742 * @lblock: The block to map
744 * Returns: The disk address for the block or 0 on hole or error
747 static sector_t gfs2_bmap(struct address_space *mapping, sector_t lblock)
749 struct gfs2_inode *ip = GFS2_I(mapping->host);
750 struct gfs2_holder i_gh;
754 error = gfs2_glock_nq_init(ip->i_gl, LM_ST_SHARED, LM_FLAG_ANY, &i_gh);
758 if (!gfs2_is_stuffed(ip))
759 dblock = generic_block_bmap(mapping, lblock, gfs2_block_map);
761 gfs2_glock_dq_uninit(&i_gh);
766 static void gfs2_discard(struct gfs2_sbd *sdp, struct buffer_head *bh)
768 struct gfs2_bufdata *bd;
772 clear_buffer_dirty(bh);
775 if (!list_empty(&bd->bd_list) && !buffer_pinned(bh))
776 list_del_init(&bd->bd_list);
778 gfs2_remove_from_journal(bh, REMOVE_JDATA);
781 clear_buffer_mapped(bh);
782 clear_buffer_req(bh);
783 clear_buffer_new(bh);
784 gfs2_log_unlock(sdp);
788 static void gfs2_invalidatepage(struct page *page, unsigned int offset,
791 struct gfs2_sbd *sdp = GFS2_SB(page->mapping->host);
792 unsigned int stop = offset + length;
793 int partial_page = (offset || length < PAGE_SIZE);
794 struct buffer_head *bh, *head;
795 unsigned long pos = 0;
797 BUG_ON(!PageLocked(page));
799 ClearPageChecked(page);
800 if (!page_has_buffers(page))
803 bh = head = page_buffers(page);
805 if (pos + bh->b_size > stop)
809 gfs2_discard(sdp, bh);
811 bh = bh->b_this_page;
812 } while (bh != head);
815 try_to_release_page(page, 0);
819 * gfs2_releasepage - free the metadata associated with a page
820 * @page: the page that's being released
821 * @gfp_mask: passed from Linux VFS, ignored by us
823 * Call try_to_free_buffers() if the buffers in this page can be
829 int gfs2_releasepage(struct page *page, gfp_t gfp_mask)
831 struct address_space *mapping = page->mapping;
832 struct gfs2_sbd *sdp = gfs2_mapping2sbd(mapping);
833 struct buffer_head *bh, *head;
834 struct gfs2_bufdata *bd;
836 if (!page_has_buffers(page))
840 * From xfs_vm_releasepage: mm accommodates an old ext3 case where
841 * clean pages might not have had the dirty bit cleared. Thus, it can
842 * send actual dirty pages to ->releasepage() via shrink_active_list().
844 * As a workaround, we skip pages that contain dirty buffers below.
845 * Once ->releasepage isn't called on dirty pages anymore, we can warn
846 * on dirty buffers like we used to here again.
850 spin_lock(&sdp->sd_ail_lock);
851 head = bh = page_buffers(page);
853 if (atomic_read(&bh->b_count))
858 if (buffer_dirty(bh) || WARN_ON(buffer_pinned(bh)))
860 bh = bh->b_this_page;
862 spin_unlock(&sdp->sd_ail_lock);
864 head = bh = page_buffers(page);
868 gfs2_assert_warn(sdp, bd->bd_bh == bh);
869 if (!list_empty(&bd->bd_list))
870 list_del_init(&bd->bd_list);
872 bh->b_private = NULL;
873 kmem_cache_free(gfs2_bufdata_cachep, bd);
876 bh = bh->b_this_page;
877 } while (bh != head);
878 gfs2_log_unlock(sdp);
880 return try_to_free_buffers(page);
883 spin_unlock(&sdp->sd_ail_lock);
884 gfs2_log_unlock(sdp);
888 static const struct address_space_operations gfs2_writeback_aops = {
889 .writepage = gfs2_writepage,
890 .writepages = gfs2_writepages,
891 .readpage = gfs2_readpage,
892 .readpages = gfs2_readpages,
894 .invalidatepage = gfs2_invalidatepage,
895 .releasepage = gfs2_releasepage,
896 .direct_IO = noop_direct_IO,
897 .migratepage = buffer_migrate_page,
898 .is_partially_uptodate = block_is_partially_uptodate,
899 .error_remove_page = generic_error_remove_page,
902 static const struct address_space_operations gfs2_ordered_aops = {
903 .writepage = gfs2_writepage,
904 .writepages = gfs2_writepages,
905 .readpage = gfs2_readpage,
906 .readpages = gfs2_readpages,
907 .set_page_dirty = __set_page_dirty_buffers,
909 .invalidatepage = gfs2_invalidatepage,
910 .releasepage = gfs2_releasepage,
911 .direct_IO = noop_direct_IO,
912 .migratepage = buffer_migrate_page,
913 .is_partially_uptodate = block_is_partially_uptodate,
914 .error_remove_page = generic_error_remove_page,
917 static const struct address_space_operations gfs2_jdata_aops = {
918 .writepage = gfs2_jdata_writepage,
919 .writepages = gfs2_jdata_writepages,
920 .readpage = gfs2_readpage,
921 .readpages = gfs2_readpages,
922 .set_page_dirty = jdata_set_page_dirty,
924 .invalidatepage = gfs2_invalidatepage,
925 .releasepage = gfs2_releasepage,
926 .is_partially_uptodate = block_is_partially_uptodate,
927 .error_remove_page = generic_error_remove_page,
930 void gfs2_set_aops(struct inode *inode)
932 struct gfs2_inode *ip = GFS2_I(inode);
934 if (gfs2_is_writeback(ip))
935 inode->i_mapping->a_ops = &gfs2_writeback_aops;
936 else if (gfs2_is_ordered(ip))
937 inode->i_mapping->a_ops = &gfs2_ordered_aops;
938 else if (gfs2_is_jdata(ip))
939 inode->i_mapping->a_ops = &gfs2_jdata_aops;