Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1412764
| From | Jaegeuk Kim <jaegeuk@kernel.org> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH 4/8] f2fs: skip roll_forward recovery after umount |
| Date | 2016-06-03 06:00 +0200 |
| Message-ID | <rFOr7-6ts-5@gated-at.bofh.it> (permalink) |
| References | <rFOr7-6ts-3@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
If f2fs was umounted successfully, we don't need to go into roll_forward.
Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
---
fs/f2fs/recovery.c | 3 +++
1 file changed, 3 insertions(+)
diff --git a/fs/f2fs/recovery.c b/fs/f2fs/recovery.c
index b568b28..841bddc 100644
--- a/fs/f2fs/recovery.c
+++ b/fs/f2fs/recovery.c
@@ -579,6 +579,9 @@ int recover_fsync_data(struct f2fs_sb_info *sbi, bool check_only)
int ret = 0;
bool need_writecp = false;
+ if (is_set_ckpt_flags(sbi->ckpt, CP_UMOUNT_FLAG))
+ return 0;
+
fsync_entry_slab = f2fs_kmem_cache_create("f2fs_fsync_inode_entry",
sizeof(struct fsync_inode_entry));
if (!fsync_entry_slab)
--
2.6.3
Back to linux.kernel | Previous | Next | Find similar | Unroll thread
[PATCH 4/8] f2fs: skip roll_forward recovery after umount Jaegeuk Kim <jaegeuk@kernel.org> - 2016-06-03 06:00 +0200
csiph-web