1
0
Fork 0

f2fs: use correct flag in f2fs_map_blocks()

We introduce F2FS_GET_BLOCK_READ in commit e2b4e2bc88 ("f2fs: fix
incorrect mapping for bmap"), but forget to use this flag in the right
place, fix it.

Signed-off-by: Chao Yu <chao2.yu@samsung.com>
Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
steinar/wifi_calib_4_9_kernel
Chao Yu 2015-09-18 16:54:16 +08:00 committed by Jaegeuk Kim
parent f9811703fe
commit 46c9e1413f
1 changed files with 2 additions and 1 deletions

View File

@ -920,7 +920,8 @@ static int f2fs_mpage_readpages(struct address_space *mapping,
map.m_lblk = block_in_file;
map.m_len = last_block - block_in_file;
if (f2fs_map_blocks(inode, &map, 0, false))
if (f2fs_map_blocks(inode, &map, 0,
F2FS_GET_BLOCK_READ))
goto set_error_page;
}
got_it: