OSDN Git Service

f2fs: fix extent corrupotion during directIO in LFS mode
authorChao Yu <yuchao0@huawei.com>
Wed, 28 Aug 2019 09:33:35 +0000 (17:33 +0800)
committer0ranko0P <ranko0p@outlook.com>
Tue, 24 Dec 2019 20:42:27 +0000 (04:42 +0800)
In LFS mode, por_fsstress testcase reports a bug as below:

[ASSERT] (fsck_chk_inode_blk: 931)  --> ino: 0x12fe has wrong ext: [pgofs:142, blk:215424, len:16]

Since commit f847c699cff3 ("f2fs: allow out-place-update for direct
IO in LFS mode"), we start to allow OPU mode for direct IO, however,
we missed to update extent cache in __allocate_data_block(), finally,
it cause extent field being inconsistent with physical block address,
fix it.

Fixes: f847c699cff3 ("f2fs: allow out-place-update for direct IO in LFS mode")
Signed-off-by: Chao Yu <yuchao0@huawei.com>
Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
fs/f2fs/data.c

index ef683ff..bb81876 100644 (file)
@@ -1052,7 +1052,7 @@ alloc:
        if (GET_SEGNO(sbi, old_blkaddr) != NULL_SEGNO)
                invalidate_mapping_pages(META_MAPPING(sbi),
                                        old_blkaddr, old_blkaddr);
-       f2fs_set_data_blkaddr(dn);
+       f2fs_update_data_blkaddr(dn, dn->data_blkaddr);
 
        /*
         * i_size will be updated by direct_IO. Otherwise, we'll get stale