f2fs: fix to account IO correctly for cgroup writeback
authorChao Yu <yuchao0@huawei.com>
Mon, 22 Oct 2018 15:24:28 +0000 (23:24 +0800)
committerJaegeuk Kim <jaegeuk@kernel.org>
Fri, 26 Oct 2018 18:26:53 +0000 (11:26 -0700)
commitc72400308806a3710cb48d4739e4b94c19c086f8
treeeaae7d83e7f4a46eff47a6497e6c8f5b15bf2956
parent91ccc89a4812ee178b4259adf778a420cd4d4bb2
f2fs: fix to account IO correctly for cgroup writeback

Now, we have supported cgroup writeback, it depends on correctly IO
account of specified filesystem.

But in commit d1b3e72d5490 ("f2fs: submit bio of in-place-update pages"),
we split write paths from f2fs_submit_page_mbio() to two:
- f2fs_submit_page_bio() for IPU path
- f2fs_submit_page_bio() for OPU path

But still we account write IO only in f2fs_submit_page_mbio(), result in
incorrect IO account, fix it by adding missing IO account in IPU path.

Fixes: d1b3e72d5490 ("f2fs: submit bio of in-place-update pages")
Signed-off-by: Chao Yu <yuchao0@huawei.com>
Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
fs/f2fs/data.c