diff options
Diffstat (limited to 'fs/ext3/inode.c')
-rw-r--r-- | fs/ext3/inode.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/fs/ext3/inode.c b/fs/ext3/inode.c index b49908a167ae..953b430f92e3 100644 --- a/fs/ext3/inode.c +++ b/fs/ext3/inode.c | |||
@@ -1819,6 +1819,7 @@ static const struct address_space_operations ext3_ordered_aops = { | |||
1819 | .direct_IO = ext3_direct_IO, | 1819 | .direct_IO = ext3_direct_IO, |
1820 | .migratepage = buffer_migrate_page, | 1820 | .migratepage = buffer_migrate_page, |
1821 | .is_partially_uptodate = block_is_partially_uptodate, | 1821 | .is_partially_uptodate = block_is_partially_uptodate, |
1822 | .error_remove_page = generic_error_remove_page, | ||
1822 | }; | 1823 | }; |
1823 | 1824 | ||
1824 | static const struct address_space_operations ext3_writeback_aops = { | 1825 | static const struct address_space_operations ext3_writeback_aops = { |
@@ -1834,6 +1835,7 @@ static const struct address_space_operations ext3_writeback_aops = { | |||
1834 | .direct_IO = ext3_direct_IO, | 1835 | .direct_IO = ext3_direct_IO, |
1835 | .migratepage = buffer_migrate_page, | 1836 | .migratepage = buffer_migrate_page, |
1836 | .is_partially_uptodate = block_is_partially_uptodate, | 1837 | .is_partially_uptodate = block_is_partially_uptodate, |
1838 | .error_remove_page = generic_error_remove_page, | ||
1837 | }; | 1839 | }; |
1838 | 1840 | ||
1839 | static const struct address_space_operations ext3_journalled_aops = { | 1841 | static const struct address_space_operations ext3_journalled_aops = { |
@@ -1848,6 +1850,7 @@ static const struct address_space_operations ext3_journalled_aops = { | |||
1848 | .invalidatepage = ext3_invalidatepage, | 1850 | .invalidatepage = ext3_invalidatepage, |
1849 | .releasepage = ext3_releasepage, | 1851 | .releasepage = ext3_releasepage, |
1850 | .is_partially_uptodate = block_is_partially_uptodate, | 1852 | .is_partially_uptodate = block_is_partially_uptodate, |
1853 | .error_remove_page = generic_error_remove_page, | ||
1851 | }; | 1854 | }; |
1852 | 1855 | ||
1853 | void ext3_set_aops(struct inode *inode) | 1856 | void ext3_set_aops(struct inode *inode) |