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

Commit 3bdad3c7 authored by Jaegeuk Kim's avatar Jaegeuk Kim
Browse files

f2fs: skip to check the block address of node page



If the node page is up-to-date, it should be alive.

Signed-off-by: default avatarJaegeuk Kim <jaegeuk@kernel.org>
parent 2555a2d5
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -1080,6 +1080,9 @@ static int read_node_page(struct page *page, int rw)
		.encrypted_page = NULL,
	};

	if (PageUptodate(page))
		return LOCKED_PAGE;

	get_node_info(sbi, page->index, &ni);

	if (unlikely(ni.blk_addr == NULL_ADDR)) {
@@ -1087,9 +1090,6 @@ static int read_node_page(struct page *page, int rw)
		return -ENOENT;
	}

	if (PageUptodate(page))
		return LOCKED_PAGE;

	fio.new_blkaddr = fio.old_blkaddr = ni.blk_addr;
	return f2fs_submit_page_bio(&fio);
}