From: liubaolin <liubaolin12138@163.com>
To: Baokun Li <libaokun@linux.alibaba.com>, Theodore Tso <tytso@mit.edu>
Cc: adilger.kernel@dilger.ca, ojaswin@linux.ibm.com,
ritesh.list@gmail.com, yi.zhang@huawei.com,
linux-ext4@vger.kernel.org, linux-kernel@vger.kernel.org,
wangguanyu@vivo.com, Baolin Liu <liubaolin@kylinos.cn>,
Andreas Dilger <adilger@dilger.ca>
Subject: Re: [PATCH v3 v3 2/2] ext4: allow clearing mballoc stats through mb_stats
Date: Mon, 27 Apr 2026 09:29:32 +0800 [thread overview]
Message-ID: <bd3bf849-d14d-4706-b21a-9bce0abb7659@163.com> (raw)
In-Reply-To: <5eaa521b-28b0-4c2a-a33d-57d1449f125e@linux.alibaba.com>
Dear Baokun,
Thank you and Ted for your review and suggestions.
I will incorporate your suggestions and submit the v4 patch as soon
as possible.
Thanks,
Baolin
在 2026/4/24 17:34, Baokun Li 写道:
>
> On 2026/4/24 16:09, liubaolin wrote:
>>
>>
>> 在 2026/4/24 0:19, Theodore Tso 写道:
>>> On Wed, Apr 22, 2026 at 09:50:25AM +0800, Baolin Liu wrote:
>>>> From: Baolin Liu <liubaolin@kylinos.cn>
>>>>
>>>> Make /proc/fs/ext4/<dev>/mb_stats writable and clear the runtime
>>>> mballoc statistics when 0 is written.
>>>
>>> At the moment to enable mb_stats the system administrator needs to
>>> write "1" to /sys/fs/ext4/<dev>/mb_stats, and writing "0" to the sysfs
>>> file will pauce the statistics colleciton (but not clear the
>>> statistics). Adding a way to clear the statistics by writing to the
>>> procfs file might be confusing to users.
>>>
>>> So.... as a suggestion, if you're adding to the ability to write to
>>> /proc/fs/.../mb_stats, what if we make things work by
>>>
>>> * Write 1 to /proc/fs/.../mb_stats to enable statistics collection
>>> * Write 0 to /proc/fs/.../mb_stats to disable statistics collection
>>> * Write -1 to /proc/fs/.../mb_stats to clear statistics counters
>>>
>>> And then deprecate the /sys/fs/.../mb_stats variable (but we probably
>>> won't be able to remove it for at least a year or two).
>>>
>>> - Ted
>> Dear Ted, Baokun,
>> Thank you for your review and suggestions.
>> Since you mentioned that /sys/fs/.../mb_stats cannot be deleted in
>> the short term,
>> I plan to modify and submit a v4 patch according to the following
>> strategy.
>>
>> 1. Change `/proc/fs/.../mb_stats` to read-write mode.
>> * Read `/proc/fs/.../mb_stats` to show statistics counters.
>> * Write 0 to `/proc/fs/.../mb_stats` to disable statistics
>> collection.
>> * Write 1 to `/proc/fs/.../mb_stats` to enable statistics collection.
>> * Write 2 to `/proc/fs/.../mb_stats` to clear statistics counters.
>>
>> 2. Do not delete the `/sys/fs/.../mb_stats` node for now; implement
>> the same write control logic.
>> * Write 0 to `/sys/fs/.../mb_stats` to disable statistics collection.
>> * Write 1 to `/sys/fs/.../mb_stats` to enable statistics collection.
>> * Write 2 to `/sys/fs/.../mb_stats` to clear statistics counters.
>>
>> Delete `/sys/fs/.../mb_stats` later when it is possible to delete it.
>>
>> 3. Modify the relevant documentation for `mb_stats`.
>> Documentation/ABI/testing/sysfs-fs-ext4
>> Documentation/admin-guide/ext4.rst
>> Documentation/filesystems/proc.rst
>>
>> Compared to your suggestion, I recommend using the value 2 for the
>> clear operation because s_mb_stats is an unsigned int variable, and
>> using -1 requires changing the variable type.
>> I suggest avoiding changing the s_mb_stats variable type unless
>> absolutely necessary.
>>
>> Do you think this modification is appropriate?
>> If there are no problems, I will start modifying the code and
>> submit the v4 patch as soon as possible.
>
> For the clear command, we only handle it without storing it, so s_mb_stats
> remains unchanged and still stores only 0 and non-zero values to represent
> disabled and enabled, respectively. Otherwise, you will have to deal with
> a large number of s_mb_stats checks
>
> That means the /sys/fs/.../mb_stats interface does not need to support
> clearing, but it might make sense to add a deprecation warning there.
>
> Then in `/proc/fs/.../mb_stats`, writing 0 or a positive number passes
> it to s_mb_stats, writing -1 performs a reset, and other negative values
> return -EINVAL.
>
>
> Cheers,
> Baokun
>
next prev parent reply other threads:[~2026-04-27 1:30 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-04-22 1:50 [PATCH v3 v3 0/2] add blocks_allocated to mb_stats and clear mb_stats Baolin Liu
2026-04-22 1:50 ` [PATCH v3 v3 1/2] ext4: add blocks_allocated to mb_stats output Baolin Liu
2026-04-24 2:35 ` Baokun Li
2026-04-22 1:50 ` [PATCH v3 v3 2/2] ext4: allow clearing mballoc stats through mb_stats Baolin Liu
2026-04-23 16:19 ` Theodore Tso
2026-04-24 3:12 ` Baokun Li
2026-04-24 8:09 ` liubaolin
2026-04-24 9:34 ` Baokun Li
2026-04-27 1:29 ` liubaolin [this message]
2026-04-24 12:07 ` Theodore Tso
2026-04-27 1:24 ` liubaolin
2026-04-22 9:55 ` [PATCH v3 v3 0/2] add blocks_allocated to mb_stats and clear mb_stats liubaolin
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=bd3bf849-d14d-4706-b21a-9bce0abb7659@163.com \
--to=liubaolin12138@163.com \
--cc=adilger.kernel@dilger.ca \
--cc=adilger@dilger.ca \
--cc=libaokun@linux.alibaba.com \
--cc=linux-ext4@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=liubaolin@kylinos.cn \
--cc=ojaswin@linux.ibm.com \
--cc=ritesh.list@gmail.com \
--cc=tytso@mit.edu \
--cc=wangguanyu@vivo.com \
--cc=yi.zhang@huawei.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox