aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJaegeuk Kim <jaegeuk@kernel.org>2016-09-21 12:34:48 -0400
committerJaegeuk Kim <jaegeuk@kernel.org>2016-09-30 20:34:25 -0400
commitf6fe2be3c6d6f0127742ae1cc2e3ffe9ad31ea8b (patch)
tree7b9e3f25bad7aa53cdde1fb9b4d4f186e26be73b
parent2956e450fa08669ebf1541acb07843b5aa6acf96 (diff)
f2fs: should put_page for summary page
We should call put_page for preloaded summary pages in do_garbage_collect. Reviewed-by: Chao Yu <yuchao0@huawei.com> Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
-rw-r--r--fs/f2fs/gc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/f2fs/gc.c b/fs/f2fs/gc.c
index 400bc6d78372..a9a3c9f19032 100644
--- a/fs/f2fs/gc.c
+++ b/fs/f2fs/gc.c
@@ -848,7 +848,7 @@ static int do_garbage_collect(struct f2fs_sb_info *sbi,
848 for (segno = start_segno; segno < end_segno; segno++) { 848 for (segno = start_segno; segno < end_segno; segno++) {
849 849
850 if (get_valid_blocks(sbi, segno, 1) == 0) 850 if (get_valid_blocks(sbi, segno, 1) == 0)
851 continue; 851 goto next;
852 852
853 /* find segment summary of victim */ 853 /* find segment summary of victim */
854 sum_page = find_get_page(META_MAPPING(sbi), 854 sum_page = find_get_page(META_MAPPING(sbi),
@@ -874,7 +874,7 @@ static int do_garbage_collect(struct f2fs_sb_info *sbi,
874 gc_type); 874 gc_type);
875 875
876 stat_inc_seg_count(sbi, type, gc_type); 876 stat_inc_seg_count(sbi, type, gc_type);
877 877next:
878 f2fs_put_page(sum_page, 0); 878 f2fs_put_page(sum_page, 0);
879 } 879 }
880 880