diff options
-rw-r--r-- | fs/ext4/inode.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ext4/inode.c b/fs/ext4/inode.c index c420aaba6e9c..9c097489af89 100644 --- a/fs/ext4/inode.c +++ b/fs/ext4/inode.c | |||
@@ -2789,7 +2789,7 @@ static int ext4_da_writepages_trans_blocks(struct inode *inode) | |||
2789 | * number of contiguous block. So we will limit | 2789 | * number of contiguous block. So we will limit |
2790 | * number of contiguous block to a sane value | 2790 | * number of contiguous block to a sane value |
2791 | */ | 2791 | */ |
2792 | if (!(inode->i_flags & EXT4_EXTENTS_FL) && | 2792 | if (!(EXT4_I(inode)->i_flags & EXT4_EXTENTS_FL) && |
2793 | (max_blocks > EXT4_MAX_TRANS_DATA)) | 2793 | (max_blocks > EXT4_MAX_TRANS_DATA)) |
2794 | max_blocks = EXT4_MAX_TRANS_DATA; | 2794 | max_blocks = EXT4_MAX_TRANS_DATA; |
2795 | 2795 | ||