OSDN Git Service

f2fs: update inode info to inode page for new file
authorYunlei He <heyunlei@huawei.com>
Wed, 3 Jan 2018 10:03:04 +0000 (18:03 +0800)
committerJaegeuk Kim <jaegeuk@kernel.org>
Thu, 8 Feb 2018 02:05:45 +0000 (18:05 -0800)
commit4c6bc4be375adf7c4c99188829dfd17fccae930c
tree70aaae36fafa7c68fcff1ee36b439856b8d54cf0
parent591b336387338e054067ff82bb535d4fde06179f
f2fs: update inode info to inode page for new file

After checkpoint,
 1. creat a new file A ,(with dirty inode && dirty inode page && xattr info)
 2. backgroud wb write back file A inode page (without update from inode cache)
 3. fsync file A, write back inode page of file A with inode cache info
 4. sudden power off before new checkpoint

In this case, recovery process will try to recover a zero inode
page. Inline xattr flag of file A will be miss and xattr info
will be taken as blkaddr index.

Signed-off-by: Yunlei He <heyunlei@huawei.com>
Reviewed-by: Chao Yu <yuchao0@huawei.com>
Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
fs/f2fs/node.c