From: Eric Sandeen <sandeen@redhat.com>
To: Kyungmin Park <kmpark@infradead.org>
Cc: Lukas Czerner <lczerner@redhat.com>,
tytso@mit.edu, tm@tao.ma, linux-ext4@vger.kernel.org,
linux-kernel@vger.kernel.org
Subject: Re: [PATCH] Set the initial TRIM information as TRIMMED
Date: Fri, 02 Dec 2011 09:57:26 -0600 [thread overview]
Message-ID: <4ED8F566.4050005@redhat.com> (raw)
In-Reply-To: <CAH9JG2WYsybK6aTo3+S58JM568S_YG7YqhP2jfrQ4pQ12GA5UQ@mail.gmail.com>
On 12/1/11 6:01 PM, Kyungmin Park wrote:
> On 12/2/11, Eric Sandeen <sandeen@redhat.com> wrote:
>> On 12/1/11 1:00 AM, Kyungmin Park wrote:
>>> From: Kyungmin Park <kyungmin.park@samsung.com>
>>>
>>> Now trim information doesn't stored at disk so every boot time. it's
>>> cleared.
>>> and do the trim all disk groups.
>>> But assume that it's already trimmed at previous time so don't need to
>>> trim it again. So set the intial state as trimmed.
>>>
>>> Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
>>> ---
>>> diff --git a/fs/ext4/mballoc.c b/fs/ext4/mballoc.c
>>> index e2d8be8..97ef342 100644
>>> --- a/fs/ext4/mballoc.c
>>> +++ b/fs/ext4/mballoc.c
>>> @@ -1098,6 +1098,12 @@ int ext4_mb_init_group(struct super_block *sb,
>>> ext4_group_t group)
>>> goto err;
>>> }
>>> mark_page_accessed(page);
>>> +
>>> + /*
>>> + * TRIM information is not stored at disk so set the initial
>>> + * state as trimmed. Since previous time it's already trimmed all
>>> + */
>>> + EXT4_MB_GRP_SET_TRIMMED(this_grp);
>>
> Hi,
>
>> Hm, so if there were freed but un-trimmed blocks at this point, we will
>> never trim them until we free _another_ block in the group, right? That
>> might be a reasonable tradeoff, but it is somewhat surprising behavior.
>>
>> i.e. say we do:
>>
>> mount /mnt
>> rm -rf /mnt/very_big_file
>> umount /mnt
>>
>> mount /mnt
>> fitrim /mnt
> another word, you can run fitrim after rm -rf
> yes, it's trade-off.
>
> In my case, phone scenario, no umount system and data partition. it's
> burden to trim at boot time. it has still slower boot time.
> some daemon or program run fitrm at filesystem. it consumes time and
> hurt other boot processes.
>>
>> then we won't trim anything at all, right, despite there being many
>> new free blocks? Which would be rather unexpected.
>>
>> If we don't store the trimmed state on disk, I think we should
>> probably stick with the slower first-time trim, and the more obvious
>> behavior (all free blocks are always trimmed whenever a trim
>> command is issued).
>
> Umm how do you think, introduce the trim force command for this?
Alternately, can we use a bit in bg_flags to keep a better view of this
state on disk, if this is critical?
-Eric
> Thank you,
> Kyungmin Park
next prev parent reply other threads:[~2011-12-02 15:57 UTC|newest]
Thread overview: 16+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-12-01 7:00 [PATCH] Set the initial TRIM information as TRIMMED Kyungmin Park
2011-12-01 7:39 ` Tao Ma
2011-12-01 8:19 ` Kyungmin Park
2011-12-01 8:30 ` Tao Ma
2011-12-01 8:39 ` Kyungmin Park
2011-12-01 22:06 ` Eric Sandeen
2011-12-02 0:01 ` Kyungmin Park
2011-12-02 0:50 ` Greg Freemyer
2011-12-05 10:25 ` Lukas Czerner
2011-12-02 15:30 ` Eric Sandeen
2011-12-02 15:45 ` Eric Sandeen
2011-12-02 15:57 ` Eric Sandeen [this message]
2011-12-05 9:55 ` Kyungmin Park
2011-12-05 10:17 ` Lukas Czerner
2011-12-05 10:35 ` Kyungmin Park
2011-12-05 11:09 ` Lukas Czerner
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=4ED8F566.4050005@redhat.com \
--to=sandeen@redhat.com \
--cc=kmpark@infradead.org \
--cc=lczerner@redhat.com \
--cc=linux-ext4@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=tm@tao.ma \
--cc=tytso@mit.edu \
/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