f2fs: fix to recover inode's uid/gid during POR
authorChao Yu <yuchao0@huawei.com>
Thu, 20 Sep 2018 09:41:30 +0000 (17:41 +0800)
committerJaegeuk Kim <jaegeuk@kernel.org>
Fri, 26 Oct 2018 18:23:16 +0000 (11:23 -0700)
commit4129edf3df144900227e008af3a8da51d52e76c4
treea8f7c9815a868b1bb1270837db7a7542205d126b
parentbb6b18cd823b6761a37ef1b866d7c30bbbd9fc46
f2fs: fix to recover inode's uid/gid during POR

Step to reproduce this bug:
1. logon as root
2. mount -t f2fs /dev/sdd /mnt;
3. touch /mnt/file;
4. chown system /mnt/file; chgrp system /mnt/file;
5. xfs_io -f /mnt/file -c "fsync";
6. godown /mnt;
7. umount /mnt;
8. mount -t f2fs /dev/sdd /mnt;

After step 8) we will expect file's uid/gid are all system, but during
recovery, these two fields were not been recovered, fix it.

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