diff options
author | Tejun Heo <tj@kernel.org> | 2019-06-27 13:39:49 -0700 |
---|---|---|
committer | Jens Axboe <axboe@kernel.dk> | 2019-07-10 09:00:57 -0600 |
commit | 34e51a5e1a6e939ed7d99c38173821ab86d577f4 (patch) | |
tree | c3a151220052cd67699f4c0e2f04daad5f5d753b /fs/f2fs | |
parent | 9b0eb69b75bccada2d341d7e7ca342f0cb1c9a6a (diff) | |
download | linux-34e51a5e1a6e939ed7d99c38173821ab86d577f4.tar.gz linux-34e51a5e1a6e939ed7d99c38173821ab86d577f4.tar.bz2 linux-34e51a5e1a6e939ed7d99c38173821ab86d577f4.zip |
blkcg, writeback: Rename wbc_account_io() to wbc_account_cgroup_owner()
wbc_account_io() does a very specific job - try to see which cgroup is
actually dirtying an inode and transfer its ownership to the majority
dirtier if needed. The name is too generic and confusing. Let's
rename it to something more specific.
Reviewed-by: Jan Kara <jack@suse.cz>
Signed-off-by: Tejun Heo <tj@kernel.org>
Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'fs/f2fs')
-rw-r--r-- | fs/f2fs/data.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/f2fs/data.c b/fs/f2fs/data.c index eda4181d2092..e1cab1717ac7 100644 --- a/fs/f2fs/data.c +++ b/fs/f2fs/data.c @@ -470,7 +470,7 @@ int f2fs_submit_page_bio(struct f2fs_io_info *fio) } if (fio->io_wbc && !is_read_io(fio->op)) - wbc_account_io(fio->io_wbc, page, PAGE_SIZE); + wbc_account_cgroup_owner(fio->io_wbc, page, PAGE_SIZE); bio_set_op_attrs(bio, fio->op, fio->op_flags); @@ -537,7 +537,7 @@ alloc_new: } if (fio->io_wbc) - wbc_account_io(fio->io_wbc, bio_page, PAGE_SIZE); + wbc_account_cgroup_owner(fio->io_wbc, bio_page, PAGE_SIZE); io->last_block_in_bio = fio->new_blkaddr; f2fs_trace_ios(fio, 0); |