mirror of
https://github.com/FEX-Emu/linux.git
synced 2024-12-20 16:30:53 +00:00
f2fs: fix wrong block address calculation for a split extent
This patch fixes wrong calculation on block address field when an extent is split. Reviewed-by: Chao Yu <chao2.yu@samsung.com> Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
This commit is contained in:
parent
97a7b2c274
commit
7a2cb67867
@ -674,7 +674,7 @@ static void f2fs_update_extent_tree(struct inode *inode, pgoff_t fofs,
|
||||
endofs = dei.fofs + dei.len - 1;
|
||||
if (endofs - fofs >= F2FS_MIN_EXTENT_LEN) {
|
||||
set_extent_info(&ei, fofs + 1,
|
||||
fofs - dei.fofs + dei.blk, endofs - fofs);
|
||||
fofs - dei.fofs + dei.blk + 1, endofs - fofs);
|
||||
en2 = __insert_extent_tree(sbi, et, &ei, NULL);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user