linux-f2fs-devel.lists.sourceforge.net archive mirror
 help / color / mirror / Atom feed
* [PATCH] f2fs: add a judgment in add_discard_addrs
@ 2015-09-08 10:51 Yunlei He
  2015-09-08 11:14 ` Chao Yu
  0 siblings, 1 reply; 5+ messages in thread
From: Yunlei He @ 2015-09-08 10:51 UTC (permalink / raw)
  To: chao2.yu, jaegeuk, linux-f2fs-devel

CP_DISCARD traverse all segments in fstrim_range to add small discards,
it is better to select entry->len bigger than trim_minlen.

Signed-off-by: Yunlei He <heyunlei@huawei.com>
---
 fs/f2fs/segment.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/fs/f2fs/segment.c b/fs/f2fs/segment.c
index 78e6d06..a0dab7a 100644
--- a/fs/f2fs/segment.c
+++ b/fs/f2fs/segment.c
@@ -599,7 +599,8 @@ static void add_discard_addrs(struct f2fs_sb_info *sbi, struct cp_control *cpc)
 			break;
 
 		end = __find_rev_next_zero_bit(dmap, max_blocks, start + 1);
-		__add_discard_entry(sbi, cpc, se, start, end);
+		if(force && cpc->trim_minlen >= (end - start))
+			__add_discard_entry(sbi, cpc, se, start, end);
 	}
 }
 
-- 
1.9.1


------------------------------------------------------------------------------

^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2015-09-09  2:32 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-09-08 10:51 [PATCH] f2fs: add a judgment in add_discard_addrs Yunlei He
2015-09-08 11:14 ` Chao Yu
2015-09-08 23:53   ` He YunLei
2015-09-09  1:11     ` Chao Yu
2015-09-09  2:32       ` He YunLei

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).