Skip to content
Snippets Groups Projects
Commit 9ee18ff0 authored by Jan Kara's avatar Jan Kara Committed by Greg Kroah-Hartman
Browse files

udf: Fix off-by-one error when discarding preallocation


[ Upstream commit f54aa97f ]

The condition determining whether the preallocation can be used had
an off-by-one error so we didn't discard preallocation when new
allocation was just following it. This can then confuse code in
inode_getblk().

CC: stable@vger.kernel.org
Fixes: 16d05565 ("udf: Discard preallocation before extending file with a hole")
Signed-off-by: default avatarJan Kara <jack@suse.cz>
Signed-off-by: default avatarSasha Levin <sashal@kernel.org>
parent a926daa8
No related branches found
No related tags found
No related merge requests found
...@@ -443,7 +443,7 @@ static int udf_get_block(struct inode *inode, sector_t block, ...@@ -443,7 +443,7 @@ static int udf_get_block(struct inode *inode, sector_t block,
* Block beyond EOF and prealloc extents? Just discard preallocation * Block beyond EOF and prealloc extents? Just discard preallocation
* as it is not useful and complicates things. * as it is not useful and complicates things.
*/ */
if (((loff_t)block) << inode->i_blkbits > iinfo->i_lenExtents) if (((loff_t)block) << inode->i_blkbits >= iinfo->i_lenExtents)
udf_discard_prealloc(inode); udf_discard_prealloc(inode);
udf_clear_extent_cache(inode); udf_clear_extent_cache(inode);
phys = inode_getblk(inode, block, &err, &new); phys = inode_getblk(inode, block, &err, &new);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment