diff options
author | Chao Yu <yuchao0@huawei.com> | 2018-09-25 10:36:00 +0300 |
---|---|---|
committer | Jaegeuk Kim <jaegeuk@kernel.org> | 2018-09-26 22:45:33 +0300 |
commit | 7de36cf3e4087207f42a88992f8cb615a1bd902e (patch) | |
tree | 3054ef26753b8d1637859781b1ab6c9158ef2b9c /fs/f2fs | |
parent | 19c73a691ccf6fb2f12d4e9cf9830023966cec88 (diff) | |
download | linux-7de36cf3e4087207f42a88992f8cb615a1bd902e.tar.xz |
f2fs: fix to recover inode's i_gc_failures during POR
inode.i_gc_failures is used to indicate that skip count of migrating
on blocks of inode, we should guarantee it can be recovered in sudden
power-off case.
Signed-off-by: Chao Yu <yuchao0@huawei.com>
Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
Diffstat (limited to 'fs/f2fs')
-rw-r--r-- | fs/f2fs/recovery.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/fs/f2fs/recovery.c b/fs/f2fs/recovery.c index d8c169c38417..f11eefc24818 100644 --- a/fs/f2fs/recovery.c +++ b/fs/f2fs/recovery.c @@ -234,6 +234,8 @@ static void recover_inode(struct inode *inode, struct page *page) F2FS_I(inode)->i_advise = raw->i_advise; F2FS_I(inode)->i_flags = le32_to_cpu(raw->i_flags); + F2FS_I(inode)->i_gc_failures[GC_FAILURE_PIN] = + le16_to_cpu(raw->i_gc_failures); recover_inline_flags(inode, raw); |