diff options
author | Chao Yu <yuchao0@huawei.com> | 2017-04-28 13:56:08 +0800 |
---|---|---|
committer | Jaegeuk Kim <jaegeuk@kernel.org> | 2017-05-03 10:04:56 -0700 |
commit | 1f43e2ad7bff54f7c82a084a57e5c90da0d3f4d9 (patch) | |
tree | e10bc36ec318ab4c4b8d9b5c9aad579d9f516b4f /fs/f2fs/super.c | |
parent | c473f1a9658b6c23d576136d5a49b1c731ef1767 (diff) | |
download | blackbird-op-linux-1f43e2ad7bff54f7c82a084a57e5c90da0d3f4d9.tar.gz blackbird-op-linux-1f43e2ad7bff54f7c82a084a57e5c90da0d3f4d9.zip |
f2fs: introduce CP_TRIMMED_FLAG to avoid unneeded discard
Introduce CP_TRIMMED_FLAG to indicate all invalid block were trimmed
before umount, so once we do mount with image which contain the flag,
we don't record invalid blocks as undiscard one, when fstrim is being
triggered, we can avoid issuing redundant discard commands.
Signed-off-by: Chao Yu <yuchao0@huawei.com>
Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
Diffstat (limited to 'fs/f2fs/super.c')
-rw-r--r-- | fs/f2fs/super.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/fs/f2fs/super.c b/fs/f2fs/super.c index 4cd3bee6775f..9a14b2590337 100644 --- a/fs/f2fs/super.c +++ b/fs/f2fs/super.c @@ -797,6 +797,13 @@ static void f2fs_put_super(struct super_block *sb) /* be sure to wait for any on-going discard commands */ f2fs_wait_discard_bios(sbi); + if (!sbi->discard_blks) { + struct cp_control cpc = { + .reason = CP_UMOUNT | CP_TRIMMED, + }; + write_checkpoint(sbi, &cpc); + } + /* write_checkpoint can update stat informaion */ f2fs_destroy_stats(sbi); |