aboutsummaryrefslogtreecommitdiffstats
path: root/fs
diff options
context:
space:
mode:
Diffstat (limited to 'fs')
-rw-r--r--fs/f2fs/segment.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/fs/f2fs/segment.h b/fs/f2fs/segment.h
index a9417b94d6bc..458bf5c726f7 100644
--- a/fs/f2fs/segment.h
+++ b/fs/f2fs/segment.h
@@ -464,10 +464,8 @@ static inline bool has_not_enough_free_secs(struct f2fs_sb_info *sbi)
464 if (sbi->por_doing) 464 if (sbi->por_doing)
465 return false; 465 return false;
466 466
467 if (free_sections(sbi) <= (node_secs + 2 * dent_secs + 467 return (free_sections(sbi) <= (node_secs + 2 * dent_secs +
468 reserved_sections(sbi))) 468 reserved_sections(sbi)));
469 return true;
470 return false;
471} 469}
472 470
473static inline int utilization(struct f2fs_sb_info *sbi) 471static inline int utilization(struct f2fs_sb_info *sbi)