mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2025-01-18 03:06:43 +00:00
f2fs: remove unnecessary condition check for write_checkpoint in f2fs_gc
Since has_not_enough_free_secs(sbi, 0, 0) must be true if has_not_enough_ free_secs(sbi, sec_freed, 0) is true, write_checkpoint is sure to execute in both conditions. Signed-off-by: Yunlong Song <yunlong.song@huawei.com> Reviewed-by: Chao Yu <yuchao0@huawei.com> Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
This commit is contained in:
parent
9259228571
commit
77190e1f31
12
fs/f2fs/gc.c
12
fs/f2fs/gc.c
@ -958,15 +958,9 @@ gc_more:
|
|||||||
* enough free sections, we should flush dent/node blocks and do
|
* enough free sections, we should flush dent/node blocks and do
|
||||||
* garbage collections.
|
* garbage collections.
|
||||||
*/
|
*/
|
||||||
if (dirty_segments(sbi) || prefree_segments(sbi)) {
|
ret = write_checkpoint(sbi, &cpc);
|
||||||
ret = write_checkpoint(sbi, &cpc);
|
if (ret)
|
||||||
if (ret)
|
goto stop;
|
||||||
goto stop;
|
|
||||||
} else if (has_not_enough_free_secs(sbi, 0, 0)) {
|
|
||||||
ret = write_checkpoint(sbi, &cpc);
|
|
||||||
if (ret)
|
|
||||||
goto stop;
|
|
||||||
}
|
|
||||||
} else if (gc_type == BG_GC && !background) {
|
} else if (gc_type == BG_GC && !background) {
|
||||||
/* f2fs_balance_fs doesn't need to do BG_GC in critical path. */
|
/* f2fs_balance_fs doesn't need to do BG_GC in critical path. */
|
||||||
goto stop;
|
goto stop;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user