Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 27c6bd60 authored by Jaegeuk Kim's avatar Jaegeuk Kim
Browse files

f2fs: submit bio for node blocks in the reclaim path



If a node page is request to be written during the reclaiming path, we should
submit the bio to avoid pending to recliam it.

Signed-off-by: default avatarJaegeuk Kim <jaegeuk@kernel.org>
parent 67298804
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -1326,6 +1326,10 @@ static int f2fs_write_node_page(struct page *page,
	dec_page_count(sbi, F2FS_DIRTY_NODES);
	up_read(&sbi->node_write);
	unlock_page(page);

	if (wbc->for_reclaim)
		f2fs_submit_merged_bio(sbi, NODE, WRITE);

	return 0;

redirty_out: