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

Commit 427a45c8 authored by Jaegeuk Kim's avatar Jaegeuk Kim
Browse files

f2fs: flush_dcache_page for inline data



When reading inline data, we should call flush_dcache_page.

Signed-off-by: default avatarJaegeuk Kim <jaegeuk@kernel.org>
parent ca4b02ee
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -57,6 +57,7 @@ int f2fs_read_inline_data(struct inode *inode, struct page *page)
	src_addr = inline_data_addr(ipage);
	dst_addr = kmap_atomic(page);
	memcpy(dst_addr, src_addr, MAX_INLINE_DATA);
	flush_dcache_page(page);
	kunmap_atomic(dst_addr);
	f2fs_put_page(ipage, 1);
out: