diff options
author | Jaegeuk Kim <jaegeuk@kernel.org> | 2015-01-15 02:41:41 +0100 |
---|---|---|
committer | Jaegeuk Kim <jaegeuk@kernel.org> | 2015-02-12 02:04:33 +0100 |
commit | 85dc2f2c6c84e99e9864ef660f79683aaad85f42 (patch) | |
tree | 2e6826d9bc961294e7cbfc08791273aca2beb0b7 /fs/f2fs/checkpoint.c | |
parent | f2fs: trigger correct checkpoint during umount (diff) | |
download | linux-85dc2f2c6c84e99e9864ef660f79683aaad85f42.tar.xz linux-85dc2f2c6c84e99e9864ef660f79683aaad85f42.zip |
f2fs: do checkpoint when umount flag is not set
If the previous checkpoint was done without CP_UMOUNT flag, it needs to do
checkpoint with CP_UMOUNT for the next fast boot.
Reviewed-by: Chao Yu <chao2.yu@samsung.com>
Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
Diffstat (limited to 'fs/f2fs/checkpoint.c')
-rw-r--r-- | fs/f2fs/checkpoint.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/fs/f2fs/checkpoint.c b/fs/f2fs/checkpoint.c index 9f5317c9ad72..231d8c9fea0a 100644 --- a/fs/f2fs/checkpoint.c +++ b/fs/f2fs/checkpoint.c @@ -1043,7 +1043,8 @@ void write_checkpoint(struct f2fs_sb_info *sbi, struct cp_control *cpc) mutex_lock(&sbi->cp_mutex); - if (!sbi->s_dirty && cpc->reason != CP_DISCARD) + if (!sbi->s_dirty && + cpc->reason != CP_DISCARD && cpc->reason != CP_UMOUNT) goto out; if (unlikely(f2fs_cp_error(sbi))) goto out; |