diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2009-04-09 16:42:05 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2009-04-09 16:42:05 -0700 |
commit | 54f93b74cf8c575bb89f9bf32a40a39b83ace1e9 (patch) | |
tree | 3d91292c328e5e93922c2815b0fde943c9d07fad /fs/ext4/extents.c | |
parent | 3b3809ac5375f614bbf8671cddeae3c693aa584e (diff) | |
parent | 0f2ddca66d70c8ccba7486cf2d79c6b60e777abd (diff) | |
download | linux-54f93b74cf8c575bb89f9bf32a40a39b83ace1e9.tar.gz |
Merge branch 'for_linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4
* 'for_linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4:
ext4: check block device size on mount
ext4: Fix off-by-one-error in ext4_valid_extent_idx()
ext4: Fix big-endian problem in __ext4_check_blockref()
Diffstat (limited to 'fs/ext4/extents.c')
-rw-r--r-- | fs/ext4/extents.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ext4/extents.c b/fs/ext4/extents.c index ac77d8b8251d..6132353dcf62 100644 --- a/fs/ext4/extents.c +++ b/fs/ext4/extents.c @@ -342,7 +342,7 @@ static int ext4_valid_extent_idx(struct inode *inode, ext4_fsblk_t block = idx_pblock(ext_idx); struct ext4_super_block *es = EXT4_SB(inode->i_sb)->s_es; if (unlikely(block < le32_to_cpu(es->s_first_data_block) || - (block > ext4_blocks_count(es)))) + (block >= ext4_blocks_count(es)))) return 0; else return 1; |