Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1729517
| From | Jaegeuk Kim <jaegeuk@kernel.org> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH 2/2] f2fs: better to wait for fstrim completion |
| Date | 2017-09-09 21:20 +0200 |
| Message-ID | <unTsl-1hK-9@gated-at.bofh.it> (permalink) |
| References | <unTsl-1hK-1@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
In android, we'd better wait for fstrim completion instead of issuing the
discard commands asynchronous.
Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
---
fs/f2fs/segment.c | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/fs/f2fs/segment.c b/fs/f2fs/segment.c
index f96e61e8ddf7..beb15c834a34 100644
--- a/fs/f2fs/segment.c
+++ b/fs/f2fs/segment.c
@@ -1076,6 +1076,9 @@ static int __issue_discard_cmd(struct f2fs_sb_info *sbi, bool issue_cond)
if (dcc->pend_list_tag[i] & P_TRIM) {
__submit_discard_cmd(sbi, dc);
issued++;
+
+ if (fatal_signal_pending(current))
+ break;
continue;
}
@@ -1192,7 +1195,7 @@ void stop_discard_thread(struct f2fs_sb_info *sbi)
}
}
-/* This comes from f2fs_put_super */
+/* This comes from f2fs_put_super and f2fs_trim_fs */
void f2fs_wait_discard_bios(struct f2fs_sb_info *sbi)
{
__issue_discard_cmd(sbi, false);
@@ -2227,6 +2230,7 @@ int f2fs_trim_fs(struct f2fs_sb_info *sbi, struct fstrim_range *range)
}
/* It's time to issue all the filed discards */
mark_discard_range_all(sbi);
+ f2fs_wait_discard_bios(sbi);
out:
range->len = F2FS_BLK_TO_BYTES(cpc.trimmed);
return err;
--
2.14.0.rc1.383.gd1ce394fe2-goog
Back to linux.kernel | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
[PATCH 1/2] f2fs: speed up gc_urgent mode with SSR Jaegeuk Kim <jaegeuk@kernel.org> - 2017-09-09 21:20 +0200
[PATCH 2/2] f2fs: better to wait for fstrim completion Jaegeuk Kim <jaegeuk@kernel.org> - 2017-09-09 21:20 +0200
Re: [f2fs-dev] [PATCH 2/2] f2fs: better to wait for fstrim completion Chao Yu <yuchao0@huawei.com> - 2017-09-11 12:40 +0200
Re: [f2fs-dev] [PATCH 1/2] f2fs: speed up gc_urgent mode with SSR Chao Yu <yuchao0@huawei.com> - 2017-09-11 12:30 +0200
csiph-web