diff options
Diffstat (limited to 'fs/ext4')
-rw-r--r-- | fs/ext4/inode.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/fs/ext4/inode.c b/fs/ext4/inode.c index f9c642b22efa..349dd6b4da47 100644 --- a/fs/ext4/inode.c +++ b/fs/ext4/inode.c | |||
@@ -3373,6 +3373,7 @@ static const struct address_space_operations ext4_ordered_aops = { | |||
3373 | .direct_IO = ext4_direct_IO, | 3373 | .direct_IO = ext4_direct_IO, |
3374 | .migratepage = buffer_migrate_page, | 3374 | .migratepage = buffer_migrate_page, |
3375 | .is_partially_uptodate = block_is_partially_uptodate, | 3375 | .is_partially_uptodate = block_is_partially_uptodate, |
3376 | .error_remove_page = generic_error_remove_page, | ||
3376 | }; | 3377 | }; |
3377 | 3378 | ||
3378 | static const struct address_space_operations ext4_writeback_aops = { | 3379 | static const struct address_space_operations ext4_writeback_aops = { |
@@ -3388,6 +3389,7 @@ static const struct address_space_operations ext4_writeback_aops = { | |||
3388 | .direct_IO = ext4_direct_IO, | 3389 | .direct_IO = ext4_direct_IO, |
3389 | .migratepage = buffer_migrate_page, | 3390 | .migratepage = buffer_migrate_page, |
3390 | .is_partially_uptodate = block_is_partially_uptodate, | 3391 | .is_partially_uptodate = block_is_partially_uptodate, |
3392 | .error_remove_page = generic_error_remove_page, | ||
3391 | }; | 3393 | }; |
3392 | 3394 | ||
3393 | static const struct address_space_operations ext4_journalled_aops = { | 3395 | static const struct address_space_operations ext4_journalled_aops = { |
@@ -3402,6 +3404,7 @@ static const struct address_space_operations ext4_journalled_aops = { | |||
3402 | .invalidatepage = ext4_invalidatepage, | 3404 | .invalidatepage = ext4_invalidatepage, |
3403 | .releasepage = ext4_releasepage, | 3405 | .releasepage = ext4_releasepage, |
3404 | .is_partially_uptodate = block_is_partially_uptodate, | 3406 | .is_partially_uptodate = block_is_partially_uptodate, |
3407 | .error_remove_page = generic_error_remove_page, | ||
3405 | }; | 3408 | }; |
3406 | 3409 | ||
3407 | static const struct address_space_operations ext4_da_aops = { | 3410 | static const struct address_space_operations ext4_da_aops = { |
@@ -3418,6 +3421,7 @@ static const struct address_space_operations ext4_da_aops = { | |||
3418 | .direct_IO = ext4_direct_IO, | 3421 | .direct_IO = ext4_direct_IO, |
3419 | .migratepage = buffer_migrate_page, | 3422 | .migratepage = buffer_migrate_page, |
3420 | .is_partially_uptodate = block_is_partially_uptodate, | 3423 | .is_partially_uptodate = block_is_partially_uptodate, |
3424 | .error_remove_page = generic_error_remove_page, | ||
3421 | }; | 3425 | }; |
3422 | 3426 | ||
3423 | void ext4_set_aops(struct inode *inode) | 3427 | void ext4_set_aops(struct inode *inode) |