summaryrefslogtreecommitdiffstats
path: root/fs/f2fs/checkpoint.c
diff options
context:
space:
mode:
authorChangman Lee <cm224.lee@samsung.com>2013-11-24 15:13:08 +0900
committerJaegeuk Kim <jaegeuk.kim@samsung.com>2013-12-23 10:18:03 +0900
commit03232305ff3cf44761f7ea271f7c9af5105392b9 (patch)
tree6731d11f15e1b52b15b49ac642ebc3dd9e5ee172 /fs/f2fs/checkpoint.c
parenta709f4a2f22c0ebaed1d99aee63ab44ffc2ba3d0 (diff)
downloadlinux-03232305ff3cf44761f7ea271f7c9af5105392b9.tar.bz2
f2fs: send REQ_META or REQ_PRIO when reading meta area
Let's send REQ_META or REQ_PRIO when reading meta area such as NAT/SIT etc. Signed-off-by: Changman Lee <cm224.lee@samsung.com> Signed-off-by: Jaegeuk Kim <jaegeuk.kim@samsung.com>
Diffstat (limited to 'fs/f2fs/checkpoint.c')
-rw-r--r--fs/f2fs/checkpoint.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/f2fs/checkpoint.c b/fs/f2fs/checkpoint.c
index eae8dc3e1c08..7fe69ff2bfe7 100644
--- a/fs/f2fs/checkpoint.c
+++ b/fs/f2fs/checkpoint.c
@@ -61,7 +61,7 @@ repeat:
if (PageUptodate(page))
goto out;
- if (f2fs_readpage(sbi, page, index, READ_SYNC))
+ if (f2fs_readpage(sbi, page, index, READ_SYNC | REQ_META | REQ_PRIO))
goto repeat;
lock_page(page);