* [PATCH] f2fs: fix to clear unusable_cap for checkpoint=enable
@ 2025-08-07 1:48 Chao Yu
2025-08-08 1:07 ` [f2fs-dev] " Zhiguo Niu
2025-08-15 16:40 ` patchwork-bot+f2fs
0 siblings, 2 replies; 5+ messages in thread
From: Chao Yu @ 2025-08-07 1:48 UTC (permalink / raw)
To: jaegeuk; +Cc: linux-f2fs-devel, linux-kernel, Chao Yu
mount -t f2fs -o checkpoint=disable:10% /dev/vdb /mnt/f2fs/
mount -t f2fs -o remount,checkpoint=enable /dev/vdb /mnt/f2fs/
kernel log:
F2FS-fs (vdb): Adjust unusable cap for checkpoint=disable = 204440 / 10%
If we has assigned checkpoint=enable mount option, unusable_cap{,_perc}
parameters of checkpoint=disable should be reset, then calculation and
log print could be avoid in adjust_unusable_cap_perc().
Fixes: 1ae18f71cb52 ("f2fs: fix checkpoint=disable:%u%%")
Signed-off-by: Chao Yu <chao@kernel.org>
---
fs/f2fs/super.c | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/fs/f2fs/super.c b/fs/f2fs/super.c
index f37004780ce0..c1f45df9efec 100644
--- a/fs/f2fs/super.c
+++ b/fs/f2fs/super.c
@@ -1014,6 +1014,10 @@ static int f2fs_parse_param(struct fs_context *fc, struct fs_parameter *param)
ctx_set_opt(ctx, F2FS_MOUNT_DISABLE_CHECKPOINT);
break;
case Opt_checkpoint_enable:
+ F2FS_CTX_INFO(ctx).unusable_cap_perc = 0;
+ ctx->spec_mask |= F2FS_SPEC_checkpoint_disable_cap_perc;
+ F2FS_CTX_INFO(ctx).unusable_cap = 0;
+ ctx->spec_mask |= F2FS_SPEC_checkpoint_disable_cap;
ctx_clear_opt(ctx, F2FS_MOUNT_DISABLE_CHECKPOINT);
break;
default:
--
2.49.0
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [f2fs-dev] [PATCH] f2fs: fix to clear unusable_cap for checkpoint=enable
2025-08-07 1:48 [PATCH] f2fs: fix to clear unusable_cap for checkpoint=enable Chao Yu
@ 2025-08-08 1:07 ` Zhiguo Niu
2025-08-08 4:14 ` Chao Yu
2025-08-15 16:40 ` patchwork-bot+f2fs
1 sibling, 1 reply; 5+ messages in thread
From: Zhiguo Niu @ 2025-08-08 1:07 UTC (permalink / raw)
To: Chao Yu; +Cc: jaegeuk, linux-kernel, linux-f2fs-devel
Chao Yu via Linux-f2fs-devel <linux-f2fs-devel@lists.sourceforge.net>
于2025年8月7日周四 09:52写道:
>
> mount -t f2fs -o checkpoint=disable:10% /dev/vdb /mnt/f2fs/
> mount -t f2fs -o remount,checkpoint=enable /dev/vdb /mnt/f2fs/
>
> kernel log:
> F2FS-fs (vdb): Adjust unusable cap for checkpoint=disable = 204440 / 10%
>
> If we has assigned checkpoint=enable mount option, unusable_cap{,_perc}
> parameters of checkpoint=disable should be reset, then calculation and
> log print could be avoid in adjust_unusable_cap_perc().
>
> Fixes: 1ae18f71cb52 ("f2fs: fix checkpoint=disable:%u%%")
> Signed-off-by: Chao Yu <chao@kernel.org>
> ---
> fs/f2fs/super.c | 4 ++++
> 1 file changed, 4 insertions(+)
>
> diff --git a/fs/f2fs/super.c b/fs/f2fs/super.c
> index f37004780ce0..c1f45df9efec 100644
> --- a/fs/f2fs/super.c
> +++ b/fs/f2fs/super.c
> @@ -1014,6 +1014,10 @@ static int f2fs_parse_param(struct fs_context *fc, struct fs_parameter *param)
> ctx_set_opt(ctx, F2FS_MOUNT_DISABLE_CHECKPOINT);
> break;
> case Opt_checkpoint_enable:
> + F2FS_CTX_INFO(ctx).unusable_cap_perc = 0;
> + ctx->spec_mask |= F2FS_SPEC_checkpoint_disable_cap_perc;
> + F2FS_CTX_INFO(ctx).unusable_cap = 0;
> + ctx->spec_mask |= F2FS_SPEC_checkpoint_disable_cap;
Hi Chao,
when enable checkpoint, shoud it be:
ctx->spec_mask &= ~F2FS_SPEC_checkpoint_disable_cap_perc;
ctx->spec_mask &= ~F2FS_SPEC_checkpoint_disable_cap;
please correct me if I misunderstanding.
thanks!
> ctx_clear_opt(ctx, F2FS_MOUNT_DISABLE_CHECKPOINT);
> break;
> default:
> --
> 2.49.0
>
>
>
> _______________________________________________
> 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] 5+ messages in thread
* Re: [f2fs-dev] [PATCH] f2fs: fix to clear unusable_cap for checkpoint=enable
2025-08-08 1:07 ` [f2fs-dev] " Zhiguo Niu
@ 2025-08-08 4:14 ` Chao Yu
2025-08-08 5:37 ` Zhiguo Niu
0 siblings, 1 reply; 5+ messages in thread
From: Chao Yu @ 2025-08-08 4:14 UTC (permalink / raw)
To: Zhiguo Niu; +Cc: chao, jaegeuk, linux-kernel, linux-f2fs-devel
On 8/8/2025 9:07 AM, Zhiguo Niu wrote:
> Chao Yu via Linux-f2fs-devel <linux-f2fs-devel@lists.sourceforge.net>
> 于2025年8月7日周四 09:52写道:
>>
>> mount -t f2fs -o checkpoint=disable:10% /dev/vdb /mnt/f2fs/
>> mount -t f2fs -o remount,checkpoint=enable /dev/vdb /mnt/f2fs/
>>
>> kernel log:
>> F2FS-fs (vdb): Adjust unusable cap for checkpoint=disable = 204440 / 10%
>>
>> If we has assigned checkpoint=enable mount option, unusable_cap{,_perc}
>> parameters of checkpoint=disable should be reset, then calculation and
>> log print could be avoid in adjust_unusable_cap_perc().
>>
>> Fixes: 1ae18f71cb52 ("f2fs: fix checkpoint=disable:%u%%")
>> Signed-off-by: Chao Yu <chao@kernel.org>
>> ---
>> fs/f2fs/super.c | 4 ++++
>> 1 file changed, 4 insertions(+)
>>
>> diff --git a/fs/f2fs/super.c b/fs/f2fs/super.c
>> index f37004780ce0..c1f45df9efec 100644
>> --- a/fs/f2fs/super.c
>> +++ b/fs/f2fs/super.c
>> @@ -1014,6 +1014,10 @@ static int f2fs_parse_param(struct fs_context *fc, struct fs_parameter *param)
>> ctx_set_opt(ctx, F2FS_MOUNT_DISABLE_CHECKPOINT);
>> break;
>> case Opt_checkpoint_enable:
>> + F2FS_CTX_INFO(ctx).unusable_cap_perc = 0;
>> + ctx->spec_mask |= F2FS_SPEC_checkpoint_disable_cap_perc;
>> + F2FS_CTX_INFO(ctx).unusable_cap = 0;
>> + ctx->spec_mask |= F2FS_SPEC_checkpoint_disable_cap;
> Hi Chao,
> when enable checkpoint, shoud it be:
> ctx->spec_mask &= ~F2FS_SPEC_checkpoint_disable_cap_perc;
> ctx->spec_mask &= ~F2FS_SPEC_checkpoint_disable_cap;
> please correct me if I misunderstanding.
Zhiguo,
IMO, F2FS_SPEC_checkpoint_disable_cap_perc or F2FS_SPEC_checkpoint_disable_cap
flags can be added to ctx->spec_mask to indicate ctx.unusable_cap_perc or
ctx.unusable_cap has been updated, then we can store last parameter value from
ctx to sbi in f2fs_apply_options() as below:
if (ctx->spec_mask & F2FS_SPEC_checkpoint_disable_cap)
F2FS_OPTION(sbi).unusable_cap = F2FS_CTX_INFO(ctx).unusable_cap;
if (ctx->spec_mask & F2FS_SPEC_checkpoint_disable_cap_perc)
F2FS_OPTION(sbi).unusable_cap_perc =
F2FS_CTX_INFO(ctx).unusable_cap_perc;
Or am I missing something here?
Thanks,
> thanks!
>> ctx_clear_opt(ctx, F2FS_MOUNT_DISABLE_CHECKPOINT);
>> break;
>> default:
>> --
>> 2.49.0
>>
>>
>>
>> _______________________________________________
>> 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] 5+ messages in thread
* Re: [f2fs-dev] [PATCH] f2fs: fix to clear unusable_cap for checkpoint=enable
2025-08-08 4:14 ` Chao Yu
@ 2025-08-08 5:37 ` Zhiguo Niu
0 siblings, 0 replies; 5+ messages in thread
From: Zhiguo Niu @ 2025-08-08 5:37 UTC (permalink / raw)
To: Chao Yu; +Cc: jaegeuk, linux-kernel, linux-f2fs-devel
Chao Yu <chao@kernel.org> 于2025年8月8日周五 12:14写道:
>
> On 8/8/2025 9:07 AM, Zhiguo Niu wrote:
> > Chao Yu via Linux-f2fs-devel <linux-f2fs-devel@lists.sourceforge.net>
> > 于2025年8月7日周四 09:52写道:
> >>
> >> mount -t f2fs -o checkpoint=disable:10% /dev/vdb /mnt/f2fs/
> >> mount -t f2fs -o remount,checkpoint=enable /dev/vdb /mnt/f2fs/
> >>
> >> kernel log:
> >> F2FS-fs (vdb): Adjust unusable cap for checkpoint=disable = 204440 / 10%
> >>
> >> If we has assigned checkpoint=enable mount option, unusable_cap{,_perc}
> >> parameters of checkpoint=disable should be reset, then calculation and
> >> log print could be avoid in adjust_unusable_cap_perc().
> >>
> >> Fixes: 1ae18f71cb52 ("f2fs: fix checkpoint=disable:%u%%")
> >> Signed-off-by: Chao Yu <chao@kernel.org>
> >> ---
> >> fs/f2fs/super.c | 4 ++++
> >> 1 file changed, 4 insertions(+)
> >>
> >> diff --git a/fs/f2fs/super.c b/fs/f2fs/super.c
> >> index f37004780ce0..c1f45df9efec 100644
> >> --- a/fs/f2fs/super.c
> >> +++ b/fs/f2fs/super.c
> >> @@ -1014,6 +1014,10 @@ static int f2fs_parse_param(struct fs_context *fc, struct fs_parameter *param)
> >> ctx_set_opt(ctx, F2FS_MOUNT_DISABLE_CHECKPOINT);
> >> break;
> >> case Opt_checkpoint_enable:
> >> + F2FS_CTX_INFO(ctx).unusable_cap_perc = 0;
> >> + ctx->spec_mask |= F2FS_SPEC_checkpoint_disable_cap_perc;
> >> + F2FS_CTX_INFO(ctx).unusable_cap = 0;
> >> + ctx->spec_mask |= F2FS_SPEC_checkpoint_disable_cap;
> > Hi Chao,
> > when enable checkpoint, shoud it be:
> > ctx->spec_mask &= ~F2FS_SPEC_checkpoint_disable_cap_perc;
> > ctx->spec_mask &= ~F2FS_SPEC_checkpoint_disable_cap;
> > please correct me if I misunderstanding.
>
> Zhiguo,
>
> IMO, F2FS_SPEC_checkpoint_disable_cap_perc or F2FS_SPEC_checkpoint_disable_cap
> flags can be added to ctx->spec_mask to indicate ctx.unusable_cap_perc or
> ctx.unusable_cap has been updated, then we can store last parameter value from
> ctx to sbi in f2fs_apply_options() as below:
>
> if (ctx->spec_mask & F2FS_SPEC_checkpoint_disable_cap)
> F2FS_OPTION(sbi).unusable_cap = F2FS_CTX_INFO(ctx).unusable_cap;
> if (ctx->spec_mask & F2FS_SPEC_checkpoint_disable_cap_perc)
> F2FS_OPTION(sbi).unusable_cap_perc =
> F2FS_CTX_INFO(ctx).unusable_cap_perc;
>
> Or am I missing something here?
Hi Chao,
Ah, yes you are right!
There's something wrong with my thinking.
thank you for your explanation, sorry for the disturbance.
thanks!
>
> Thanks,
>
> > thanks!
> >> ctx_clear_opt(ctx, F2FS_MOUNT_DISABLE_CHECKPOINT);
> >> break;
> >> default:
> >> --
> >> 2.49.0
> >>
> >>
> >>
> >> _______________________________________________
> >> 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] 5+ messages in thread
* Re: [f2fs-dev] [PATCH] f2fs: fix to clear unusable_cap for checkpoint=enable
2025-08-07 1:48 [PATCH] f2fs: fix to clear unusable_cap for checkpoint=enable Chao Yu
2025-08-08 1:07 ` [f2fs-dev] " Zhiguo Niu
@ 2025-08-15 16:40 ` patchwork-bot+f2fs
1 sibling, 0 replies; 5+ messages in thread
From: patchwork-bot+f2fs @ 2025-08-15 16:40 UTC (permalink / raw)
To: Chao Yu; +Cc: jaegeuk, linux-kernel, linux-f2fs-devel
Hello:
This patch was applied to jaegeuk/f2fs.git (dev)
by Jaegeuk Kim <jaegeuk@kernel.org>:
On Thu, 7 Aug 2025 09:48:35 +0800 you wrote:
> mount -t f2fs -o checkpoint=disable:10% /dev/vdb /mnt/f2fs/
> mount -t f2fs -o remount,checkpoint=enable /dev/vdb /mnt/f2fs/
>
> kernel log:
> F2FS-fs (vdb): Adjust unusable cap for checkpoint=disable = 204440 / 10%
>
> If we has assigned checkpoint=enable mount option, unusable_cap{,_perc}
> parameters of checkpoint=disable should be reset, then calculation and
> log print could be avoid in adjust_unusable_cap_perc().
>
> [...]
Here is the summary with links:
- [f2fs-dev] f2fs: fix to clear unusable_cap for checkpoint=enable
https://git.kernel.org/jaegeuk/f2fs/c/743d13d8a600
You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2025-08-15 16:39 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-08-07 1:48 [PATCH] f2fs: fix to clear unusable_cap for checkpoint=enable Chao Yu
2025-08-08 1:07 ` [f2fs-dev] " Zhiguo Niu
2025-08-08 4:14 ` Chao Yu
2025-08-08 5:37 ` Zhiguo Niu
2025-08-15 16:40 ` patchwork-bot+f2fs
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).