aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/fs/f2fs
diff options
context:
space:
mode:
authorSahitya Tummala <stummala@codeaurora.org>2018-11-26 13:31:42 +0530
committerJaegeuk Kim <jaegeuk@kernel.org>2018-11-26 16:38:49 -0800
commite3c59108da8655de78fe59843372b8cfab1a8e33 (patch)
tree6f7f3f86dadd31da15dffe60d62f637c10aacf53 /fs/f2fs
parentf2fs: fix to allow node segment for GC by ioctl path (diff)
downloadwireguard-linux-e3c59108da8655de78fe59843372b8cfab1a8e33.tar.xz
wireguard-linux-e3c59108da8655de78fe59843372b8cfab1a8e33.zip
f2fs: adjust trace print in f2fs_get_victim() to cover all paths
Adjust the trace print in f2fs_get_victim() to cover GC done by 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.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/fs/f2fs/gc.c b/fs/f2fs/gc.c
index 9a60801ab1c5..71462f2e47d4 100644
--- a/fs/f2fs/gc.c
+++ b/fs/f2fs/gc.c
@@ -420,11 +420,12 @@ got_result:
set_bit(secno, dirty_i->victim_secmap);
}
+ }
+out:
+ if (p.min_segno != NULL_SEGNO)
trace_f2fs_get_victim(sbi->sb, type, gc_type, &p,
sbi->cur_victim_sec,
prefree_segments(sbi), free_segments(sbi));
- }
-out:
mutex_unlock(&dirty_i->seglist_lock);
return (p.min_segno == NULL_SEGNO) ? 0 : 1;