ext4: fix i_flags access in ext4_da_writepages_trans_blocks()
authorJulia Lawall <[email protected]>
Sun, 15 Nov 2009 20:30:58 +0000 (15:30 -0500)
committerTheodore Ts'o <[email protected]>
Sun, 15 Nov 2009 20:30:58 +0000 (15:30 -0500)
We need to be testing the i_flags field in the ext4 specific portion
of the inode, instead of the (confusingly aliased) i_flags field in
the generic struct inode.

Signed-off-by: Julia Lawall <[email protected]>
Signed-off-by: "Theodore Ts'o" <[email protected]>
Cc: [email protected]
fs/ext4/inode.c

index c420aaba6e9c2d3f22c73dc794311cb23a6f18c4..9c097489af89270c37a23a39cfa074842243573e 100644 (file)
@@ -2789,7 +2789,7 @@ static int ext4_da_writepages_trans_blocks(struct inode *inode)
         * number of contiguous block. So we will limit
         * number of contiguous block to a sane value
         */
-       if (!(inode->i_flags & EXT4_EXTENTS_FL) &&
+       if (!(EXT4_I(inode)->i_flags & EXT4_EXTENTS_FL) &&
            (max_blocks > EXT4_MAX_TRANS_DATA))
                max_blocks = EXT4_MAX_TRANS_DATA;