All of lore.kernel.org
 help / color / mirror / Atom feed
* [f2fs-dev] [PATCH v2 0/5] Speed up f2fs truncate
@ 2024-10-30 10:31 ` Yi Sun
  0 siblings, 0 replies; 30+ messages in thread
From: Yi Sun @ 2024-10-30 10:31 UTC (permalink / raw)
  To: chao, jaegeuk
  Cc: ke.wang, linux-kernel, linux-f2fs-devel, sunyibuaa, yi.sun,
	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, 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%

Yi Sun (5):
  f2fs: blocks need to belong to the same segment when using
    update_sit_entry()
  f2fs: expand f2fs_invalidate_compress_page() to
    f2fs_invalidate_compress_pages_range()
  f2fs: add parameter @len to f2fs_invalidate_internal_cache()
  f2fs: add parameter @len to f2fs_invalidate_blocks()
  f2fs: Optimize f2fs_truncate_data_blocks_range()

 fs/f2fs/compress.c | 11 +++---
 fs/f2fs/data.c     |  2 +-
 fs/f2fs/f2fs.h     | 16 +++++----
 fs/f2fs/file.c     | 78 ++++++++++++++++++++++++++++++++++++++----
 fs/f2fs/gc.c       |  2 +-
 fs/f2fs/node.c     |  4 +--
 fs/f2fs/segment.c  | 84 +++++++++++++++++++++++++++++++++++++++-------
 7 files changed, 161 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] 30+ messages in thread

end of thread, other threads:[~2024-11-01 13:54 UTC | newest]

Thread overview: 30+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-10-30 10:31 [f2fs-dev] [PATCH v2 0/5] Speed up f2fs truncate Yi Sun
2024-10-30 10:31 ` Yi Sun
2024-10-30 10:31 ` [f2fs-dev] [PATCH v2 1/5] f2fs: blocks need to belong to the same segment when using update_sit_entry() Yi Sun
2024-10-30 10:31   ` Yi Sun
2024-10-31  7:19   ` [f2fs-dev] " Chao Yu via Linux-f2fs-devel
2024-10-31  7:19     ` Chao Yu
2024-10-30 10:31 ` [f2fs-dev] [PATCH v2 2/5] f2fs: expand f2fs_invalidate_compress_page() to f2fs_invalidate_compress_pages_range() Yi Sun
2024-10-30 10:31   ` Yi Sun
2024-10-31  7:26   ` [f2fs-dev] " Chao Yu via Linux-f2fs-devel
2024-10-31  7:26     ` Chao Yu
2024-10-31  9:02     ` [f2fs-dev] " yi sun
2024-10-31  9:02       ` yi sun
2024-10-30 10:31 ` [f2fs-dev] [PATCH v2 3/5] f2fs: add parameter @len to f2fs_invalidate_internal_cache() Yi Sun
2024-10-30 10:31   ` Yi Sun
2024-10-31  7:27   ` [f2fs-dev] " Chao Yu via Linux-f2fs-devel
2024-10-31  7:27     ` Chao Yu
2024-10-30 10:31 ` [f2fs-dev] [PATCH v2 4/5] f2fs: add parameter @len to f2fs_invalidate_blocks() Yi Sun
2024-10-30 10:31   ` Yi Sun
2024-10-30 17:00   ` [f2fs-dev] " Daeho Jeong
2024-10-30 17:00     ` Daeho Jeong
2024-10-31  3:00     ` yi sun
2024-10-31  3:00       ` yi sun
2024-10-31  9:10       ` Zhiguo Niu
2024-10-31  9:10         ` Zhiguo Niu
2024-10-31 10:51         ` yi sun
2024-10-31 10:51           ` yi sun
2024-11-01  3:39     ` yi sun
2024-11-01  3:39       ` yi sun
2024-10-30 10:31 ` [f2fs-dev] [PATCH v2 5/5] f2fs: Optimize f2fs_truncate_data_blocks_range() Yi Sun
2024-10-30 10:31   ` Yi Sun

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.