aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/fs/f2fs
diff options
context:
space:
mode:
authorSahitya Tummala <stummala@codeaurora.org>2018-11-26 13:31:41 +0530
committerJaegeuk Kim <jaegeuk@kernel.org>2018-11-26 16:38:46 -0800
commit08ac9a3870f6babb2b1fff46118536ca8a71ef19 (patch)
treee10a47b1f1c4c3545534ba21b91cdd33e3336150 /fs/f2fs
parentf2fs: make "f2fs_fault_name[]" const char * (diff)
downloadwireguard-linux-08ac9a3870f6babb2b1fff46118536ca8a71ef19.tar.xz
wireguard-linux-08ac9a3870f6babb2b1fff46118536ca8a71ef19.zip
f2fs: fix to allow node segment for GC by ioctl path
Allow node type segments also to be GC'd via f2fs ioctl F2FS_IOC_GARBAGE_COLLECT_RANGE. Signed-off-by: Sahitya Tummala <stummala@codeaurora.org> Reviewed-by: Chao Yu <yuchao0@huawei.com> Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
Diffstat (limited to 'fs/f2fs')
-rw-r--r--fs/f2fs/gc.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/fs/f2fs/gc.c b/fs/f2fs/gc.c
index 8606ebf509cb..9a60801ab1c5 100644
--- a/fs/f2fs/gc.c
+++ b/fs/f2fs/gc.c
@@ -323,8 +323,7 @@ static int get_victim_by_default(struct f2fs_sb_info *sbi,
p.min_cost = get_max_cost(sbi, &p);
if (*result != NULL_SEGNO) {
- if (IS_DATASEG(get_seg_entry(sbi, *result)->type) &&
- get_valid_blocks(sbi, *result, false) &&
+ if (get_valid_blocks(sbi, *result, false) &&
!sec_usage_check(sbi, GET_SEC_FROM_SEG(sbi, *result)))
p.min_segno = *result;
goto out;