[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <YO30+XRGAYnME+vy@mit.edu>
Date: Tue, 13 Jul 2021 16:18:01 -0400
From: "Theodore Y. Ts'o" <tytso@....edu>
To: Shyam Prasad N <nspmangalore@...il.com>
Cc: David Howells <dhowells@...hat.com>,
Steve French <smfrench@...il.com>, linux-ext4@...r.kernel.org
Subject: Re: Regarding ext4 extent allocation strategy
On Tue, Jul 13, 2021 at 06:27:37PM +0530, Shyam Prasad N wrote:
>
> Also, is this parameter also respected when a hole is punched in the
> middle of an allocated data extent? i.e. is there still a possibility
> that a punched hole does not translate to splitting the data extent,
> even when extent_max_zeroout_kb is set to 0?
Ext4 doesn't ever try to zero blocks as part of a punch operation.
It's true a file system is allowed to do it, but I would guess most
wouldn't, since the presumption is that userspace is actually trying
to free up disk space, and so you would want to release the disk
blocks in the punch hole case.
The more interesting one is the FALLOC_FL_ZERO_RANGE_FL operation,
which *should* work by transitioning the extent to be uninitialized,
but there might be cases where writing a few zero blocks might be
faster in some cases. That should use the same code path which
resepects the max_zeroout configuration parameter for ext4.
Cheers,
- Ted
Powered by blists - more mailing lists