diff options
author | Julia Lawall <julia@diku.dk> | 2009-11-15 15:30:58 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2009-12-14 09:44:55 -0800 |
commit | 70095d96ced4dbe2ebc7cc0d248313e507dda31a (patch) | |
tree | 9fad5e8c5d065238e2faeae4d7cd7a6785a1ae8a /fs | |
parent | 0f9036c7eed145cdd8c8ed9e899c61f499278259 (diff) | |
download | lwn-70095d96ced4dbe2ebc7cc0d248313e507dda31a.tar.gz lwn-70095d96ced4dbe2ebc7cc0d248313e507dda31a.zip |
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 <julia@diku.dk>
Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'fs')
-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 a8dd8028229a..1842a72b72b1 100644 --- a/fs/ext4/inode.c +++ b/fs/ext4/inode.c @@ -2788,7 +2788,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; |