diff options
author | Theodore Ts'o <tytso@mit.edu> | 2009-11-15 15:29:56 -0500 |
---|---|---|
committer | Theodore Ts'o <tytso@mit.edu> | 2009-11-15 15:29:56 -0500 |
commit | 1032988c71f3f85483b2b4319684d1205a704c02 (patch) | |
tree | ace311067686bf5b93e10ab793ee62b593d8660f /fs/ext4/inode.c | |
parent | 8dadb198cb70ef811916668fe67eeec82e8858dd (diff) |
ext4: fix block validity checks so they work correctly with meta_bg
The block validity checks used by ext4_data_block_valid() wasn't
correctly written to check file systems with the meta_bg feature. Fix
this.
Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
Cc: stable@kernel.org
Diffstat (limited to 'fs/ext4/inode.c')
-rw-r--r-- | fs/ext4/inode.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/fs/ext4/inode.c b/fs/ext4/inode.c index 9c097489af89..0c0ddc1401e4 100644 --- a/fs/ext4/inode.c +++ b/fs/ext4/inode.c | |||
@@ -4884,10 +4884,7 @@ struct inode *ext4_iget(struct super_block *sb, unsigned long ino) | |||
4884 | 4884 | ||
4885 | ret = 0; | 4885 | ret = 0; |
4886 | if (ei->i_file_acl && | 4886 | if (ei->i_file_acl && |
4887 | ((ei->i_file_acl < | 4887 | !ext4_data_block_valid(EXT4_SB(sb), ei->i_file_acl, 1)) { |
4888 | (le32_to_cpu(EXT4_SB(sb)->s_es->s_first_data_block) + | ||
4889 | EXT4_SB(sb)->s_gdb_count)) || | ||
4890 | (ei->i_file_acl >= ext4_blocks_count(EXT4_SB(sb)->s_es)))) { | ||
4891 | ext4_error(sb, __func__, | 4888 | ext4_error(sb, __func__, |
4892 | "bad extended attribute block %llu in inode #%lu", | 4889 | "bad extended attribute block %llu in inode #%lu", |
4893 | ei->i_file_acl, inode->i_ino); | 4890 | ei->i_file_acl, inode->i_ino); |