f2fs: change segment to section in f2fs_ioc_gc_range
[ Upstream commit 67b0e42b768c9ddc3fd5ca1aee3db815cfaa635c ] f2fs_ioc_gc_range skips blocks_per_seg each time, however, f2fs_gc moves blocks of section each time, so fix it from segment to section. Signed-off-by: Yunlong Song <yunlong.song@huawei.com> Reviewed-by: Chao Yu <yuchao0@huawei.com> Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org> Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
parent
859c93a04b
commit
313f1fef66
1 changed files with 1 additions and 1 deletions
|
@ -2143,7 +2143,7 @@ static int f2fs_ioc_gc_range(struct file *filp, unsigned long arg)
|
|||
}
|
||||
|
||||
ret = f2fs_gc(sbi, range.sync, true, GET_SEGNO(sbi, range.start));
|
||||
range.start += sbi->blocks_per_seg;
|
||||
range.start += BLKS_PER_SEC(sbi);
|
||||
if (range.start <= end)
|
||||
goto do_more;
|
||||
out:
|
||||
|
|
Loading…
Add table
Reference in a new issue