diff options
author | Changman Lee <cm224.lee@samsung.com> | 2014-01-16 11:58:54 +0900 |
---|---|---|
committer | Jaegeuk Kim <jaegeuk.kim@samsung.com> | 2014-01-16 17:28:35 +0900 |
commit | c434cbc0edda6a7a59d22b9d5d4279989d0ab804 (patch) | |
tree | 35ad61afb980dba34051770f7feb3dc482196a07 /fs/f2fs/data.c | |
parent | c33ec32692e1f2f4650f7bf5bb1108bb346b82a4 (diff) | |
download | linux-c434cbc0edda6a7a59d22b9d5d4279989d0ab804.tar.bz2 |
f2fs: missing REQ_META and REQ_PRIO when sync_meta_pages(META_FLUSH)
Doing sync_meta_pages with META_FLUSH when checkpoint, we overide rw
using WRITE_FLUSH_FUA. At this time, we also should set
REQ_META|REQ_PRIO.
Signed-off-by: Changman Lee <cm224.lee@samsung.com>
Signed-off-by: Jaegeuk Kim <jaegeuk.kim@samsung.com>
Diffstat (limited to 'fs/f2fs/data.c')
-rw-r--r-- | fs/f2fs/data.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/f2fs/data.c b/fs/f2fs/data.c index e57bde02e37f..bda889e2ca63 100644 --- a/fs/f2fs/data.c +++ b/fs/f2fs/data.c @@ -144,7 +144,7 @@ void f2fs_submit_merged_bio(struct f2fs_sb_info *sbi, /* change META to META_FLUSH in the checkpoint procedure */ if (type >= META_FLUSH) { io->fio.type = META_FLUSH; - io->fio.rw = WRITE_FLUSH_FUA; + io->fio.rw = WRITE_FLUSH_FUA | REQ_META | REQ_PRIO; } __submit_merged_bio(io); mutex_unlock(&io->io_mutex); |