]> git.karo-electronics.de Git - karo-tx-linux.git/commit
f2fs: update inode page after creation
authorJaegeuk Kim <jaegeuk.kim@samsung.com>
Mon, 20 May 2013 01:10:29 +0000 (10:10 +0900)
committerJaegeuk Kim <jaegeuk.kim@samsung.com>
Mon, 20 May 2013 07:05:41 +0000 (16:05 +0900)
commitc4949f897fcca7b108b656274394df3d92fb02c5
tree2bb6b7253ecb46c28c82c05525692dbddc0badcf
parent6a63a48ff04bd6d7c82cfd0362e7cd72284e1206
f2fs: update inode page after creation

I found a bug when testing power-off-recovery as follows.

[Bug Scenario]
1. create a file
2. fsync the file
3. reboot w/o any sync
4. try to recover the file
 - found its fsync mark
 - found its dentry mark
   : try to recover its dentry
    - get its file name
    - get its parent inode number
     : here we got zero value

The reason why we get the wrong parent inode number is that we didn't
synchronize the inode page with its newly created inode information perfectly.

Especially, previous f2fs stores fi->i_pino and writes it to the cached
node page in a wrong order, which incurs the zero-valued i_pino during the
recovery.

So, this patch modifies the creation flow to fix the synchronization order of
inode page with its inode.

Signed-off-by: Jaegeuk Kim <jaegeuk.kim@samsung.com>
fs/f2fs/data.c
fs/f2fs/dir.c
fs/f2fs/f2fs.h
fs/f2fs/node.c