diff options
Diffstat (limited to 'fs/xfs/linux-2.6/xfs_aops.c')
-rw-r--r-- | fs/xfs/linux-2.6/xfs_aops.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/fs/xfs/linux-2.6/xfs_aops.c b/fs/xfs/linux-2.6/xfs_aops.c index a55c3b26d840..0b211cba1909 100644 --- a/fs/xfs/linux-2.6/xfs_aops.c +++ b/fs/xfs/linux-2.6/xfs_aops.c | |||
@@ -409,7 +409,6 @@ xfs_start_buffer_writeback( | |||
409 | STATIC void | 409 | STATIC void |
410 | xfs_start_page_writeback( | 410 | xfs_start_page_writeback( |
411 | struct page *page, | 411 | struct page *page, |
412 | struct writeback_control *wbc, | ||
413 | int clear_dirty, | 412 | int clear_dirty, |
414 | int buffers) | 413 | int buffers) |
415 | { | 414 | { |
@@ -858,7 +857,7 @@ xfs_convert_page( | |||
858 | done = 1; | 857 | done = 1; |
859 | } | 858 | } |
860 | } | 859 | } |
861 | xfs_start_page_writeback(page, wbc, !page_dirty, count); | 860 | xfs_start_page_writeback(page, !page_dirty, count); |
862 | } | 861 | } |
863 | 862 | ||
864 | return done; | 863 | return done; |
@@ -1130,7 +1129,7 @@ xfs_page_state_convert( | |||
1130 | SetPageUptodate(page); | 1129 | SetPageUptodate(page); |
1131 | 1130 | ||
1132 | if (startio) | 1131 | if (startio) |
1133 | xfs_start_page_writeback(page, wbc, 1, count); | 1132 | xfs_start_page_writeback(page, 1, count); |
1134 | 1133 | ||
1135 | if (ioend && iomap_valid) { | 1134 | if (ioend && iomap_valid) { |
1136 | offset = (iomap.iomap_offset + iomap.iomap_bsize - 1) >> | 1135 | offset = (iomap.iomap_offset + iomap.iomap_bsize - 1) >> |