From: patchwork-bot+f2fs--- via Linux-f2fs-devel <linux-f2fs-devel@lists.sourceforge.net>
To: Yi Sun <yi.sun@unisoc.com>
Cc: ke.wang@unisoc.com, linux-kernel@vger.kernel.org,
linux-f2fs-devel@lists.sourceforge.net, sunyibuaa@gmail.com,
jaegeuk@kernel.org, Hao_hao.Wang@unisoc.com
Subject: Re: [f2fs-dev] [PATCH v4 0/4] Speed up f2fs truncate
Date: Mon, 13 Jan 2025 18:51:06 +0000 [thread overview]
Message-ID: <173679426698.3595970.16381442881105205835.git-patchwork-notify@kernel.org> (raw)
In-Reply-To: <20241223081044.1126291-1-yi.sun@unisoc.com>
Hello:
This series was applied to jaegeuk/f2fs.git (dev)
by Jaegeuk Kim <jaegeuk@kernel.org>:
On Mon, 23 Dec 2024 16:10:40 +0800 you wrote:
> 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.
>
> [...]
Here is the summary with links:
- [f2fs-dev,v4,1/4] f2fs: introduce update_sit_entry_for_release/alloc()
(no matching commit)
- [f2fs-dev,v4,2/4] f2fs: update_sit_entry_for_release() supports consecutive blocks.
(no matching commit)
- [f2fs-dev,v4,3/4] f2fs: add parameter @len to f2fs_invalidate_blocks()
https://git.kernel.org/jaegeuk/f2fs/c/e53c568f4603
- [f2fs-dev,v4,4/4] f2fs: Optimize f2fs_truncate_data_blocks_range()
(no matching commit)
You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
_______________________________________________
Linux-f2fs-devel mailing list
Linux-f2fs-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/linux-f2fs-devel
WARNING: multiple messages have this Message-ID (diff)
From: patchwork-bot+f2fs@kernel.org
To: Yi Sun <yi.sun@unisoc.com>
Cc: chao@kernel.org, jaegeuk@kernel.org, ke.wang@unisoc.com,
linux-kernel@vger.kernel.org,
linux-f2fs-devel@lists.sourceforge.net, sunyibuaa@gmail.com,
Hao_hao.Wang@unisoc.com
Subject: Re: [f2fs-dev] [PATCH v4 0/4] Speed up f2fs truncate
Date: Mon, 13 Jan 2025 18:51:06 +0000 [thread overview]
Message-ID: <173679426698.3595970.16381442881105205835.git-patchwork-notify@kernel.org> (raw)
In-Reply-To: <20241223081044.1126291-1-yi.sun@unisoc.com>
Hello:
This series was applied to jaegeuk/f2fs.git (dev)
by Jaegeuk Kim <jaegeuk@kernel.org>:
On Mon, 23 Dec 2024 16:10:40 +0800 you wrote:
> 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.
>
> [...]
Here is the summary with links:
- [f2fs-dev,v4,1/4] f2fs: introduce update_sit_entry_for_release/alloc()
(no matching commit)
- [f2fs-dev,v4,2/4] f2fs: update_sit_entry_for_release() supports consecutive blocks.
(no matching commit)
- [f2fs-dev,v4,3/4] f2fs: add parameter @len to f2fs_invalidate_blocks()
https://git.kernel.org/jaegeuk/f2fs/c/e53c568f4603
- [f2fs-dev,v4,4/4] f2fs: Optimize f2fs_truncate_data_blocks_range()
(no matching commit)
You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
next prev parent reply other threads:[~2025-01-13 18:50 UTC|newest]
Thread overview: 24+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-12-23 8:10 [f2fs-dev] [PATCH v4 0/4] Speed up f2fs truncate Yi Sun
2024-12-23 8:10 ` Yi Sun
2024-12-23 8:10 ` [f2fs-dev] [PATCH v4 1/4] f2fs: introduce update_sit_entry_for_release/alloc() Yi Sun
2024-12-23 8:10 ` Yi Sun
2024-12-26 14:00 ` [f2fs-dev] " Chao Yu via Linux-f2fs-devel
2024-12-26 14:00 ` Chao Yu
2024-12-23 8:10 ` [f2fs-dev] [PATCH v4 2/4] f2fs: update_sit_entry_for_release() supports consecutive blocks Yi Sun
2024-12-23 8:10 ` Yi Sun
2024-12-26 14:16 ` [f2fs-dev] " Chao Yu via Linux-f2fs-devel
2024-12-26 14:16 ` Chao Yu
2024-12-23 8:10 ` [f2fs-dev] [PATCH v4 3/4] f2fs: add parameter @len to f2fs_invalidate_blocks() Yi Sun
2024-12-23 8:10 ` Yi Sun
2025-01-13 13:49 ` [f2fs-dev] " Chao Yu via Linux-f2fs-devel
2025-01-13 13:49 ` Chao Yu
2024-12-23 8:10 ` [f2fs-dev] [PATCH v4 4/4] f2fs: Optimize f2fs_truncate_data_blocks_range() Yi Sun
2024-12-23 8:10 ` Yi Sun
2025-01-14 4:28 ` [f2fs-dev] " Chao Yu via Linux-f2fs-devel
2025-01-14 4:28 ` Chao Yu
2025-01-15 5:09 ` [f2fs-dev] 答复: " 孙毅 (Yi Sun)
2025-01-15 5:09 ` 孙毅 (Yi Sun)
2025-01-08 18:40 ` [f2fs-dev] [PATCH v4 0/4] Speed up f2fs truncate patchwork-bot+f2fs--- via Linux-f2fs-devel
2025-01-08 18:40 ` patchwork-bot+f2fs
2025-01-13 18:51 ` patchwork-bot+f2fs--- via Linux-f2fs-devel [this message]
2025-01-13 18:51 ` patchwork-bot+f2fs
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=173679426698.3595970.16381442881105205835.git-patchwork-notify@kernel.org \
--to=linux-f2fs-devel@lists.sourceforge.net \
--cc=Hao_hao.Wang@unisoc.com \
--cc=jaegeuk@kernel.org \
--cc=ke.wang@unisoc.com \
--cc=linux-kernel@vger.kernel.org \
--cc=patchwork-bot+f2fs@kernel.org \
--cc=sunyibuaa@gmail.com \
--cc=yi.sun@unisoc.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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.