summaryrefslogtreecommitdiffstats
path: root/fs/f2fs/gc.h
diff options
context:
space:
mode:
authorNamjae Jeon2013-02-02 15:52:59 +0100
committerJaegeuk Kim2013-02-11 23:15:02 +0100
commit5ac206cf4f9aad871aa1f1dd653a3404092db56c (patch)
treef9d487406816b58c5e3b1b52a376d459245be803 /fs/f2fs/gc.h
parentf2fs: mark gc_thread as NULL when thread creation is failed (diff)
downloadkernel-qcow2-linux-5ac206cf4f9aad871aa1f1dd653a3404092db56c.tar.gz
kernel-qcow2-linux-5ac206cf4f9aad871aa1f1dd653a3404092db56c.tar.xz
kernel-qcow2-linux-5ac206cf4f9aad871aa1f1dd653a3404092db56c.zip
f2fs: make an accessor to get sections for particular block type
Introduce accessor to get the sections based upon the block type (node,dents...) and modify the functions : should_do_checkpoint, has_not_enough_free_secs to use this accessor function to get the node sections and dent sections. Signed-off-by: Namjae Jeon <namjae.jeon@samsung.com> Signed-off-by: Amit Sahrawat <a.sahrawat@samsung.com> Signed-off-by: Jaegeuk Kim <jaegeuk.kim@samsung.com>
Diffstat (limited to 'fs/f2fs/gc.h')
-rw-r--r--fs/f2fs/gc.h8
1 files changed, 2 insertions, 6 deletions
diff --git a/fs/f2fs/gc.h b/fs/f2fs/gc.h
index 3abdf83b5c16..c407a75a7daa 100644
--- a/fs/f2fs/gc.h
+++ b/fs/f2fs/gc.h
@@ -106,11 +106,7 @@ static inline int is_idle(struct f2fs_sb_info *sbi)
static inline bool should_do_checkpoint(struct f2fs_sb_info *sbi)
{
- unsigned int pages_per_sec = sbi->segs_per_sec *
- (1 << sbi->log_blocks_per_seg);
- int node_secs = ((get_pages(sbi, F2FS_DIRTY_NODES) + pages_per_sec - 1)
- >> sbi->log_blocks_per_seg) / sbi->segs_per_sec;
- int dent_secs = ((get_pages(sbi, F2FS_DIRTY_DENTS) + pages_per_sec - 1)
- >> sbi->log_blocks_per_seg) / sbi->segs_per_sec;
+ int node_secs = get_blocktype_secs(sbi, F2FS_DIRTY_NODES);
+ int dent_secs = get_blocktype_secs(sbi, F2FS_DIRTY_DENTS);
return free_sections(sbi) <= (node_secs + 2 * dent_secs + 2);
}