diff options
author | Changman Lee <cm224.lee@samsung.com> | 2015-03-08 19:07:04 -0400 |
---|---|---|
committer | Jaegeuk Kim <jaegeuk@kernel.org> | 2015-04-10 18:08:38 -0400 |
commit | e0150392ddfaaf5ccf338893f6db177a2c64a7ee (patch) | |
tree | 16880c53185b348601fef3e2b7bc3c068439ae3d /fs/f2fs | |
parent | d9f46bb1a84ee15f58c9c58ab91962b7dc6eb9a4 (diff) |
f2fs: cleanup statement about max orphan inodes calc
Through each macro, we can read the meaning easily.
Signed-off-by: Changman Lee <cm224.lee@samsung.com>
Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
Diffstat (limited to 'fs/f2fs')
-rw-r--r-- | fs/f2fs/checkpoint.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/fs/f2fs/checkpoint.c b/fs/f2fs/checkpoint.c index 53bc32804841..384bfc4c36c3 100644 --- a/fs/f2fs/checkpoint.c +++ b/fs/f2fs/checkpoint.c | |||
@@ -1104,13 +1104,6 @@ void init_ino_entry_info(struct f2fs_sb_info *sbi) | |||
1104 | im->ino_num = 0; | 1104 | im->ino_num = 0; |
1105 | } | 1105 | } |
1106 | 1106 | ||
1107 | /* | ||
1108 | * considering 512 blocks in a segment 8+cp_payload blocks are | ||
1109 | * needed for cp and log segment summaries. Remaining blocks are | ||
1110 | * used to keep orphan entries with the limitation one reserved | ||
1111 | * segment for cp pack we can have max 1020*(504-cp_payload) | ||
1112 | * orphan entries | ||
1113 | */ | ||
1114 | sbi->max_orphans = (sbi->blocks_per_seg - F2FS_CP_PACKS - | 1107 | sbi->max_orphans = (sbi->blocks_per_seg - F2FS_CP_PACKS - |
1115 | NR_CURSEG_TYPE - __cp_payload(sbi)) * | 1108 | NR_CURSEG_TYPE - __cp_payload(sbi)) * |
1116 | F2FS_ORPHANS_PER_BLOCK; | 1109 | F2FS_ORPHANS_PER_BLOCK; |