summaryrefslogtreecommitdiffstats
path: root/fs/f2fs/gc.c
diff options
context:
space:
mode:
authorJaegeuk Kim2013-10-24 07:19:18 +0200
committerJaegeuk Kim2013-10-25 09:54:38 +0200
commit4660f9c0fe484353b17a4b9d1cc2b036fa895f76 (patch)
treeb992484821791c6b87dc3debfc7df6139dff6480 /fs/f2fs/gc.c
parentf2fs: reclaim prefree segments periodically (diff)
downloadkernel-qcow2-linux-4660f9c0fe484353b17a4b9d1cc2b036fa895f76.tar.gz
kernel-qcow2-linux-4660f9c0fe484353b17a4b9d1cc2b036fa895f76.tar.xz
kernel-qcow2-linux-4660f9c0fe484353b17a4b9d1cc2b036fa895f76.zip
f2fs: introduce f2fs_balance_fs_bg for some background jobs
This patch merges some background jobs into this new function. Signed-off-by: Changman Lee <cm224.lee@samsung.com> Signed-off-by: Jaegeuk Kim <jaegeuk.kim@samsung.com>
Diffstat (limited to 'fs/f2fs/gc.c')
-rw-r--r--fs/f2fs/gc.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/fs/f2fs/gc.c b/fs/f2fs/gc.c
index 783c6cc6253c..b7ad1ec7e4cc 100644
--- a/fs/f2fs/gc.c
+++ b/fs/f2fs/gc.c
@@ -83,9 +83,8 @@ static int gc_thread_func(void *data)
if (f2fs_gc(sbi))
wait_ms = gc_th->no_gc_sleep_time;
- /* balancing prefree segments */
- if (excess_prefree_segs(sbi))
- f2fs_sync_fs(sbi->sb, true);
+ /* balancing f2fs's metadata periodically */
+ f2fs_balance_fs_bg(sbi);
} while (!kthread_should_stop());
return 0;