aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--fs/f2fs/segment.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/fs/f2fs/segment.c b/fs/f2fs/segment.c
index 0e1a60a4eb3f..3ac4d29f0cd4 100644
--- a/fs/f2fs/segment.c
+++ b/fs/f2fs/segment.c
@@ -1582,13 +1582,13 @@ static void init_dirty_segmap(struct f2fs_sb_info *sbi)
1582{ 1582{
1583 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi); 1583 struct dirty_seglist_info *dirty_i = DIRTY_I(sbi);
1584 struct free_segmap_info *free_i = FREE_I(sbi); 1584 struct free_segmap_info *free_i = FREE_I(sbi);
1585 unsigned int segno = 0, offset = 0; 1585 unsigned int segno = 0, offset = 0, total_segs = TOTAL_SEGS(sbi);
1586 unsigned short valid_blocks; 1586 unsigned short valid_blocks;
1587 1587
1588 while (segno < TOTAL_SEGS(sbi)) { 1588 while (1) {
1589 /* find dirty segment based on free segmap */ 1589 /* find dirty segment based on free segmap */
1590 segno = find_next_inuse(free_i, TOTAL_SEGS(sbi), offset); 1590 segno = find_next_inuse(free_i, total_segs, offset);
1591 if (segno >= TOTAL_SEGS(sbi)) 1591 if (segno >= total_segs)
1592 break; 1592 break;
1593 offset = segno + 1; 1593 offset = segno + 1;
1594 valid_blocks = get_valid_blocks(sbi, segno, 0); 1594 valid_blocks = get_valid_blocks(sbi, segno, 0);