All of lore.kernel.org
 help / color / mirror / Atom feed
* [f2fs-dev] [RFC PATCH 0/2] Speed up f2fs truncate
@ 2024-10-16  5:27 ` Yi Sun
  0 siblings, 0 replies; 18+ messages in thread
From: Yi Sun @ 2024-10-16  5:27 UTC (permalink / raw)
  To: chao
  Cc: ke.wang, yi.sun, linux-kernel, sunyibuaa, jaegeuk,
	linux-f2fs-devel, hao_hao.wang

Deleting large files is time-consuming, and a large part
of the time is spent in f2fs_invalidate_blocks()
->down_write(sit_info->sentry_lock) and up_write().

If some blocks are continuous and belong to the same segment,
we can process these blocks at the same time. This can reduce
the number of calls to the down_write() and the up_write(),
thereby improving the overall speed of doing truncate.

Test steps:
Set the CPU and DDR frequencies to the maximum.
dd if=/dev/random of=./test.txt bs=1M count=100000
sync
rm test.txt

Time Comparison of rm:
original        optimization            ratio
7.17s		3.27s			54.39%

Hi, currently I have only optimized the f2fs doing truncate route,
and other functions using f2fs_invalidate_blocks() are not taken
into consideration. So new function
f2fs_invalidate_compress_pages_range() and
check_f2fs_invalidate_consecutive_blocks() are not general functions.
Is this modification acceptable?

Yi Sun (2):
  f2fs: introduce update_sit_entry_for_release()
  f2fs: introduce f2fs_invalidate_consecutive_blocks() for truncate

 fs/f2fs/compress.c |  14 ++++++
 fs/f2fs/f2fs.h     |   5 ++
 fs/f2fs/file.c     |  34 ++++++++++++-
 fs/f2fs/segment.c  | 116 +++++++++++++++++++++++++++++++--------------
 4 files changed, 133 insertions(+), 36 deletions(-)

-- 
2.25.1



_______________________________________________
Linux-f2fs-devel mailing list
Linux-f2fs-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/linux-f2fs-devel

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

end of thread, other threads:[~2024-10-29  3:02 UTC | newest]

Thread overview: 18+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-10-16  5:27 [f2fs-dev] [RFC PATCH 0/2] Speed up f2fs truncate Yi Sun
2024-10-16  5:27 ` Yi Sun
2024-10-16  5:27 ` [f2fs-dev] [RFC PATCH 1/2] f2fs: introduce update_sit_entry_for_release() Yi Sun
2024-10-16  5:27   ` Yi Sun
2024-10-16  5:27 ` [f2fs-dev] [RFC PATCH 2/2] f2fs: introduce f2fs_invalidate_consecutive_blocks() Yi Sun
2024-10-16  5:27   ` Yi Sun
2024-10-16 16:04   ` [f2fs-dev] " Jaegeuk Kim via Linux-f2fs-devel
2024-10-16 16:04     ` Jaegeuk Kim
2024-10-17  1:40   ` [f2fs-dev] " Chao Yu via Linux-f2fs-devel
2024-10-17  1:40     ` Chao Yu
2024-10-24  9:54     ` [f2fs-dev] " yi sun
2024-10-24  9:54       ` yi sun
2024-10-24 10:26       ` [f2fs-dev] " Chao Yu via Linux-f2fs-devel
2024-10-24 10:26         ` Chao Yu
2024-10-29  3:02         ` [f2fs-dev] " yi sun
2024-10-29  3:02           ` yi sun
2024-10-28 17:40 ` [f2fs-dev] [RFC PATCH 0/2] Speed up f2fs truncate patchwork-bot+f2fs--- via Linux-f2fs-devel
2024-10-28 17:40   ` patchwork-bot+f2fs

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.