diff options
author | Jaegeuk Kim <jaegeuk@kernel.org> | 2020-06-04 16:45:30 -0700 |
---|---|---|
committer | Jaegeuk Kim <jaegeuk@kernel.org> | 2020-06-08 20:37:54 -0700 |
commit | b7b911d59dacb47511a1e604bbfa901beb108305 (patch) | |
tree | a4e2eb81d474b13f4805364dd6a4af95f5863b89 /fs/f2fs | |
parent | 32b6aba85c8dbd1d3a155543986574c6969f0a48 (diff) | |
download | linux-b7b911d59dacb47511a1e604bbfa901beb108305.tar.gz linux-b7b911d59dacb47511a1e604bbfa901beb108305.tar.bz2 linux-b7b911d59dacb47511a1e604bbfa901beb108305.zip |
f2fs: attach IO flags to the missing cases
This adds more IOs to attach flags.
Reviewed-by: Chao Yu <yuchao0@huawei.com>
Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
Diffstat (limited to 'fs/f2fs')
-rw-r--r-- | fs/f2fs/data.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/fs/f2fs/data.c b/fs/f2fs/data.c index 798c325a820d..267b5e76a02b 100644 --- a/fs/f2fs/data.c +++ b/fs/f2fs/data.c @@ -691,6 +691,7 @@ int f2fs_submit_page_bio(struct f2fs_io_info *fio) if (fio->io_wbc && !is_read_io(fio->op)) wbc_account_cgroup_owner(fio->io_wbc, page, PAGE_SIZE); + __attach_io_flag(fio); bio_set_op_attrs(bio, fio->op, fio->op_flags); inc_page_count(fio->sbi, is_read_io(fio->op) ? @@ -877,6 +878,7 @@ int f2fs_merge_page_bio(struct f2fs_io_info *fio) alloc_new: if (!bio) { bio = __bio_alloc(fio, BIO_MAX_PAGES); + __attach_io_flag(fio); bio_set_op_attrs(bio, fio->op, fio->op_flags); add_bio_entry(fio->sbi, bio, page, fio->temp); |