Message ID | 20241023143029.11275-1-bfoster@redhat.com (mailing list archive) |
---|---|
State | New |
Headers | show |
Series | iomap: elide zero range flush from partial eof zeroing | expand |
Hi Brian,
kernel test robot noticed the following build errors:
[auto build test ERROR on brauner-vfs/vfs.all]
[also build test ERROR on linus/master v6.12-rc4 next-20241024]
[If your patch is applied to the wrong git tree, kindly drop us a note.
And when submitting patch, we suggest to use '--base' as documented in
https://git-scm.com/docs/git-format-patch#_base_tree_information]
url: https://github.com/intel-lab-lkp/linux/commits/Brian-Foster/iomap-elide-zero-range-flush-from-partial-eof-zeroing/20241023-223311
base: https://git.kernel.org/pub/scm/linux/kernel/git/vfs/vfs.git vfs.all
patch link: https://lore.kernel.org/r/20241023143029.11275-1-bfoster%40redhat.com
patch subject: [PATCH] iomap: elide zero range flush from partial eof zeroing
config: powerpc-allnoconfig (https://download.01.org/0day-ci/archive/20241024/202410242220.ZfBg7XEr-lkp@intel.com/config)
compiler: powerpc-linux-gcc (GCC) 14.1.0
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20241024/202410242220.ZfBg7XEr-lkp@intel.com/reproduce)
If you fix the issue in a separate patch/commit (i.e. not just a new version of
the same patch/commit), kindly add following tags
| Reported-by: kernel test robot <lkp@intel.com>
| Closes: https://lore.kernel.org/oe-kbuild-all/202410242220.ZfBg7XEr-lkp@intel.com/
All errors (new ones prefixed by >>):
powerpc-linux-ld: fs/iomap/buffered-io.o: in function `iomap_zero_iter':
>> buffered-io.c:(.text+0x3f5c): undefined reference to `__moddi3'
On Wed, Oct 23, 2024 at 10:30:29AM -0400, Brian Foster wrote: > iomap zero range performs a pagecache flush upon seeing unwritten > extents with dirty pagecache in order to determine accurate > subranges that require direct zeroing. This is to support an > optimization where clean, unwritten ranges are skipped as they are > already zero on-disk. > > Certain use cases for zero range are more sensitive to flush latency > than others. The kernel test robot recently reported a regression in > the following stress-ng workload on XFS: > > stress-ng --timeout 60 --times --verify --metrics --no-rand-seed --metamix 64 > > This workload involves a series of small, strided, write extending > writes. On XFS, this produces a pattern of allocating post-eof > speculative preallocation, converting preallocation to unwritten on > zero range calls, dirtying pagecache over the converted mapping, and > then repeating the sequence again from the updated EOF. This > basically produces a sequence of pagecache flushes on the partial > EOF block zeroing use case of zero range. > > To mitigate this problem, special case the EOF block zeroing use > case to prefer zeroing over a pagecache flush when the EOF folio is > already dirty. This brings most of the performance back by avoiding > flushes on write and truncate extension operations, while preserving > the ability for iomap to flush and properly process larger ranges. > > Signed-off-by: Brian Foster <bfoster@redhat.com> > --- > > Hi iomap maintainers, > > This is an incremental optimization for the regression reported by the > test robot here[1]. I'm not totally convinced this is necessary as an > immediate fix, but the discussion on that thread was enough to suggest > it could be. I don't really love the factoring, but I had to play a bit > of whack-a-mole between fstests and stress-ng to restore performance and > still maintain behavior expectations for some of the tests. > > On a positive note, exploring this gave me what I think is a better idea > for dealing with zero range overall, so I'm working on a followup to > this that reworks it by splitting zero range across block alignment > boundaries (similar to how something like truncate page range works, for > example). This simplifies things by isolating the dirty range check to a > single folio on an unaligned start offset, which lets the _iter() call > do a skip or zero (i.e. no more flush_and_stale()), and then > unconditionally flush the aligned portion to end-of-range. The latter > flush should be a no-op for every use case I've seen so far, so this > might entirely avoid the need for anything more complex for zero range. > > In summary, I'm posting this as an optional and more "stable-worthy" > patch for reference and for the maintainers to consider as they like. I > think it's reasonable to include if we are concerned about this > particular stress-ng test and are Ok with it as a transient solution. > But if it were up to me, I'd probably sit on it for a bit to determine > if a more practical user/workload is affected by this, particularly > knowing that I'm trying to rework it. This could always be applied as a > stable fix if really needed, but I just don't think the slightly more > invasive rework is appropriate for -rc.. > > Thoughts, reviews, flames appreciated. > > Brian > > [1] https://lore.kernel.org/linux-xfs/202410141536.1167190b-oliver.sang@intel.com/ > > fs/iomap/buffered-io.c | 20 +++++++++++++++++--- > 1 file changed, 17 insertions(+), 3 deletions(-) > > diff --git a/fs/iomap/buffered-io.c b/fs/iomap/buffered-io.c > index aa587b2142e2..8fd25b14d120 100644 > --- a/fs/iomap/buffered-io.c > +++ b/fs/iomap/buffered-io.c > @@ -1372,6 +1372,7 @@ static loff_t iomap_zero_iter(struct iomap_iter *iter, bool *did_zero, > loff_t pos = iter->pos; > loff_t length = iomap_length(iter); > loff_t written = 0; > + bool eof_zero = false; > > /* > * We must zero subranges of unwritten mappings that might be dirty in > @@ -1391,12 +1392,23 @@ static loff_t iomap_zero_iter(struct iomap_iter *iter, bool *did_zero, > * triggers writeback time post-eof zeroing. > */ > if (srcmap->type == IOMAP_HOLE || srcmap->type == IOMAP_UNWRITTEN) { > - if (*range_dirty) { > + /* range is clean and already zeroed, nothing to do */ > + if (!*range_dirty) > + return length; > + > + /* flush for anything other than partial eof zeroing */ > + if (pos != i_size_read(iter->inode) || > + (pos % i_blocksize(iter->inode)) == 0) { > *range_dirty = false; > return iomap_zero_iter_flush_and_stale(iter); > } > - /* range is clean and already zeroed, nothing to do */ > - return length; > + /* > + * Special case partial EOF zeroing. Since we know the EOF > + * folio is dirty, prefer in-memory zeroing for it. This avoids > + * excessive flush latency on frequent file size extending > + * operations. > + */ > + eof_zero = true; > } > > do { > @@ -1415,6 +1427,8 @@ static loff_t iomap_zero_iter(struct iomap_iter *iter, bool *did_zero, > offset = offset_in_folio(folio, pos); > if (bytes > folio_size(folio) - offset) > bytes = folio_size(folio) - offset; > + if (eof_zero && length > bytes) > + length = bytes; What does this do? I think this causes the loop to break after putting the folio that caches @pos? And then I guess we go around the loop in iomap_zero_range again if there were more bytes to zero after this folio? --D > > folio_zero_range(folio, offset, bytes); > folio_mark_accessed(folio); > -- > 2.46.2 > >
On Thu, Oct 24, 2024 at 10:08:17AM -0700, Darrick J. Wong wrote: > On Wed, Oct 23, 2024 at 10:30:29AM -0400, Brian Foster wrote: > > iomap zero range performs a pagecache flush upon seeing unwritten > > extents with dirty pagecache in order to determine accurate > > subranges that require direct zeroing. This is to support an > > optimization where clean, unwritten ranges are skipped as they are > > already zero on-disk. > > > > Certain use cases for zero range are more sensitive to flush latency > > than others. The kernel test robot recently reported a regression in > > the following stress-ng workload on XFS: > > > > stress-ng --timeout 60 --times --verify --metrics --no-rand-seed --metamix 64 > > > > This workload involves a series of small, strided, write extending > > writes. On XFS, this produces a pattern of allocating post-eof > > speculative preallocation, converting preallocation to unwritten on > > zero range calls, dirtying pagecache over the converted mapping, and > > then repeating the sequence again from the updated EOF. This > > basically produces a sequence of pagecache flushes on the partial > > EOF block zeroing use case of zero range. > > > > To mitigate this problem, special case the EOF block zeroing use > > case to prefer zeroing over a pagecache flush when the EOF folio is > > already dirty. This brings most of the performance back by avoiding > > flushes on write and truncate extension operations, while preserving > > the ability for iomap to flush and properly process larger ranges. > > > > Signed-off-by: Brian Foster <bfoster@redhat.com> > > --- > > > > Hi iomap maintainers, > > > > This is an incremental optimization for the regression reported by the > > test robot here[1]. I'm not totally convinced this is necessary as an > > immediate fix, but the discussion on that thread was enough to suggest > > it could be. I don't really love the factoring, but I had to play a bit > > of whack-a-mole between fstests and stress-ng to restore performance and > > still maintain behavior expectations for some of the tests. > > > > On a positive note, exploring this gave me what I think is a better idea > > for dealing with zero range overall, so I'm working on a followup to > > this that reworks it by splitting zero range across block alignment > > boundaries (similar to how something like truncate page range works, for > > example). This simplifies things by isolating the dirty range check to a > > single folio on an unaligned start offset, which lets the _iter() call > > do a skip or zero (i.e. no more flush_and_stale()), and then > > unconditionally flush the aligned portion to end-of-range. The latter > > flush should be a no-op for every use case I've seen so far, so this > > might entirely avoid the need for anything more complex for zero range. > > > > In summary, I'm posting this as an optional and more "stable-worthy" > > patch for reference and for the maintainers to consider as they like. I > > think it's reasonable to include if we are concerned about this > > particular stress-ng test and are Ok with it as a transient solution. > > But if it were up to me, I'd probably sit on it for a bit to determine > > if a more practical user/workload is affected by this, particularly > > knowing that I'm trying to rework it. This could always be applied as a > > stable fix if really needed, but I just don't think the slightly more > > invasive rework is appropriate for -rc.. > > > > Thoughts, reviews, flames appreciated. > > > > Brian > > > > [1] https://lore.kernel.org/linux-xfs/202410141536.1167190b-oliver.sang@intel.com/ > > > > fs/iomap/buffered-io.c | 20 +++++++++++++++++--- > > 1 file changed, 17 insertions(+), 3 deletions(-) > > > > diff --git a/fs/iomap/buffered-io.c b/fs/iomap/buffered-io.c > > index aa587b2142e2..8fd25b14d120 100644 > > --- a/fs/iomap/buffered-io.c > > +++ b/fs/iomap/buffered-io.c > > @@ -1372,6 +1372,7 @@ static loff_t iomap_zero_iter(struct iomap_iter *iter, bool *did_zero, > > loff_t pos = iter->pos; > > loff_t length = iomap_length(iter); > > loff_t written = 0; > > + bool eof_zero = false; > > > > /* > > * We must zero subranges of unwritten mappings that might be dirty in > > @@ -1391,12 +1392,23 @@ static loff_t iomap_zero_iter(struct iomap_iter *iter, bool *did_zero, > > * triggers writeback time post-eof zeroing. > > */ > > if (srcmap->type == IOMAP_HOLE || srcmap->type == IOMAP_UNWRITTEN) { > > - if (*range_dirty) { > > + /* range is clean and already zeroed, nothing to do */ > > + if (!*range_dirty) > > + return length; > > + > > + /* flush for anything other than partial eof zeroing */ > > + if (pos != i_size_read(iter->inode) || > > + (pos % i_blocksize(iter->inode)) == 0) { > > *range_dirty = false; > > return iomap_zero_iter_flush_and_stale(iter); > > } > > - /* range is clean and already zeroed, nothing to do */ > > - return length; > > + /* > > + * Special case partial EOF zeroing. Since we know the EOF > > + * folio is dirty, prefer in-memory zeroing for it. This avoids > > + * excessive flush latency on frequent file size extending > > + * operations. > > + */ > > + eof_zero = true; > > } > > > > do { > > @@ -1415,6 +1427,8 @@ static loff_t iomap_zero_iter(struct iomap_iter *iter, bool *did_zero, > > offset = offset_in_folio(folio, pos); > > if (bytes > folio_size(folio) - offset) > > bytes = folio_size(folio) - offset; > > + if (eof_zero && length > bytes) > > + length = bytes; > > What does this do? I think this causes the loop to break after putting > the folio that caches @pos? And then I guess we go around the loop in > iomap_zero_range again if there were more bytes to zero after this > folio? > Yeah.. it's basically just saying that if we fell into folio zeroing due to the special case logic above, only process through the end of this particular folio and jump back out to process the rest of the range as normal. The idea was just to prevent going off and doing a bunch of unexpected zeroing across an unwritten mapping just because we had an unaligned range that starts with a dirty folio. FWIW, the reworked variant I have of this currently looks like the appended diff. The caveat is this can still flush if a large folio happens to overlap the two subranges, but as is seems to placate the stress-ng test. In theory, I think having something like an iomap_zero_folio(folio, start_pos, end_pos) that zeroed up through min(end_pos, folio_end_pos) for the unaligned part would mitigate that, but I'm not quite sure of a clean way to do that; particularly if we have a large folio made up of multiple mappings. I'm also still undecided on whether to unconditionally flush the rest or try to preserve the flush_and_stale() approach as well. Brian --- 8< --- diff --git a/fs/iomap/buffered-io.c b/fs/iomap/buffered-io.c index aa587b2142e2..fcc55d8c1f14 100644 --- a/fs/iomap/buffered-io.c +++ b/fs/iomap/buffered-io.c @@ -1351,22 +1351,8 @@ iomap_file_unshare(struct inode *inode, loff_t pos, loff_t len, } EXPORT_SYMBOL_GPL(iomap_file_unshare); -/* - * Flush the remaining range of the iter and mark the current mapping stale. - * This is used when zero range sees an unwritten mapping that may have had - * dirty pagecache over it. - */ -static inline int iomap_zero_iter_flush_and_stale(struct iomap_iter *i) -{ - struct address_space *mapping = i->inode->i_mapping; - loff_t end = i->pos + i->len - 1; - - i->iomap.flags |= IOMAP_F_STALE; - return filemap_write_and_wait_range(mapping, i->pos, end); -} - static loff_t iomap_zero_iter(struct iomap_iter *iter, bool *did_zero, - bool *range_dirty) + bool range_dirty) { const struct iomap *srcmap = iomap_iter_srcmap(iter); loff_t pos = iter->pos; @@ -1391,12 +1377,8 @@ static loff_t iomap_zero_iter(struct iomap_iter *iter, bool *did_zero, * triggers writeback time post-eof zeroing. */ if (srcmap->type == IOMAP_HOLE || srcmap->type == IOMAP_UNWRITTEN) { - if (*range_dirty) { - *range_dirty = false; - return iomap_zero_iter_flush_and_stale(iter); - } - /* range is clean and already zeroed, nothing to do */ - return length; + if (!range_dirty) + return length; } do { @@ -1434,9 +1416,9 @@ static loff_t iomap_zero_iter(struct iomap_iter *iter, bool *did_zero, return written; } -int -iomap_zero_range(struct inode *inode, loff_t pos, loff_t len, bool *did_zero, - const struct iomap_ops *ops) +static loff_t +__iomap_zero_range(struct inode *inode, loff_t pos, loff_t len, bool *did_zero, + const struct iomap_ops *ops, bool range_dirty) { struct iomap_iter iter = { .inode = inode, @@ -1445,28 +1427,55 @@ iomap_zero_range(struct inode *inode, loff_t pos, loff_t len, bool *did_zero, .flags = IOMAP_ZERO, }; int ret; - bool range_dirty; + loff_t count = 0; + + while ((ret = iomap_iter(&iter, ops)) > 0) { + iter.processed = iomap_zero_iter(&iter, did_zero, range_dirty); + count += iter.processed; + } + return ret ? ret : count; +} + +int +iomap_zero_range(struct inode *inode, loff_t pos, loff_t len, bool *did_zero, + const struct iomap_ops *ops) +{ + struct address_space *mapping = inode->i_mapping; + unsigned int blocksize = i_blocksize(inode); + unsigned int off = pos & (blocksize - 1); + int ret; /* - * Zero range wants to skip pre-zeroed (i.e. unwritten) mappings, but - * pagecache must be flushed to ensure stale data from previous - * buffered writes is not exposed. A flush is only required for certain - * types of mappings, but checking pagecache after mapping lookup is - * racy with writeback and reclaim. + * Zero range wants to skip mappings that are already zero on disk, but + * the only way to handle unwritten mappings covered by dirty pagecache + * is to flush and reprocess the converted mappings after I/O + * completion. * - * Therefore, check the entire range first and pass along whether any - * part of it is dirty. If so and an underlying mapping warrants it, - * flush the cache at that point. This trades off the occasional false - * positive (and spurious flush, if the dirty data and mapping don't - * happen to overlap) for simplicity in handling a relatively uncommon - * situation. + * The partial EOF zeroing use case is performance sensitive, so split + * and handle an unaligned start of the range separately. The dirty + * check tells the iter function whether it can skip or zero the folio + * without needing to flush. Larger ranges tend to have already been + * flushed by the filesystem, so flush the rest here as a safety measure + * and process as normal. */ - range_dirty = filemap_range_needs_writeback(inode->i_mapping, - pos, pos + len - 1); + if (off) { + loff_t count = min_t(loff_t, len, blocksize - off); + bool range_dirty = filemap_range_needs_writeback(mapping, pos, + pos + count - 1); + count = __iomap_zero_range(inode, pos, count, did_zero, ops, + range_dirty); + if (count < 0) + return count; + pos += count; + len -= count; + } + if (!len) + return 0; - while ((ret = iomap_iter(&iter, ops)) > 0) - iter.processed = iomap_zero_iter(&iter, did_zero, &range_dirty); - return ret; + ret = filemap_write_and_wait_range(mapping, pos, pos + len - 1); + if (!ret) + ret = __iomap_zero_range(inode, pos, len, did_zero, ops, false); + return ret > 0 ? 0 : ret; } EXPORT_SYMBOL_GPL(iomap_zero_range);
On Thu, Oct 24, 2024 at 01:41:14PM -0400, Brian Foster wrote: > On Thu, Oct 24, 2024 at 10:08:17AM -0700, Darrick J. Wong wrote: > > On Wed, Oct 23, 2024 at 10:30:29AM -0400, Brian Foster wrote: > > > iomap zero range performs a pagecache flush upon seeing unwritten > > > extents with dirty pagecache in order to determine accurate > > > subranges that require direct zeroing. This is to support an > > > optimization where clean, unwritten ranges are skipped as they are > > > already zero on-disk. > > > > > > Certain use cases for zero range are more sensitive to flush latency > > > than others. The kernel test robot recently reported a regression in > > > the following stress-ng workload on XFS: > > > > > > stress-ng --timeout 60 --times --verify --metrics --no-rand-seed --metamix 64 > > > > > > This workload involves a series of small, strided, write extending > > > writes. On XFS, this produces a pattern of allocating post-eof > > > speculative preallocation, converting preallocation to unwritten on > > > zero range calls, dirtying pagecache over the converted mapping, and > > > then repeating the sequence again from the updated EOF. This > > > basically produces a sequence of pagecache flushes on the partial > > > EOF block zeroing use case of zero range. > > > > > > To mitigate this problem, special case the EOF block zeroing use > > > case to prefer zeroing over a pagecache flush when the EOF folio is > > > already dirty. This brings most of the performance back by avoiding > > > flushes on write and truncate extension operations, while preserving > > > the ability for iomap to flush and properly process larger ranges. > > > > > > Signed-off-by: Brian Foster <bfoster@redhat.com> > > > --- > > > > > > Hi iomap maintainers, > > > > > > This is an incremental optimization for the regression reported by the > > > test robot here[1]. I'm not totally convinced this is necessary as an > > > immediate fix, but the discussion on that thread was enough to suggest > > > it could be. I don't really love the factoring, but I had to play a bit > > > of whack-a-mole between fstests and stress-ng to restore performance and > > > still maintain behavior expectations for some of the tests. > > > > > > On a positive note, exploring this gave me what I think is a better idea > > > for dealing with zero range overall, so I'm working on a followup to > > > this that reworks it by splitting zero range across block alignment > > > boundaries (similar to how something like truncate page range works, for > > > example). This simplifies things by isolating the dirty range check to a > > > single folio on an unaligned start offset, which lets the _iter() call > > > do a skip or zero (i.e. no more flush_and_stale()), and then > > > unconditionally flush the aligned portion to end-of-range. The latter > > > flush should be a no-op for every use case I've seen so far, so this > > > might entirely avoid the need for anything more complex for zero range. > > > > > > In summary, I'm posting this as an optional and more "stable-worthy" > > > patch for reference and for the maintainers to consider as they like. I > > > think it's reasonable to include if we are concerned about this > > > particular stress-ng test and are Ok with it as a transient solution. > > > But if it were up to me, I'd probably sit on it for a bit to determine > > > if a more practical user/workload is affected by this, particularly > > > knowing that I'm trying to rework it. This could always be applied as a > > > stable fix if really needed, but I just don't think the slightly more > > > invasive rework is appropriate for -rc.. > > > > > > Thoughts, reviews, flames appreciated. > > > > > > Brian > > > > > > [1] https://lore.kernel.org/linux-xfs/202410141536.1167190b-oliver.sang@intel.com/ > > > > > > fs/iomap/buffered-io.c | 20 +++++++++++++++++--- > > > 1 file changed, 17 insertions(+), 3 deletions(-) > > > > > > diff --git a/fs/iomap/buffered-io.c b/fs/iomap/buffered-io.c > > > index aa587b2142e2..8fd25b14d120 100644 > > > --- a/fs/iomap/buffered-io.c > > > +++ b/fs/iomap/buffered-io.c > > > @@ -1372,6 +1372,7 @@ static loff_t iomap_zero_iter(struct iomap_iter *iter, bool *did_zero, > > > loff_t pos = iter->pos; > > > loff_t length = iomap_length(iter); > > > loff_t written = 0; > > > + bool eof_zero = false; > > > > > > /* > > > * We must zero subranges of unwritten mappings that might be dirty in > > > @@ -1391,12 +1392,23 @@ static loff_t iomap_zero_iter(struct iomap_iter *iter, bool *did_zero, > > > * triggers writeback time post-eof zeroing. > > > */ > > > if (srcmap->type == IOMAP_HOLE || srcmap->type == IOMAP_UNWRITTEN) { > > > - if (*range_dirty) { > > > + /* range is clean and already zeroed, nothing to do */ > > > + if (!*range_dirty) > > > + return length; > > > + > > > + /* flush for anything other than partial eof zeroing */ > > > + if (pos != i_size_read(iter->inode) || > > > + (pos % i_blocksize(iter->inode)) == 0) { > > > *range_dirty = false; > > > return iomap_zero_iter_flush_and_stale(iter); > > > } > > > - /* range is clean and already zeroed, nothing to do */ > > > - return length; > > > + /* > > > + * Special case partial EOF zeroing. Since we know the EOF > > > + * folio is dirty, prefer in-memory zeroing for it. This avoids > > > + * excessive flush latency on frequent file size extending > > > + * operations. > > > + */ > > > + eof_zero = true; > > > } > > > > > > do { > > > @@ -1415,6 +1427,8 @@ static loff_t iomap_zero_iter(struct iomap_iter *iter, bool *did_zero, > > > offset = offset_in_folio(folio, pos); > > > if (bytes > folio_size(folio) - offset) > > > bytes = folio_size(folio) - offset; > > > + if (eof_zero && length > bytes) > > > + length = bytes; > > > > What does this do? I think this causes the loop to break after putting > > the folio that caches @pos? And then I guess we go around the loop in > > iomap_zero_range again if there were more bytes to zero after this > > folio? > > > > Yeah.. it's basically just saying that if we fell into folio zeroing due > to the special case logic above, only process through the end of this > particular folio and jump back out to process the rest of the range as > normal. The idea was just to prevent going off and doing a bunch of > unexpected zeroing across an unwritten mapping just because we had an > unaligned range that starts with a dirty folio. > > FWIW, the reworked variant I have of this currently looks like the > appended diff. The caveat is this can still flush if a large folio > happens to overlap the two subranges, but as is seems to placate the > stress-ng test. In theory, I think having something like an > iomap_zero_folio(folio, start_pos, end_pos) that zeroed up through > min(end_pos, folio_end_pos) for the unaligned part would mitigate that, > but I'm not quite sure of a clean way to do that; particularly if we > have a large folio made up of multiple mappings. I'm also still > undecided on whether to unconditionally flush the rest or try to > preserve the flush_and_stale() approach as well. > > Brian > > --- 8< --- > ... And here's another variant that preserves the flush_and_stale() behavior. This one is compile tested only: diff --git a/fs/iomap/buffered-io.c b/fs/iomap/buffered-io.c index aa587b2142e2..37a27c344078 100644 --- a/fs/iomap/buffered-io.c +++ b/fs/iomap/buffered-io.c @@ -1365,40 +1365,12 @@ static inline int iomap_zero_iter_flush_and_stale(struct iomap_iter *i) return filemap_write_and_wait_range(mapping, i->pos, end); } -static loff_t iomap_zero_iter(struct iomap_iter *iter, bool *did_zero, - bool *range_dirty) +static loff_t iomap_zero_iter(struct iomap_iter *iter, bool *did_zero) { - const struct iomap *srcmap = iomap_iter_srcmap(iter); loff_t pos = iter->pos; loff_t length = iomap_length(iter); loff_t written = 0; - /* - * We must zero subranges of unwritten mappings that might be dirty in - * pagecache from previous writes. We only know whether the entire range - * was clean or not, however, and dirty folios may have been written - * back or reclaimed at any point after mapping lookup. - * - * The easiest way to deal with this is to flush pagecache to trigger - * any pending unwritten conversions and then grab the updated extents - * from the fs. The flush may change the current mapping, so mark it - * stale for the iterator to remap it for the next pass to handle - * properly. - * - * Note that holes are treated the same as unwritten because zero range - * is (ab)used for partial folio zeroing in some cases. Hole backed - * post-eof ranges can be dirtied via mapped write and the flush - * triggers writeback time post-eof zeroing. - */ - if (srcmap->type == IOMAP_HOLE || srcmap->type == IOMAP_UNWRITTEN) { - if (*range_dirty) { - *range_dirty = false; - return iomap_zero_iter_flush_and_stale(iter); - } - /* range is clean and already zeroed, nothing to do */ - return length; - } - do { struct folio *folio; int status; @@ -1434,38 +1406,69 @@ static loff_t iomap_zero_iter(struct iomap_iter *iter, bool *did_zero, return written; } +static inline void +iomap_iter_init(struct iomap_iter *iter, struct inode *inode, loff_t pos, + loff_t len) +{ + memset(iter, 0, sizeof(*iter)); + iter->inode = inode; + iter->pos = pos; + iter->len = len; + iter->flags = IOMAP_ZERO; +} + int iomap_zero_range(struct inode *inode, loff_t pos, loff_t len, bool *did_zero, const struct iomap_ops *ops) { - struct iomap_iter iter = { - .inode = inode, - .pos = pos, - .len = len, - .flags = IOMAP_ZERO, - }; + struct iomap_iter iter; + struct address_space *mapping = inode->i_mapping; + unsigned int blocksize = i_blocksize(inode); + unsigned int off = pos & (blocksize - 1); + loff_t plen = min_t(loff_t, len, blocksize - off); + bool dirty; int ret; - bool range_dirty; + + iomap_iter_init(&iter, inode, pos, len); /* - * Zero range wants to skip pre-zeroed (i.e. unwritten) mappings, but - * pagecache must be flushed to ensure stale data from previous - * buffered writes is not exposed. A flush is only required for certain - * types of mappings, but checking pagecache after mapping lookup is - * racy with writeback and reclaim. + * Zero range wants to skip mappings that are already zero on disk, but + * the only way to handle unwritten mappings covered by dirty pagecache + * is to flush and reprocess the converted mappings after I/O + * completion. * - * Therefore, check the entire range first and pass along whether any - * part of it is dirty. If so and an underlying mapping warrants it, - * flush the cache at that point. This trades off the occasional false - * positive (and spurious flush, if the dirty data and mapping don't - * happen to overlap) for simplicity in handling a relatively uncommon - * situation. + * The partial EOF zeroing use case is performance sensitive, so split + * and handle an unaligned start of the range separately. The dirty + * check tells the iter function whether it can skip or zero the folio + * without needing to flush. Larger ranges tend to have already been + * flushed by the filesystem, so flush the rest here as a safety measure + * and process as normal. */ - range_dirty = filemap_range_needs_writeback(inode->i_mapping, - pos, pos + len - 1); + if (off && + filemap_range_needs_writeback(mapping, pos, pos + plen - 1)) { + iter.len = plen; + while ((ret = iomap_iter(&iter, ops)) > 0) + iter.processed = iomap_zero_iter(&iter, did_zero); + iomap_iter_init(&iter, inode, iter.pos, len - (iter.pos - pos)); + if (ret || !iter.len) + return ret; + } + + dirty = filemap_range_needs_writeback(mapping, iter.pos, + iter.pos + iter.len - 1); + while ((ret = iomap_iter(&iter, ops)) > 0) { + const struct iomap *s = iomap_iter_srcmap(&iter); + if (!(s->type == IOMAP_HOLE || s->type == IOMAP_UNWRITTEN)) { + iter.processed = iomap_zero_iter(&iter, did_zero); + continue; + } + iter.processed = iomap_length(&iter); + if (dirty) { + dirty = false; + iter.processed = iomap_zero_iter_flush_and_stale(&iter); + } + } - while ((ret = iomap_iter(&iter, ops)) > 0) - iter.processed = iomap_zero_iter(&iter, did_zero, &range_dirty); return ret; } EXPORT_SYMBOL_GPL(iomap_zero_range);
On Thu, Oct 24, 2024 at 03:42:41PM -0400, Brian Foster wrote: > On Thu, Oct 24, 2024 at 01:41:14PM -0400, Brian Foster wrote: > > On Thu, Oct 24, 2024 at 10:08:17AM -0700, Darrick J. Wong wrote: > > > On Wed, Oct 23, 2024 at 10:30:29AM -0400, Brian Foster wrote: > > > > iomap zero range performs a pagecache flush upon seeing unwritten > > > > extents with dirty pagecache in order to determine accurate > > > > subranges that require direct zeroing. This is to support an > > > > optimization where clean, unwritten ranges are skipped as they are > > > > already zero on-disk. > > > > > > > > Certain use cases for zero range are more sensitive to flush latency > > > > than others. The kernel test robot recently reported a regression in > > > > the following stress-ng workload on XFS: > > > > > > > > stress-ng --timeout 60 --times --verify --metrics --no-rand-seed --metamix 64 > > > > > > > > This workload involves a series of small, strided, write extending > > > > writes. On XFS, this produces a pattern of allocating post-eof > > > > speculative preallocation, converting preallocation to unwritten on > > > > zero range calls, dirtying pagecache over the converted mapping, and > > > > then repeating the sequence again from the updated EOF. This > > > > basically produces a sequence of pagecache flushes on the partial > > > > EOF block zeroing use case of zero range. > > > > > > > > To mitigate this problem, special case the EOF block zeroing use > > > > case to prefer zeroing over a pagecache flush when the EOF folio is > > > > already dirty. This brings most of the performance back by avoiding > > > > flushes on write and truncate extension operations, while preserving > > > > the ability for iomap to flush and properly process larger ranges. > > > > > > > > Signed-off-by: Brian Foster <bfoster@redhat.com> > > > > --- > > > > > > > > Hi iomap maintainers, > > > > > > > > This is an incremental optimization for the regression reported by the > > > > test robot here[1]. I'm not totally convinced this is necessary as an > > > > immediate fix, but the discussion on that thread was enough to suggest > > > > it could be. I don't really love the factoring, but I had to play a bit > > > > of whack-a-mole between fstests and stress-ng to restore performance and > > > > still maintain behavior expectations for some of the tests. > > > > > > > > On a positive note, exploring this gave me what I think is a better idea > > > > for dealing with zero range overall, so I'm working on a followup to > > > > this that reworks it by splitting zero range across block alignment > > > > boundaries (similar to how something like truncate page range works, for > > > > example). This simplifies things by isolating the dirty range check to a > > > > single folio on an unaligned start offset, which lets the _iter() call > > > > do a skip or zero (i.e. no more flush_and_stale()), and then > > > > unconditionally flush the aligned portion to end-of-range. The latter > > > > flush should be a no-op for every use case I've seen so far, so this > > > > might entirely avoid the need for anything more complex for zero range. > > > > > > > > In summary, I'm posting this as an optional and more "stable-worthy" > > > > patch for reference and for the maintainers to consider as they like. I > > > > think it's reasonable to include if we are concerned about this > > > > particular stress-ng test and are Ok with it as a transient solution. > > > > But if it were up to me, I'd probably sit on it for a bit to determine > > > > if a more practical user/workload is affected by this, particularly > > > > knowing that I'm trying to rework it. This could always be applied as a > > > > stable fix if really needed, but I just don't think the slightly more > > > > invasive rework is appropriate for -rc.. > > > > > > > > Thoughts, reviews, flames appreciated. > > > > > > > > Brian > > > > > > > > [1] https://lore.kernel.org/linux-xfs/202410141536.1167190b-oliver.sang@intel.com/ > > > > > > > > fs/iomap/buffered-io.c | 20 +++++++++++++++++--- > > > > 1 file changed, 17 insertions(+), 3 deletions(-) > > > > > > > > diff --git a/fs/iomap/buffered-io.c b/fs/iomap/buffered-io.c > > > > index aa587b2142e2..8fd25b14d120 100644 > > > > --- a/fs/iomap/buffered-io.c > > > > +++ b/fs/iomap/buffered-io.c > > > > @@ -1372,6 +1372,7 @@ static loff_t iomap_zero_iter(struct iomap_iter *iter, bool *did_zero, > > > > loff_t pos = iter->pos; > > > > loff_t length = iomap_length(iter); > > > > loff_t written = 0; > > > > + bool eof_zero = false; > > > > > > > > /* > > > > * We must zero subranges of unwritten mappings that might be dirty in > > > > @@ -1391,12 +1392,23 @@ static loff_t iomap_zero_iter(struct iomap_iter *iter, bool *did_zero, > > > > * triggers writeback time post-eof zeroing. > > > > */ > > > > if (srcmap->type == IOMAP_HOLE || srcmap->type == IOMAP_UNWRITTEN) { > > > > - if (*range_dirty) { > > > > + /* range is clean and already zeroed, nothing to do */ > > > > + if (!*range_dirty) > > > > + return length; > > > > + > > > > + /* flush for anything other than partial eof zeroing */ > > > > + if (pos != i_size_read(iter->inode) || > > > > + (pos % i_blocksize(iter->inode)) == 0) { > > > > *range_dirty = false; > > > > return iomap_zero_iter_flush_and_stale(iter); > > > > } > > > > - /* range is clean and already zeroed, nothing to do */ > > > > - return length; > > > > + /* > > > > + * Special case partial EOF zeroing. Since we know the EOF > > > > + * folio is dirty, prefer in-memory zeroing for it. This avoids > > > > + * excessive flush latency on frequent file size extending > > > > + * operations. > > > > + */ > > > > + eof_zero = true; > > > > } > > > > > > > > do { > > > > @@ -1415,6 +1427,8 @@ static loff_t iomap_zero_iter(struct iomap_iter *iter, bool *did_zero, > > > > offset = offset_in_folio(folio, pos); > > > > if (bytes > folio_size(folio) - offset) > > > > bytes = folio_size(folio) - offset; > > > > + if (eof_zero && length > bytes) > > > > + length = bytes; > > > > > > What does this do? I think this causes the loop to break after putting > > > the folio that caches @pos? And then I guess we go around the loop in > > > iomap_zero_range again if there were more bytes to zero after this > > > folio? > > > > > > > Yeah.. it's basically just saying that if we fell into folio zeroing due > > to the special case logic above, only process through the end of this > > particular folio and jump back out to process the rest of the range as > > normal. The idea was just to prevent going off and doing a bunch of > > unexpected zeroing across an unwritten mapping just because we had an > > unaligned range that starts with a dirty folio. > > > > FWIW, the reworked variant I have of this currently looks like the > > appended diff. The caveat is this can still flush if a large folio > > happens to overlap the two subranges, but as is seems to placate the > > stress-ng test. In theory, I think having something like an > > iomap_zero_folio(folio, start_pos, end_pos) that zeroed up through > > min(end_pos, folio_end_pos) for the unaligned part would mitigate that, > > but I'm not quite sure of a clean way to do that; particularly if we > > have a large folio made up of multiple mappings. I'm also still > > undecided on whether to unconditionally flush the rest or try to > > preserve the flush_and_stale() approach as well. > > > > Brian > > > > --- 8< --- > > > ... > > And here's another variant that preserves the flush_and_stale() > behavior. This one is compile tested only: > This one survived an overnight fstests run. FWIW the simplicity of the previous unconditional flush variant was more appealing to me initially, but the more I think about it I think I prefer this one. I'm a little concerned that if we fix this stress-ng test but reintroduce an unconditional flush on the other end, the bots will find some other obscure test to complain about. This approach is at least more incremental in that it retains the conditional flush logic while improving on the strided write workload, so hopefully pacifies the robots. This still needs more small block size testing and I'd probably rework some comments and such, but I'm interested if you, Christoph, Christian, etc., have any thoughts on this one. Thanks. Brian > diff --git a/fs/iomap/buffered-io.c b/fs/iomap/buffered-io.c > index aa587b2142e2..37a27c344078 100644 > --- a/fs/iomap/buffered-io.c > +++ b/fs/iomap/buffered-io.c > @@ -1365,40 +1365,12 @@ static inline int iomap_zero_iter_flush_and_stale(struct iomap_iter *i) > return filemap_write_and_wait_range(mapping, i->pos, end); > } > > -static loff_t iomap_zero_iter(struct iomap_iter *iter, bool *did_zero, > - bool *range_dirty) > +static loff_t iomap_zero_iter(struct iomap_iter *iter, bool *did_zero) > { > - const struct iomap *srcmap = iomap_iter_srcmap(iter); > loff_t pos = iter->pos; > loff_t length = iomap_length(iter); > loff_t written = 0; > > - /* > - * We must zero subranges of unwritten mappings that might be dirty in > - * pagecache from previous writes. We only know whether the entire range > - * was clean or not, however, and dirty folios may have been written > - * back or reclaimed at any point after mapping lookup. > - * > - * The easiest way to deal with this is to flush pagecache to trigger > - * any pending unwritten conversions and then grab the updated extents > - * from the fs. The flush may change the current mapping, so mark it > - * stale for the iterator to remap it for the next pass to handle > - * properly. > - * > - * Note that holes are treated the same as unwritten because zero range > - * is (ab)used for partial folio zeroing in some cases. Hole backed > - * post-eof ranges can be dirtied via mapped write and the flush > - * triggers writeback time post-eof zeroing. > - */ > - if (srcmap->type == IOMAP_HOLE || srcmap->type == IOMAP_UNWRITTEN) { > - if (*range_dirty) { > - *range_dirty = false; > - return iomap_zero_iter_flush_and_stale(iter); > - } > - /* range is clean and already zeroed, nothing to do */ > - return length; > - } > - > do { > struct folio *folio; > int status; > @@ -1434,38 +1406,69 @@ static loff_t iomap_zero_iter(struct iomap_iter *iter, bool *did_zero, > return written; > } > > +static inline void > +iomap_iter_init(struct iomap_iter *iter, struct inode *inode, loff_t pos, > + loff_t len) > +{ > + memset(iter, 0, sizeof(*iter)); > + iter->inode = inode; > + iter->pos = pos; > + iter->len = len; > + iter->flags = IOMAP_ZERO; > +} > + > int > iomap_zero_range(struct inode *inode, loff_t pos, loff_t len, bool *did_zero, > const struct iomap_ops *ops) > { > - struct iomap_iter iter = { > - .inode = inode, > - .pos = pos, > - .len = len, > - .flags = IOMAP_ZERO, > - }; > + struct iomap_iter iter; > + struct address_space *mapping = inode->i_mapping; > + unsigned int blocksize = i_blocksize(inode); > + unsigned int off = pos & (blocksize - 1); > + loff_t plen = min_t(loff_t, len, blocksize - off); > + bool dirty; > int ret; > - bool range_dirty; > + > + iomap_iter_init(&iter, inode, pos, len); > > /* > - * Zero range wants to skip pre-zeroed (i.e. unwritten) mappings, but > - * pagecache must be flushed to ensure stale data from previous > - * buffered writes is not exposed. A flush is only required for certain > - * types of mappings, but checking pagecache after mapping lookup is > - * racy with writeback and reclaim. > + * Zero range wants to skip mappings that are already zero on disk, but > + * the only way to handle unwritten mappings covered by dirty pagecache > + * is to flush and reprocess the converted mappings after I/O > + * completion. > * > - * Therefore, check the entire range first and pass along whether any > - * part of it is dirty. If so and an underlying mapping warrants it, > - * flush the cache at that point. This trades off the occasional false > - * positive (and spurious flush, if the dirty data and mapping don't > - * happen to overlap) for simplicity in handling a relatively uncommon > - * situation. > + * The partial EOF zeroing use case is performance sensitive, so split > + * and handle an unaligned start of the range separately. The dirty > + * check tells the iter function whether it can skip or zero the folio > + * without needing to flush. Larger ranges tend to have already been > + * flushed by the filesystem, so flush the rest here as a safety measure > + * and process as normal. > */ > - range_dirty = filemap_range_needs_writeback(inode->i_mapping, > - pos, pos + len - 1); > + if (off && > + filemap_range_needs_writeback(mapping, pos, pos + plen - 1)) { > + iter.len = plen; > + while ((ret = iomap_iter(&iter, ops)) > 0) > + iter.processed = iomap_zero_iter(&iter, did_zero); > + iomap_iter_init(&iter, inode, iter.pos, len - (iter.pos - pos)); > + if (ret || !iter.len) > + return ret; > + } > + > + dirty = filemap_range_needs_writeback(mapping, iter.pos, > + iter.pos + iter.len - 1); > + while ((ret = iomap_iter(&iter, ops)) > 0) { > + const struct iomap *s = iomap_iter_srcmap(&iter); > + if (!(s->type == IOMAP_HOLE || s->type == IOMAP_UNWRITTEN)) { > + iter.processed = iomap_zero_iter(&iter, did_zero); > + continue; > + } > + iter.processed = iomap_length(&iter); > + if (dirty) { > + dirty = false; > + iter.processed = iomap_zero_iter_flush_and_stale(&iter); > + } > + } > > - while ((ret = iomap_iter(&iter, ops)) > 0) > - iter.processed = iomap_zero_iter(&iter, did_zero, &range_dirty); > return ret; > } > EXPORT_SYMBOL_GPL(iomap_zero_range); > >
On Fri, Oct 25, 2024 at 12:49:35PM -0400, Brian Foster wrote: > On Thu, Oct 24, 2024 at 03:42:41PM -0400, Brian Foster wrote: > > On Thu, Oct 24, 2024 at 01:41:14PM -0400, Brian Foster wrote: > > > On Thu, Oct 24, 2024 at 10:08:17AM -0700, Darrick J. Wong wrote: > > > > On Wed, Oct 23, 2024 at 10:30:29AM -0400, Brian Foster wrote: > > > > > iomap zero range performs a pagecache flush upon seeing unwritten > > > > > extents with dirty pagecache in order to determine accurate > > > > > subranges that require direct zeroing. This is to support an > > > > > optimization where clean, unwritten ranges are skipped as they are > > > > > already zero on-disk. > > > > > > > > > > Certain use cases for zero range are more sensitive to flush latency > > > > > than others. The kernel test robot recently reported a regression in > > > > > the following stress-ng workload on XFS: > > > > > > > > > > stress-ng --timeout 60 --times --verify --metrics --no-rand-seed --metamix 64 > > > > > > > > > > This workload involves a series of small, strided, write extending > > > > > writes. On XFS, this produces a pattern of allocating post-eof > > > > > speculative preallocation, converting preallocation to unwritten on > > > > > zero range calls, dirtying pagecache over the converted mapping, and > > > > > then repeating the sequence again from the updated EOF. This > > > > > basically produces a sequence of pagecache flushes on the partial > > > > > EOF block zeroing use case of zero range. > > > > > > > > > > To mitigate this problem, special case the EOF block zeroing use > > > > > case to prefer zeroing over a pagecache flush when the EOF folio is > > > > > already dirty. This brings most of the performance back by avoiding > > > > > flushes on write and truncate extension operations, while preserving > > > > > the ability for iomap to flush and properly process larger ranges. > > > > > > > > > > Signed-off-by: Brian Foster <bfoster@redhat.com> > > > > > --- > > > > > > > > > > Hi iomap maintainers, > > > > > > > > > > This is an incremental optimization for the regression reported by the > > > > > test robot here[1]. I'm not totally convinced this is necessary as an > > > > > immediate fix, but the discussion on that thread was enough to suggest > > > > > it could be. I don't really love the factoring, but I had to play a bit > > > > > of whack-a-mole between fstests and stress-ng to restore performance and > > > > > still maintain behavior expectations for some of the tests. > > > > > > > > > > On a positive note, exploring this gave me what I think is a better idea > > > > > for dealing with zero range overall, so I'm working on a followup to > > > > > this that reworks it by splitting zero range across block alignment > > > > > boundaries (similar to how something like truncate page range works, for > > > > > example). This simplifies things by isolating the dirty range check to a > > > > > single folio on an unaligned start offset, which lets the _iter() call > > > > > do a skip or zero (i.e. no more flush_and_stale()), and then > > > > > unconditionally flush the aligned portion to end-of-range. The latter > > > > > flush should be a no-op for every use case I've seen so far, so this > > > > > might entirely avoid the need for anything more complex for zero range. > > > > > > > > > > In summary, I'm posting this as an optional and more "stable-worthy" > > > > > patch for reference and for the maintainers to consider as they like. I > > > > > think it's reasonable to include if we are concerned about this > > > > > particular stress-ng test and are Ok with it as a transient solution. > > > > > But if it were up to me, I'd probably sit on it for a bit to determine > > > > > if a more practical user/workload is affected by this, particularly > > > > > knowing that I'm trying to rework it. This could always be applied as a > > > > > stable fix if really needed, but I just don't think the slightly more > > > > > invasive rework is appropriate for -rc.. > > > > > > > > > > Thoughts, reviews, flames appreciated. > > > > > > > > > > Brian > > > > > > > > > > [1] https://lore.kernel.org/linux-xfs/202410141536.1167190b-oliver.sang@intel.com/ > > > > > > > > > > fs/iomap/buffered-io.c | 20 +++++++++++++++++--- > > > > > 1 file changed, 17 insertions(+), 3 deletions(-) > > > > > > > > > > diff --git a/fs/iomap/buffered-io.c b/fs/iomap/buffered-io.c > > > > > index aa587b2142e2..8fd25b14d120 100644 > > > > > --- a/fs/iomap/buffered-io.c > > > > > +++ b/fs/iomap/buffered-io.c > > > > > @@ -1372,6 +1372,7 @@ static loff_t iomap_zero_iter(struct iomap_iter *iter, bool *did_zero, > > > > > loff_t pos = iter->pos; > > > > > loff_t length = iomap_length(iter); > > > > > loff_t written = 0; > > > > > + bool eof_zero = false; > > > > > > > > > > /* > > > > > * We must zero subranges of unwritten mappings that might be dirty in > > > > > @@ -1391,12 +1392,23 @@ static loff_t iomap_zero_iter(struct iomap_iter *iter, bool *did_zero, > > > > > * triggers writeback time post-eof zeroing. > > > > > */ > > > > > if (srcmap->type == IOMAP_HOLE || srcmap->type == IOMAP_UNWRITTEN) { > > > > > - if (*range_dirty) { > > > > > + /* range is clean and already zeroed, nothing to do */ > > > > > + if (!*range_dirty) > > > > > + return length; > > > > > + > > > > > + /* flush for anything other than partial eof zeroing */ > > > > > + if (pos != i_size_read(iter->inode) || > > > > > + (pos % i_blocksize(iter->inode)) == 0) { > > > > > *range_dirty = false; > > > > > return iomap_zero_iter_flush_and_stale(iter); > > > > > } > > > > > - /* range is clean and already zeroed, nothing to do */ > > > > > - return length; > > > > > + /* > > > > > + * Special case partial EOF zeroing. Since we know the EOF > > > > > + * folio is dirty, prefer in-memory zeroing for it. This avoids > > > > > + * excessive flush latency on frequent file size extending > > > > > + * operations. > > > > > + */ > > > > > + eof_zero = true; > > > > > } > > > > > > > > > > do { > > > > > @@ -1415,6 +1427,8 @@ static loff_t iomap_zero_iter(struct iomap_iter *iter, bool *did_zero, > > > > > offset = offset_in_folio(folio, pos); > > > > > if (bytes > folio_size(folio) - offset) > > > > > bytes = folio_size(folio) - offset; > > > > > + if (eof_zero && length > bytes) > > > > > + length = bytes; > > > > > > > > What does this do? I think this causes the loop to break after putting > > > > the folio that caches @pos? And then I guess we go around the loop in > > > > iomap_zero_range again if there were more bytes to zero after this > > > > folio? > > > > > > > > > > Yeah.. it's basically just saying that if we fell into folio zeroing due > > > to the special case logic above, only process through the end of this > > > particular folio and jump back out to process the rest of the range as > > > normal. The idea was just to prevent going off and doing a bunch of > > > unexpected zeroing across an unwritten mapping just because we had an > > > unaligned range that starts with a dirty folio. > > > > > > FWIW, the reworked variant I have of this currently looks like the > > > appended diff. The caveat is this can still flush if a large folio > > > happens to overlap the two subranges, but as is seems to placate the > > > stress-ng test. In theory, I think having something like an > > > iomap_zero_folio(folio, start_pos, end_pos) that zeroed up through > > > min(end_pos, folio_end_pos) for the unaligned part would mitigate that, > > > but I'm not quite sure of a clean way to do that; particularly if we > > > have a large folio made up of multiple mappings. I'm also still > > > undecided on whether to unconditionally flush the rest or try to > > > preserve the flush_and_stale() approach as well. > > > > > > Brian > > > > > > --- 8< --- > > > > > ... > > > > And here's another variant that preserves the flush_and_stale() > > behavior. This one is compile tested only: > > > > This one survived an overnight fstests run. FWIW the simplicity of the > previous unconditional flush variant was more appealing to me initially, > but the more I think about it I think I prefer this one. I'm a little > concerned that if we fix this stress-ng test but reintroduce an > unconditional flush on the other end, the bots will find some other > obscure test to complain about. > > This approach is at least more incremental in that it retains the > conditional flush logic while improving on the strided write workload, > so hopefully pacifies the robots. This still needs more small block size > testing and I'd probably rework some comments and such, but I'm > interested if you, Christoph, Christian, etc., have any thoughts on this > one. Thanks. I /think/ I followed what's going on here, but comments below-- > Brian > > > diff --git a/fs/iomap/buffered-io.c b/fs/iomap/buffered-io.c > > index aa587b2142e2..37a27c344078 100644 > > --- a/fs/iomap/buffered-io.c > > +++ b/fs/iomap/buffered-io.c > > @@ -1365,40 +1365,12 @@ static inline int iomap_zero_iter_flush_and_stale(struct iomap_iter *i) > > return filemap_write_and_wait_range(mapping, i->pos, end); > > } > > > > -static loff_t iomap_zero_iter(struct iomap_iter *iter, bool *did_zero, > > - bool *range_dirty) > > +static loff_t iomap_zero_iter(struct iomap_iter *iter, bool *did_zero) > > { > > - const struct iomap *srcmap = iomap_iter_srcmap(iter); > > loff_t pos = iter->pos; > > loff_t length = iomap_length(iter); > > loff_t written = 0; > > > > - /* > > - * We must zero subranges of unwritten mappings that might be dirty in > > - * pagecache from previous writes. We only know whether the entire range > > - * was clean or not, however, and dirty folios may have been written > > - * back or reclaimed at any point after mapping lookup. > > - * > > - * The easiest way to deal with this is to flush pagecache to trigger > > - * any pending unwritten conversions and then grab the updated extents > > - * from the fs. The flush may change the current mapping, so mark it > > - * stale for the iterator to remap it for the next pass to handle > > - * properly. > > - * > > - * Note that holes are treated the same as unwritten because zero range > > - * is (ab)used for partial folio zeroing in some cases. Hole backed > > - * post-eof ranges can be dirtied via mapped write and the flush > > - * triggers writeback time post-eof zeroing. > > - */ > > - if (srcmap->type == IOMAP_HOLE || srcmap->type == IOMAP_UNWRITTEN) { > > - if (*range_dirty) { > > - *range_dirty = false; > > - return iomap_zero_iter_flush_and_stale(iter); > > - } > > - /* range is clean and already zeroed, nothing to do */ > > - return length; > > - } > > - > > do { > > struct folio *folio; > > int status; > > @@ -1434,38 +1406,69 @@ static loff_t iomap_zero_iter(struct iomap_iter *iter, bool *did_zero, > > return written; > > } > > > > +static inline void > > +iomap_iter_init(struct iomap_iter *iter, struct inode *inode, loff_t pos, > > + loff_t len) > > +{ > > + memset(iter, 0, sizeof(*iter)); > > + iter->inode = inode; > > + iter->pos = pos; > > + iter->len = len; > > + iter->flags = IOMAP_ZERO; > > +} > > + > > int > > iomap_zero_range(struct inode *inode, loff_t pos, loff_t len, bool *did_zero, > > const struct iomap_ops *ops) > > { > > - struct iomap_iter iter = { > > - .inode = inode, > > - .pos = pos, > > - .len = len, > > - .flags = IOMAP_ZERO, > > - }; > > + struct iomap_iter iter; > > + struct address_space *mapping = inode->i_mapping; > > + unsigned int blocksize = i_blocksize(inode); > > + unsigned int off = pos & (blocksize - 1); > > + loff_t plen = min_t(loff_t, len, blocksize - off); > > + bool dirty; > > int ret; > > - bool range_dirty; > > + > > + iomap_iter_init(&iter, inode, pos, len); > > > > /* > > - * Zero range wants to skip pre-zeroed (i.e. unwritten) mappings, but > > - * pagecache must be flushed to ensure stale data from previous > > - * buffered writes is not exposed. A flush is only required for certain > > - * types of mappings, but checking pagecache after mapping lookup is > > - * racy with writeback and reclaim. > > + * Zero range wants to skip mappings that are already zero on disk, but > > + * the only way to handle unwritten mappings covered by dirty pagecache > > + * is to flush and reprocess the converted mappings after I/O > > + * completion. > > * > > - * Therefore, check the entire range first and pass along whether any > > - * part of it is dirty. If so and an underlying mapping warrants it, > > - * flush the cache at that point. This trades off the occasional false > > - * positive (and spurious flush, if the dirty data and mapping don't > > - * happen to overlap) for simplicity in handling a relatively uncommon > > - * situation. > > + * The partial EOF zeroing use case is performance sensitive, so split > > + * and handle an unaligned start of the range separately. The dirty > > + * check tells the iter function whether it can skip or zero the folio > > + * without needing to flush. Larger ranges tend to have already been > > + * flushed by the filesystem, so flush the rest here as a safety measure > > + * and process as normal. > > */ > > - range_dirty = filemap_range_needs_writeback(inode->i_mapping, > > - pos, pos + len - 1); > > + if (off && > > + filemap_range_needs_writeback(mapping, pos, pos + plen - 1)) { IOWs: If the start of the range is not aligned to an fsblock and any of the foios backing the bytes from the unaligned start to the end of the fsblock are dirty, then we want to write zeroes to the pagecache regardless of state, and then we leave the dirty pagecache? > > + iter.len = plen; > > + while ((ret = iomap_iter(&iter, ops)) > 0) > > + iter.processed = iomap_zero_iter(&iter, did_zero); > > + iomap_iter_init(&iter, inode, iter.pos, len - (iter.pos - pos)); I'm confused by the reinitialization of iter here. I think what you're trying to do here is zero any dirty pagecache to the end of the first fsblock of the input range, right? Then the iomap_iter_init resets the iter so that it will process the remaining bytes of the input range? Couldn't that be: /* * Zero the pagecache to the end of the first fsblock, do not * flush the block no matter what state it is in. */ iter.len = plen; while ((ret = iomap_iter(&iter, ops)) > 0) iter.processed = iomap_zero_iter(&iter, did_zero); if (ret) return ret; /* * Re-expand the iter to walk the range that we haven't yet * processed. */ iter.len = len - (iter.pos - pos); if (!iter.len) return 0; ...and the point here is that small file extensions write zeroes to the pagecache unconditionally. No flush, for performance reasons. Right? > > + if (ret || !iter.len) > > + return ret; > > + } > > + > > + dirty = filemap_range_needs_writeback(mapping, iter.pos, > > + iter.pos + iter.len - 1); > > + while ((ret = iomap_iter(&iter, ops)) > 0) { > > + const struct iomap *s = iomap_iter_srcmap(&iter); > > + if (!(s->type == IOMAP_HOLE || s->type == IOMAP_UNWRITTEN)) { > > + iter.processed = iomap_zero_iter(&iter, did_zero); > > + continue; > > + } > > + iter.processed = iomap_length(&iter); > > + if (dirty) { > > + dirty = false; > > + iter.processed = iomap_zero_iter_flush_and_stale(&iter); So what does it mean if we get here? AFAICT, if the start of the caller's range was not aligned to an fsblock, wasn't dirty at the first check, doesn't map to written space, and the pagecache got dirtied in the meantime, then we'll flush that unaligned start range and go back for another mapping. Or, if the "dirty but don't flush" code above was executed, we might end up flushing that newly dirtied range, but only if that range and the one we're currently looking at are backed by the same dirty folio. If we've moved on to a different folio, then that range we dirtied won't get flushed out until fsync or the dirty timeout? So I *think* the aim here is that the "don't write zeroes to the pagecache for ranges that map to clean unwritten/holes" logic only happen if the caller's range spans multiple fsblocks. For small ranges that look like minor file extensions, we'll write zeroes to the pagecache because flushing to see if the mapping changes isn't worth the hit. Right? (Sorry it took a while to get to this.) --D > > + } > > + } > > > > - while ((ret = iomap_iter(&iter, ops)) > 0) > > - iter.processed = iomap_zero_iter(&iter, did_zero, &range_dirty); > > return ret; > > } > > EXPORT_SYMBOL_GPL(iomap_zero_range); > > > > > >
On Mon, Nov 04, 2024 at 05:43:18PM -0800, Darrick J. Wong wrote: > On Fri, Oct 25, 2024 at 12:49:35PM -0400, Brian Foster wrote: > > On Thu, Oct 24, 2024 at 03:42:41PM -0400, Brian Foster wrote: > > > On Thu, Oct 24, 2024 at 01:41:14PM -0400, Brian Foster wrote: > > > > On Thu, Oct 24, 2024 at 10:08:17AM -0700, Darrick J. Wong wrote: > > > > > On Wed, Oct 23, 2024 at 10:30:29AM -0400, Brian Foster wrote: > > > > > > iomap zero range performs a pagecache flush upon seeing unwritten > > > > > > extents with dirty pagecache in order to determine accurate > > > > > > subranges that require direct zeroing. This is to support an > > > > > > optimization where clean, unwritten ranges are skipped as they are > > > > > > already zero on-disk. > > > > > > > > > > > > Certain use cases for zero range are more sensitive to flush latency > > > > > > than others. The kernel test robot recently reported a regression in > > > > > > the following stress-ng workload on XFS: > > > > > > > > > > > > stress-ng --timeout 60 --times --verify --metrics --no-rand-seed --metamix 64 > > > > > > > > > > > > This workload involves a series of small, strided, write extending > > > > > > writes. On XFS, this produces a pattern of allocating post-eof > > > > > > speculative preallocation, converting preallocation to unwritten on > > > > > > zero range calls, dirtying pagecache over the converted mapping, and > > > > > > then repeating the sequence again from the updated EOF. This > > > > > > basically produces a sequence of pagecache flushes on the partial > > > > > > EOF block zeroing use case of zero range. > > > > > > > > > > > > To mitigate this problem, special case the EOF block zeroing use > > > > > > case to prefer zeroing over a pagecache flush when the EOF folio is > > > > > > already dirty. This brings most of the performance back by avoiding > > > > > > flushes on write and truncate extension operations, while preserving > > > > > > the ability for iomap to flush and properly process larger ranges. > > > > > > > > > > > > Signed-off-by: Brian Foster <bfoster@redhat.com> > > > > > > --- > > > > > > > > > > > > Hi iomap maintainers, > > > > > > > > > > > > This is an incremental optimization for the regression reported by the > > > > > > test robot here[1]. I'm not totally convinced this is necessary as an > > > > > > immediate fix, but the discussion on that thread was enough to suggest > > > > > > it could be. I don't really love the factoring, but I had to play a bit > > > > > > of whack-a-mole between fstests and stress-ng to restore performance and > > > > > > still maintain behavior expectations for some of the tests. > > > > > > > > > > > > On a positive note, exploring this gave me what I think is a better idea > > > > > > for dealing with zero range overall, so I'm working on a followup to > > > > > > this that reworks it by splitting zero range across block alignment > > > > > > boundaries (similar to how something like truncate page range works, for > > > > > > example). This simplifies things by isolating the dirty range check to a > > > > > > single folio on an unaligned start offset, which lets the _iter() call > > > > > > do a skip or zero (i.e. no more flush_and_stale()), and then > > > > > > unconditionally flush the aligned portion to end-of-range. The latter > > > > > > flush should be a no-op for every use case I've seen so far, so this > > > > > > might entirely avoid the need for anything more complex for zero range. > > > > > > > > > > > > In summary, I'm posting this as an optional and more "stable-worthy" > > > > > > patch for reference and for the maintainers to consider as they like. I > > > > > > think it's reasonable to include if we are concerned about this > > > > > > particular stress-ng test and are Ok with it as a transient solution. > > > > > > But if it were up to me, I'd probably sit on it for a bit to determine > > > > > > if a more practical user/workload is affected by this, particularly > > > > > > knowing that I'm trying to rework it. This could always be applied as a > > > > > > stable fix if really needed, but I just don't think the slightly more > > > > > > invasive rework is appropriate for -rc.. > > > > > > > > > > > > Thoughts, reviews, flames appreciated. > > > > > > > > > > > > Brian > > > > > > > > > > > > [1] https://lore.kernel.org/linux-xfs/202410141536.1167190b-oliver.sang@intel.com/ > > > > > > > > > > > > fs/iomap/buffered-io.c | 20 +++++++++++++++++--- > > > > > > 1 file changed, 17 insertions(+), 3 deletions(-) > > > > > > > > > > > > diff --git a/fs/iomap/buffered-io.c b/fs/iomap/buffered-io.c > > > > > > index aa587b2142e2..8fd25b14d120 100644 > > > > > > --- a/fs/iomap/buffered-io.c > > > > > > +++ b/fs/iomap/buffered-io.c > > > > > > @@ -1372,6 +1372,7 @@ static loff_t iomap_zero_iter(struct iomap_iter *iter, bool *did_zero, > > > > > > loff_t pos = iter->pos; > > > > > > loff_t length = iomap_length(iter); > > > > > > loff_t written = 0; > > > > > > + bool eof_zero = false; > > > > > > > > > > > > /* > > > > > > * We must zero subranges of unwritten mappings that might be dirty in > > > > > > @@ -1391,12 +1392,23 @@ static loff_t iomap_zero_iter(struct iomap_iter *iter, bool *did_zero, > > > > > > * triggers writeback time post-eof zeroing. > > > > > > */ > > > > > > if (srcmap->type == IOMAP_HOLE || srcmap->type == IOMAP_UNWRITTEN) { > > > > > > - if (*range_dirty) { > > > > > > + /* range is clean and already zeroed, nothing to do */ > > > > > > + if (!*range_dirty) > > > > > > + return length; > > > > > > + > > > > > > + /* flush for anything other than partial eof zeroing */ > > > > > > + if (pos != i_size_read(iter->inode) || > > > > > > + (pos % i_blocksize(iter->inode)) == 0) { > > > > > > *range_dirty = false; > > > > > > return iomap_zero_iter_flush_and_stale(iter); > > > > > > } > > > > > > - /* range is clean and already zeroed, nothing to do */ > > > > > > - return length; > > > > > > + /* > > > > > > + * Special case partial EOF zeroing. Since we know the EOF > > > > > > + * folio is dirty, prefer in-memory zeroing for it. This avoids > > > > > > + * excessive flush latency on frequent file size extending > > > > > > + * operations. > > > > > > + */ > > > > > > + eof_zero = true; > > > > > > } > > > > > > > > > > > > do { > > > > > > @@ -1415,6 +1427,8 @@ static loff_t iomap_zero_iter(struct iomap_iter *iter, bool *did_zero, > > > > > > offset = offset_in_folio(folio, pos); > > > > > > if (bytes > folio_size(folio) - offset) > > > > > > bytes = folio_size(folio) - offset; > > > > > > + if (eof_zero && length > bytes) > > > > > > + length = bytes; > > > > > > > > > > What does this do? I think this causes the loop to break after putting > > > > > the folio that caches @pos? And then I guess we go around the loop in > > > > > iomap_zero_range again if there were more bytes to zero after this > > > > > folio? > > > > > > > > > > > > > Yeah.. it's basically just saying that if we fell into folio zeroing due > > > > to the special case logic above, only process through the end of this > > > > particular folio and jump back out to process the rest of the range as > > > > normal. The idea was just to prevent going off and doing a bunch of > > > > unexpected zeroing across an unwritten mapping just because we had an > > > > unaligned range that starts with a dirty folio. > > > > > > > > FWIW, the reworked variant I have of this currently looks like the > > > > appended diff. The caveat is this can still flush if a large folio > > > > happens to overlap the two subranges, but as is seems to placate the > > > > stress-ng test. In theory, I think having something like an > > > > iomap_zero_folio(folio, start_pos, end_pos) that zeroed up through > > > > min(end_pos, folio_end_pos) for the unaligned part would mitigate that, > > > > but I'm not quite sure of a clean way to do that; particularly if we > > > > have a large folio made up of multiple mappings. I'm also still > > > > undecided on whether to unconditionally flush the rest or try to > > > > preserve the flush_and_stale() approach as well. > > > > > > > > Brian > > > > > > > > --- 8< --- > > > > > > > ... > > > > > > And here's another variant that preserves the flush_and_stale() > > > behavior. This one is compile tested only: > > > > > > > This one survived an overnight fstests run. FWIW the simplicity of the > > previous unconditional flush variant was more appealing to me initially, > > but the more I think about it I think I prefer this one. I'm a little > > concerned that if we fix this stress-ng test but reintroduce an > > unconditional flush on the other end, the bots will find some other > > obscure test to complain about. > > > > This approach is at least more incremental in that it retains the > > conditional flush logic while improving on the strided write workload, > > so hopefully pacifies the robots. This still needs more small block size > > testing and I'd probably rework some comments and such, but I'm > > interested if you, Christoph, Christian, etc., have any thoughts on this > > one. Thanks. > > I /think/ I followed what's going on here, but comments below-- > > > Brian > > > > > diff --git a/fs/iomap/buffered-io.c b/fs/iomap/buffered-io.c > > > index aa587b2142e2..37a27c344078 100644 > > > --- a/fs/iomap/buffered-io.c > > > +++ b/fs/iomap/buffered-io.c > > > @@ -1365,40 +1365,12 @@ static inline int iomap_zero_iter_flush_and_stale(struct iomap_iter *i) > > > return filemap_write_and_wait_range(mapping, i->pos, end); > > > } > > > > > > -static loff_t iomap_zero_iter(struct iomap_iter *iter, bool *did_zero, > > > - bool *range_dirty) > > > +static loff_t iomap_zero_iter(struct iomap_iter *iter, bool *did_zero) > > > { > > > - const struct iomap *srcmap = iomap_iter_srcmap(iter); > > > loff_t pos = iter->pos; > > > loff_t length = iomap_length(iter); > > > loff_t written = 0; > > > > > > - /* > > > - * We must zero subranges of unwritten mappings that might be dirty in > > > - * pagecache from previous writes. We only know whether the entire range > > > - * was clean or not, however, and dirty folios may have been written > > > - * back or reclaimed at any point after mapping lookup. > > > - * > > > - * The easiest way to deal with this is to flush pagecache to trigger > > > - * any pending unwritten conversions and then grab the updated extents > > > - * from the fs. The flush may change the current mapping, so mark it > > > - * stale for the iterator to remap it for the next pass to handle > > > - * properly. > > > - * > > > - * Note that holes are treated the same as unwritten because zero range > > > - * is (ab)used for partial folio zeroing in some cases. Hole backed > > > - * post-eof ranges can be dirtied via mapped write and the flush > > > - * triggers writeback time post-eof zeroing. > > > - */ > > > - if (srcmap->type == IOMAP_HOLE || srcmap->type == IOMAP_UNWRITTEN) { > > > - if (*range_dirty) { > > > - *range_dirty = false; > > > - return iomap_zero_iter_flush_and_stale(iter); > > > - } > > > - /* range is clean and already zeroed, nothing to do */ > > > - return length; > > > - } > > > - > > > do { > > > struct folio *folio; > > > int status; > > > @@ -1434,38 +1406,69 @@ static loff_t iomap_zero_iter(struct iomap_iter *iter, bool *did_zero, > > > return written; > > > } > > > > > > +static inline void > > > +iomap_iter_init(struct iomap_iter *iter, struct inode *inode, loff_t pos, > > > + loff_t len) > > > +{ > > > + memset(iter, 0, sizeof(*iter)); > > > + iter->inode = inode; > > > + iter->pos = pos; > > > + iter->len = len; > > > + iter->flags = IOMAP_ZERO; > > > +} > > > + > > > int > > > iomap_zero_range(struct inode *inode, loff_t pos, loff_t len, bool *did_zero, > > > const struct iomap_ops *ops) > > > { > > > - struct iomap_iter iter = { > > > - .inode = inode, > > > - .pos = pos, > > > - .len = len, > > > - .flags = IOMAP_ZERO, > > > - }; > > > + struct iomap_iter iter; > > > + struct address_space *mapping = inode->i_mapping; > > > + unsigned int blocksize = i_blocksize(inode); > > > + unsigned int off = pos & (blocksize - 1); > > > + loff_t plen = min_t(loff_t, len, blocksize - off); > > > + bool dirty; > > > int ret; > > > - bool range_dirty; > > > + > > > + iomap_iter_init(&iter, inode, pos, len); > > > > > > /* > > > - * Zero range wants to skip pre-zeroed (i.e. unwritten) mappings, but > > > - * pagecache must be flushed to ensure stale data from previous > > > - * buffered writes is not exposed. A flush is only required for certain > > > - * types of mappings, but checking pagecache after mapping lookup is > > > - * racy with writeback and reclaim. > > > + * Zero range wants to skip mappings that are already zero on disk, but > > > + * the only way to handle unwritten mappings covered by dirty pagecache > > > + * is to flush and reprocess the converted mappings after I/O > > > + * completion. > > > * > > > - * Therefore, check the entire range first and pass along whether any > > > - * part of it is dirty. If so and an underlying mapping warrants it, > > > - * flush the cache at that point. This trades off the occasional false > > > - * positive (and spurious flush, if the dirty data and mapping don't > > > - * happen to overlap) for simplicity in handling a relatively uncommon > > > - * situation. > > > + * The partial EOF zeroing use case is performance sensitive, so split > > > + * and handle an unaligned start of the range separately. The dirty > > > + * check tells the iter function whether it can skip or zero the folio > > > + * without needing to flush. Larger ranges tend to have already been > > > + * flushed by the filesystem, so flush the rest here as a safety measure > > > + * and process as normal. > > > */ > > > - range_dirty = filemap_range_needs_writeback(inode->i_mapping, > > > - pos, pos + len - 1); > > > + if (off && > > > + filemap_range_needs_writeback(mapping, pos, pos + plen - 1)) { > > IOWs: If the start of the range is not aligned to an fsblock and any of > the foios backing the bytes from the unaligned start to the end of the > fsblock are dirty, then we want to write zeroes to the pagecache > regardless of state, and then we leave the dirty pagecache? > Yeah.. it just has the opposite preference as the default flush heuristic. I.e., if we have a large range to zero with unwritten mappings and some of that range is dirty in cache, then the simplest way to zero the full range correctly is to flush outstanding data, trigger mapping conversions, and use the iomap as the source of truth. For the isolated partial eof block zeroing case, check the offset specifically in pagecache and if dirty, then just zero the folio in cache. > > > + iter.len = plen; > > > + while ((ret = iomap_iter(&iter, ops)) > 0) > > > + iter.processed = iomap_zero_iter(&iter, did_zero); > > > + iomap_iter_init(&iter, inode, iter.pos, len - (iter.pos - pos)); > > I'm confused by the reinitialization of iter here. I think what you're > trying to do here is zero any dirty pagecache to the end of the first > fsblock of the input range, right? > > Then the iomap_iter_init resets the iter so that it will process the > remaining bytes of the input range? Couldn't that be: > > /* > * Zero the pagecache to the end of the first fsblock, do not > * flush the block no matter what state it is in. > */ > iter.len = plen; > while ((ret = iomap_iter(&iter, ops)) > 0) > iter.processed = iomap_zero_iter(&iter, did_zero); > if (ret) > return ret; > > /* > * Re-expand the iter to walk the range that we haven't yet > * processed. > */ > iter.len = len - (iter.pos - pos); > if (!iter.len) > return 0; > > ...and the point here is that small file extensions write zeroes to the > pagecache unconditionally. No flush, for performance reasons. Right? > Yes. I originally had something like the above, but iter has some other fields that need to be cleared before calling into iomap_iter() again, hence the memset() in the _init() helper. I can add a comment on that if helpful. > > > + if (ret || !iter.len) > > > + return ret; > > > + } > > > + > > > + dirty = filemap_range_needs_writeback(mapping, iter.pos, > > > + iter.pos + iter.len - 1); > > > + while ((ret = iomap_iter(&iter, ops)) > 0) { > > > + const struct iomap *s = iomap_iter_srcmap(&iter); > > > + if (!(s->type == IOMAP_HOLE || s->type == IOMAP_UNWRITTEN)) { > > > + iter.processed = iomap_zero_iter(&iter, did_zero); > > > + continue; > > > + } > > > + iter.processed = iomap_length(&iter); > > > + if (dirty) { > > > + dirty = false; > > > + iter.processed = iomap_zero_iter_flush_and_stale(&iter); > > So what does it mean if we get here? > > AFAICT, if the start of the caller's range was not aligned to an > fsblock, wasn't dirty at the first check, doesn't map to written space, > and the pagecache got dirtied in the meantime, then we'll flush that > unaligned start range and go back for another mapping. > > Or, if the "dirty but don't flush" code above was executed, we might end > up flushing that newly dirtied range, but only if that range and the one > we're currently looking at are backed by the same dirty folio. If we've > moved on to a different folio, then that range we dirtied won't get > flushed out until fsync or the dirty timeout? > > So I *think* the aim here is that the "don't write zeroes to the > pagecache for ranges that map to clean unwritten/holes" logic only > happen if the caller's range spans multiple fsblocks. For small ranges > that look like minor file extensions, we'll write zeroes to the > pagecache because flushing to see if the mapping changes isn't worth the > hit. Right? > Yeah, pretty much. It's possible that this would flush the folio (re)dirtied in the first hunk in the case of large folios, etc., but I haven't seen that be an issue. I played around a bit with a variant that zeroes up to the end of the folio and returns the number of bytes processed (i.e. consider an iomap_zero_folio(folio, offset) helper) to specifically accommodate that case, but it was more code and didn't provide measurable benefit, so I opted to leave it as a potential future enhancement. The idea here is basically just to break off the range into an unaligned start and the rest (somewhat akin to truncate_inode_pages_range()), so the former can cover the case of partial eof zeroing on truncate/write extension a bit more efficiently. IOW, many of these calls are essentially iomap_zero_range(inode, current_isize, new_write_pos), where the entire range is post-eof and the only block that starts within eof and is potentially cached is the eof block itself. Therefore it's more efficient to just zero it in the dirty folio over unwritten mapping case rather than flush to determine if zeroing is necessary. > (Sorry it took a while to get to this.) > NP, but note I had posted a proper v2 [1] of this last week. Let me know if/what feedback carries over onto that one.. thanks. Brian [1] https://lore.kernel.org/linux-fsdevel/20241031140449.439576-1-bfoster@redhat.com/ > --D > > > > + } > > > + } > > > > > > - while ((ret = iomap_iter(&iter, ops)) > 0) > > > - iter.processed = iomap_zero_iter(&iter, did_zero, &range_dirty); > > > return ret; > > > } > > > EXPORT_SYMBOL_GPL(iomap_zero_range); > > > > > > > > > > >
diff --git a/fs/iomap/buffered-io.c b/fs/iomap/buffered-io.c index aa587b2142e2..8fd25b14d120 100644 --- a/fs/iomap/buffered-io.c +++ b/fs/iomap/buffered-io.c @@ -1372,6 +1372,7 @@ static loff_t iomap_zero_iter(struct iomap_iter *iter, bool *did_zero, loff_t pos = iter->pos; loff_t length = iomap_length(iter); loff_t written = 0; + bool eof_zero = false; /* * We must zero subranges of unwritten mappings that might be dirty in @@ -1391,12 +1392,23 @@ static loff_t iomap_zero_iter(struct iomap_iter *iter, bool *did_zero, * triggers writeback time post-eof zeroing. */ if (srcmap->type == IOMAP_HOLE || srcmap->type == IOMAP_UNWRITTEN) { - if (*range_dirty) { + /* range is clean and already zeroed, nothing to do */ + if (!*range_dirty) + return length; + + /* flush for anything other than partial eof zeroing */ + if (pos != i_size_read(iter->inode) || + (pos % i_blocksize(iter->inode)) == 0) { *range_dirty = false; return iomap_zero_iter_flush_and_stale(iter); } - /* range is clean and already zeroed, nothing to do */ - return length; + /* + * Special case partial EOF zeroing. Since we know the EOF + * folio is dirty, prefer in-memory zeroing for it. This avoids + * excessive flush latency on frequent file size extending + * operations. + */ + eof_zero = true; } do { @@ -1415,6 +1427,8 @@ static loff_t iomap_zero_iter(struct iomap_iter *iter, bool *did_zero, offset = offset_in_folio(folio, pos); if (bytes > folio_size(folio) - offset) bytes = folio_size(folio) - offset; + if (eof_zero && length > bytes) + length = bytes; folio_zero_range(folio, offset, bytes); folio_mark_accessed(folio);
iomap zero range performs a pagecache flush upon seeing unwritten extents with dirty pagecache in order to determine accurate subranges that require direct zeroing. This is to support an optimization where clean, unwritten ranges are skipped as they are already zero on-disk. Certain use cases for zero range are more sensitive to flush latency than others. The kernel test robot recently reported a regression in the following stress-ng workload on XFS: stress-ng --timeout 60 --times --verify --metrics --no-rand-seed --metamix 64 This workload involves a series of small, strided, write extending writes. On XFS, this produces a pattern of allocating post-eof speculative preallocation, converting preallocation to unwritten on zero range calls, dirtying pagecache over the converted mapping, and then repeating the sequence again from the updated EOF. This basically produces a sequence of pagecache flushes on the partial EOF block zeroing use case of zero range. To mitigate this problem, special case the EOF block zeroing use case to prefer zeroing over a pagecache flush when the EOF folio is already dirty. This brings most of the performance back by avoiding flushes on write and truncate extension operations, while preserving the ability for iomap to flush and properly process larger ranges. Signed-off-by: Brian Foster <bfoster@redhat.com> --- Hi iomap maintainers, This is an incremental optimization for the regression reported by the test robot here[1]. I'm not totally convinced this is necessary as an immediate fix, but the discussion on that thread was enough to suggest it could be. I don't really love the factoring, but I had to play a bit of whack-a-mole between fstests and stress-ng to restore performance and still maintain behavior expectations for some of the tests. On a positive note, exploring this gave me what I think is a better idea for dealing with zero range overall, so I'm working on a followup to this that reworks it by splitting zero range across block alignment boundaries (similar to how something like truncate page range works, for example). This simplifies things by isolating the dirty range check to a single folio on an unaligned start offset, which lets the _iter() call do a skip or zero (i.e. no more flush_and_stale()), and then unconditionally flush the aligned portion to end-of-range. The latter flush should be a no-op for every use case I've seen so far, so this might entirely avoid the need for anything more complex for zero range. In summary, I'm posting this as an optional and more "stable-worthy" patch for reference and for the maintainers to consider as they like. I think it's reasonable to include if we are concerned about this particular stress-ng test and are Ok with it as a transient solution. But if it were up to me, I'd probably sit on it for a bit to determine if a more practical user/workload is affected by this, particularly knowing that I'm trying to rework it. This could always be applied as a stable fix if really needed, but I just don't think the slightly more invasive rework is appropriate for -rc.. Thoughts, reviews, flames appreciated. Brian [1] https://lore.kernel.org/linux-xfs/202410141536.1167190b-oliver.sang@intel.com/ fs/iomap/buffered-io.c | 20 +++++++++++++++++--- 1 file changed, 17 insertions(+), 3 deletions(-)