f2fs: increase pages_skipped when skipping writepages
This patch increases pages_skipped when skipping writepages. Signed-off-by: Jaegeuk Kim <jaegeuk.kim@samsung.com>
This commit is contained in:
@@ -190,12 +190,9 @@ static int f2fs_write_meta_pages(struct address_space *mapping,
|
||||
int nrpages = nr_pages_to_skip(sbi, META);
|
||||
long written;
|
||||
|
||||
if (wbc->for_kupdate)
|
||||
return 0;
|
||||
|
||||
/* collect a number of dirty meta pages and write together */
|
||||
if (get_pages(sbi, F2FS_DIRTY_META) < nrpages)
|
||||
return 0;
|
||||
if (wbc->for_kupdate || get_pages(sbi, F2FS_DIRTY_META) < nrpages)
|
||||
goto skip_write;
|
||||
|
||||
/* if mounting is failed, skip writing node pages */
|
||||
mutex_lock(&sbi->cp_mutex);
|
||||
@@ -203,6 +200,10 @@ static int f2fs_write_meta_pages(struct address_space *mapping,
|
||||
mutex_unlock(&sbi->cp_mutex);
|
||||
wbc->nr_to_write -= written;
|
||||
return 0;
|
||||
|
||||
skip_write:
|
||||
wbc->pages_skipped += get_pages(sbi, F2FS_DIRTY_META);
|
||||
return 0;
|
||||
}
|
||||
|
||||
long sync_meta_pages(struct f2fs_sb_info *sbi, enum page_type type,
|
||||
|
||||
Reference in New Issue
Block a user