mirror of
https://gitee.com/openharmony/third_party_f2fs-tools
synced 2024-11-23 01:59:54 +00:00
!45 Revert "f2fs-tools: give less overprovisioning space"
Merge pull request !45 from 张代曰/revert_ovp
This commit is contained in:
commit
45debf115c
@ -150,7 +150,7 @@ safe_resize:
|
|||||||
c.new_overprovision = get_best_overprovision(sb);
|
c.new_overprovision = get_best_overprovision(sb);
|
||||||
|
|
||||||
c.new_reserved_segments =
|
c.new_reserved_segments =
|
||||||
(100 / c.new_overprovision + 1 + NR_CURSEG_TYPE) *
|
(2 * (100 / c.new_overprovision + 1) + 6) *
|
||||||
get_sb(segs_per_sec);
|
get_sb(segs_per_sec);
|
||||||
|
|
||||||
if ((get_sb(segment_count_main) - 2) < c.new_reserved_segments ||
|
if ((get_sb(segment_count_main) - 2) < c.new_reserved_segments ||
|
||||||
@ -475,13 +475,8 @@ static void rebuild_checkpoint(struct f2fs_sb_info *sbi,
|
|||||||
set_cp(overprov_segment_count, (get_newsb(segment_count_main) -
|
set_cp(overprov_segment_count, (get_newsb(segment_count_main) -
|
||||||
get_cp(rsvd_segment_count)) *
|
get_cp(rsvd_segment_count)) *
|
||||||
c.new_overprovision / 100);
|
c.new_overprovision / 100);
|
||||||
|
|
||||||
/* give 2 sections (DATA and NODE) to trigger GC in advance */
|
|
||||||
if (get_cp(overprov_segment_count) < get_cp(rsvd_segment_count))
|
|
||||||
set_cp(overprov_segment_count, get_cp(rsvd_segment_count));
|
|
||||||
|
|
||||||
set_cp(overprov_segment_count, get_cp(overprov_segment_count) +
|
set_cp(overprov_segment_count, get_cp(overprov_segment_count) +
|
||||||
2 * get_sb(segs_per_sec));
|
get_cp(rsvd_segment_count));
|
||||||
|
|
||||||
DBG(0, "Info: Overprovision ratio = %.3lf%%\n", c.new_overprovision);
|
DBG(0, "Info: Overprovision ratio = %.3lf%%\n", c.new_overprovision);
|
||||||
DBG(0, "Info: Overprovision segments = %u (GC reserved = %u)\n",
|
DBG(0, "Info: Overprovision segments = %u (GC reserved = %u)\n",
|
||||||
@ -612,8 +607,7 @@ static int f2fs_resize_check(struct f2fs_sb_info *sbi, struct f2fs_super_block *
|
|||||||
overprov_segment_count = (get_newsb(segment_count_main) -
|
overprov_segment_count = (get_newsb(segment_count_main) -
|
||||||
c.new_reserved_segments) *
|
c.new_reserved_segments) *
|
||||||
c.new_overprovision / 100;
|
c.new_overprovision / 100;
|
||||||
|
overprov_segment_count += c.new_reserved_segments;
|
||||||
overprov_segment_count += 2 * get_newsb(segs_per_sec);
|
|
||||||
|
|
||||||
user_block_count = (get_newsb(segment_count_main) -
|
user_block_count = (get_newsb(segment_count_main) -
|
||||||
overprov_segment_count) * c.blks_per_seg;
|
overprov_segment_count) * c.blks_per_seg;
|
||||||
|
@ -1635,13 +1635,10 @@ static inline double get_best_overprovision(struct f2fs_super_block *sb)
|
|||||||
}
|
}
|
||||||
|
|
||||||
for (; candidate <= end; candidate += diff) {
|
for (; candidate <= end; candidate += diff) {
|
||||||
reserved = (100 / candidate + 1 + NR_CURSEG_TYPE) *
|
reserved = (2 * (100 / candidate + 1) + 6) *
|
||||||
round_up(usable_main_segs, get_sb(section_count));
|
round_up(usable_main_segs, get_sb(section_count));
|
||||||
ovp = (usable_main_segs - reserved) * candidate / 100;
|
ovp = (usable_main_segs - reserved) * candidate / 100;
|
||||||
if (ovp < 0)
|
space = usable_main_segs - reserved - ovp;
|
||||||
continue;
|
|
||||||
space = usable_main_segs - max(reserved, ovp) -
|
|
||||||
2 * get_sb(segs_per_sec);
|
|
||||||
if (max_space < space) {
|
if (max_space < space) {
|
||||||
max_space = space;
|
max_space = space;
|
||||||
max_ovp = candidate;
|
max_ovp = candidate;
|
||||||
|
@ -486,7 +486,7 @@ static int f2fs_prepare_super_block(void)
|
|||||||
c.overprovision = get_best_overprovision(sb);
|
c.overprovision = get_best_overprovision(sb);
|
||||||
|
|
||||||
c.reserved_segments =
|
c.reserved_segments =
|
||||||
(100 / c.overprovision + 1 + NR_CURSEG_TYPE) *
|
(2 * (100 / c.overprovision + 1) + NR_CURSEG_TYPE) *
|
||||||
round_up(f2fs_get_usable_segments(sb), get_sb(section_count));
|
round_up(f2fs_get_usable_segments(sb), get_sb(section_count));
|
||||||
|
|
||||||
if (c.feature & cpu_to_le32(F2FS_FEATURE_RO)) {
|
if (c.feature & cpu_to_le32(F2FS_FEATURE_RO)) {
|
||||||
@ -766,12 +766,8 @@ static int f2fs_write_check_point_pack(void)
|
|||||||
set_cp(overprov_segment_count, (f2fs_get_usable_segments(sb) -
|
set_cp(overprov_segment_count, (f2fs_get_usable_segments(sb) -
|
||||||
get_cp(rsvd_segment_count)) *
|
get_cp(rsvd_segment_count)) *
|
||||||
c.overprovision / 100);
|
c.overprovision / 100);
|
||||||
|
|
||||||
if (get_cp(overprov_segment_count) < get_cp(rsvd_segment_count))
|
|
||||||
set_cp(overprov_segment_count, get_cp(rsvd_segment_count));
|
|
||||||
|
|
||||||
set_cp(overprov_segment_count, get_cp(overprov_segment_count) +
|
set_cp(overprov_segment_count, get_cp(overprov_segment_count) +
|
||||||
2 * get_sb(segs_per_sec));
|
get_cp(rsvd_segment_count));
|
||||||
|
|
||||||
if (f2fs_get_usable_segments(sb) <= get_cp(overprov_segment_count)) {
|
if (f2fs_get_usable_segments(sb) <= get_cp(overprov_segment_count)) {
|
||||||
MSG(0, "\tError: Not enough segments to create F2FS Volume\n");
|
MSG(0, "\tError: Not enough segments to create F2FS Volume\n");
|
||||||
|
Loading…
Reference in New Issue
Block a user