aboutsummaryrefslogtreecommitdiffstats
path: root/fs/ext4
diff options
context:
space:
mode:
Diffstat (limited to 'fs/ext4')
-rw-r--r--fs/ext4/inode.c4
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
3378static const struct address_space_operations ext4_writeback_aops = { 3379static 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
3393static const struct address_space_operations ext4_journalled_aops = { 3395static 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
3407static const struct address_space_operations ext4_da_aops = { 3410static 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
3423void ext4_set_aops(struct inode *inode) 3427void ext4_set_aops(struct inode *inode)