aboutsummaryrefslogtreecommitdiffstats
path: root/fs/f2fs/data.c
diff options
context:
space:
mode:
authorJaegeuk Kim <jaegeuk@kernel.org>2017-03-30 21:02:46 -0700
committerJaegeuk Kim <jaegeuk@kernel.org>2017-04-05 11:05:07 -0700
commitd1b3e72d549094317c12c79c7817861a97004a56 (patch)
tree8221513323c11357b3163636de9554b6f43a6ff1 /fs/f2fs/data.c
parentf2fs: remove the redundant variable definition (diff)
downloadlinux-dev-d1b3e72d549094317c12c79c7817861a97004a56.tar.xz
linux-dev-d1b3e72d549094317c12c79c7817861a97004a56.zip
f2fs: submit bio of in-place-update pages
This patch tries to split in-place-update bios from sequential bios. Suggested-by: Yunlei He <heyunlei@huawei.com> Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
Diffstat (limited to 'fs/f2fs/data.c')
-rw-r--r--fs/f2fs/data.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/fs/f2fs/data.c b/fs/f2fs/data.c
index b1cac6d85bcb..3d74c0ffa4c7 100644
--- a/fs/f2fs/data.c
+++ b/fs/f2fs/data.c
@@ -362,6 +362,9 @@ int f2fs_submit_page_bio(struct f2fs_io_info *fio)
bio_set_op_attrs(bio, fio->op, fio->op_flags);
__submit_bio(fio->sbi, bio, fio->type);
+
+ if (!is_read_io(fio->op))
+ inc_page_count(fio->sbi, WB_DATA_TYPE(fio->page));
return 0;
}
@@ -1354,7 +1357,7 @@ retry_encrypt:
!is_cold_data(page) &&
!IS_ATOMIC_WRITTEN_PAGE(page) &&
need_inplace_update(inode))) {
- rewrite_data_page(fio);
+ err = rewrite_data_page(fio);
set_inode_flag(inode, FI_UPDATE_WRITE);
trace_f2fs_do_write_data_page(page, IPU);
} else {