mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-14 15:54:15 +08:00
f2fs: remove preflush for nobarrier case
This patch removes REQ_PREFLUSH in the nobarrier case. Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
This commit is contained in:
parent
942fd3192f
commit
7f54f51f46
@ -306,9 +306,9 @@ static void __f2fs_submit_merged_bio(struct f2fs_sb_info *sbi,
|
||||
if (type >= META_FLUSH) {
|
||||
io->fio.type = META_FLUSH;
|
||||
io->fio.op = REQ_OP_WRITE;
|
||||
io->fio.op_flags = REQ_PREFLUSH | REQ_META | REQ_PRIO;
|
||||
io->fio.op_flags = REQ_META | REQ_PRIO;
|
||||
if (!test_opt(sbi, NOBARRIER))
|
||||
io->fio.op_flags |= REQ_FUA;
|
||||
io->fio.op_flags |= REQ_PREFLUSH | REQ_FUA;
|
||||
}
|
||||
__submit_merged_bio(io);
|
||||
out:
|
||||
|
Loading…
Reference in New Issue
Block a user