f2fs: fix to update iostat correctly in IPU path
authorChao Yu <yuchao0@huawei.com>
Thu, 21 Feb 2019 12:40:13 +0000 (20:40 +0800)
committerJaegeuk Kim <jaegeuk@kernel.org>
Wed, 13 Mar 2019 01:59:18 +0000 (18:59 -0700)
In error path of IPU, we didn't account iostat correctly, fix it.

Signed-off-by: Chao Yu <yuchao0@huawei.com>
Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
fs/f2fs/segment.c

index 2537893e94669f59eee47d1943ed5629cc8dd805..d74359325da61f1b120d66c29a808fdee20fba3f 100644 (file)
@@ -3182,10 +3182,10 @@ int f2fs_inplace_write_data(struct f2fs_io_info *fio)
        stat_inc_inplace_blocks(fio->sbi);
 
        err = f2fs_submit_page_bio(fio);
-       if (!err)
+       if (!err) {
                update_device_state(fio);
-
-       f2fs_update_iostat(fio->sbi, fio->io_type, F2FS_BLKSIZE);
+               f2fs_update_iostat(fio->sbi, fio->io_type, F2FS_BLKSIZE);
+       }
 
        return err;
 }