From: Julia Lawall Date: Sun, 15 Nov 2009 20:30:58 +0000 (-0500) Subject: ext4: fix i_flags access in ext4_da_writepages_trans_blocks() X-Git-Tag: v2.6.31.8~27 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=882e3a7d67adf1bd773efd2d9999383b414832fd;p=thirdparty%2Fkernel%2Fstable.git ext4: fix i_flags access in ext4_da_writepages_trans_blocks() (cherry picked from commit 30c6e07a92ea4cb87160d32ffa9bce172576ae4c) 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 Signed-off-by: "Theodore Ts'o" Signed-off-by: Greg Kroah-Hartman --- diff --git a/fs/ext4/inode.c b/fs/ext4/inode.c index f670f15c96fae..c6d2fd11caa72 100644 --- a/fs/ext4/inode.c +++ b/fs/ext4/inode.c @@ -2785,7 +2785,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;