mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2025-01-19 20:07:04 +07:00
ext4: Fix off-by-one-error in ext4_valid_extent_idx()
Signed-off-by: Thiemo Nagel <thiemo.nagel@ph.tum.de> Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
This commit is contained in:
parent
f73953c065
commit
e44543b83b
@ -342,7 +342,7 @@ static int ext4_valid_extent_idx(struct inode *inode,
|
|||||||
ext4_fsblk_t block = idx_pblock(ext_idx);
|
ext4_fsblk_t block = idx_pblock(ext_idx);
|
||||||
struct ext4_super_block *es = EXT4_SB(inode->i_sb)->s_es;
|
struct ext4_super_block *es = EXT4_SB(inode->i_sb)->s_es;
|
||||||
if (unlikely(block < le32_to_cpu(es->s_first_data_block) ||
|
if (unlikely(block < le32_to_cpu(es->s_first_data_block) ||
|
||||||
(block > ext4_blocks_count(es))))
|
(block >= ext4_blocks_count(es))))
|
||||||
return 0;
|
return 0;
|
||||||
else
|
else
|
||||||
return 1;
|
return 1;
|
||||||
|
Loading…
Reference in New Issue
Block a user