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

Commit 454ae7e5 authored by Chao Yu's avatar Chao Yu Committed by Jaegeuk Kim
Browse files

f2fs: handle inline data independently in f2fs_bmap



We'd better handle inline data case independently in f2fs_bmap().
It can reduce our handling time in f2fs_bmap().

Signed-off-by: default avatarChao Yu <chao2.yu@samsung.com>
Signed-off-by: default avatarJaegeuk Kim <jaegeuk.kim@samsung.com>
parent 6fb03f3a
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
@@ -1058,6 +1058,11 @@ static int f2fs_set_data_page_dirty(struct page *page)

static sector_t f2fs_bmap(struct address_space *mapping, sector_t block)
{
	struct inode *inode = mapping->host;

	if (f2fs_has_inline_data(inode))
		return 0;

	return generic_block_bmap(mapping, block, get_data_block);
}