Skip to content

Commit

Permalink
f2fs: fix wrong sum_page pointer in f2fs_gc
Browse files Browse the repository at this point in the history
This patch fixes using a wrong pointer for sum_page in f2fs_gc.

Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
  • Loading branch information
Jaegeuk Kim committed Oct 12, 2016
1 parent 4c1fad6 commit de0dcc4
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions fs/f2fs/gc.c
Original file line number Diff line number Diff line change
Expand Up @@ -852,16 +852,16 @@ static int do_garbage_collect(struct f2fs_sb_info *sbi,

for (segno = start_segno; segno < end_segno; segno++) {

if (get_valid_blocks(sbi, segno, 1) == 0 ||
unlikely(f2fs_cp_error(sbi)))
goto next;

/* find segment summary of victim */
sum_page = find_get_page(META_MAPPING(sbi),
GET_SUM_BLOCK(sbi, segno));
f2fs_bug_on(sbi, !PageUptodate(sum_page));
f2fs_put_page(sum_page, 0);

if (get_valid_blocks(sbi, segno, 1) == 0 ||
!PageUptodate(sum_page) ||
unlikely(f2fs_cp_error(sbi)))
goto next;

sum = page_address(sum_page);
f2fs_bug_on(sbi, type != GET_SUM_TYPE((&sum->footer)));

Expand Down

0 comments on commit de0dcc4

Please sign in to comment.