Skip to content

Commit 0aa2e1b

Browse files
dhowellsbrauner
authored andcommitted
mm: Fix missing folio invalidation calls during truncation
When AS_RELEASE_ALWAYS is set on a mapping, the ->release_folio() and ->invalidate_folio() calls should be invoked even if PG_private and PG_private_2 aren't set. This is used by netfslib to keep track of the point above which reads can be skipped in favour of just zeroing pagecache locally. There are a couple of places in truncation in which invalidation is only called when folio_has_private() is true. Fix these to check folio_needs_release() instead. Without this, the generic/075 and generic/112 xfstests (both fsx-based tests) fail with minimum folio size patches applied[1]. Fixes: b4fa966 ("mm, netfs, fscache: stop read optimisation when folio removed from pagecache") Signed-off-by: David Howells <dhowells@redhat.com> Link: https://lore.kernel.org/r/20240815090849.972355-1-kernel@pankajraghav.com/ [1] Link: https://lore.kernel.org/r/20240823200819.532106-2-dhowells@redhat.com Reviewed-by: Matthew Wilcox (Oracle) <willy@infradead.org> cc: Matthew Wilcox (Oracle) <willy@infradead.org> cc: Pankaj Raghav <p.raghav@samsung.com> cc: Jeff Layton <jlayton@kernel.org> cc: Marc Dionne <marc.dionne@auristor.com> cc: linux-afs@lists.infradead.org cc: netfs@lists.linux.dev cc: linux-mm@kvack.org cc: linux-fsdevel@vger.kernel.org Signed-off-by: Christian Brauner <brauner@kernel.org>
1 parent d10771d commit 0aa2e1b

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

mm/truncate.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ static void truncate_cleanup_folio(struct folio *folio)
157157
if (folio_mapped(folio))
158158
unmap_mapping_folio(folio);
159159

160-
if (folio_has_private(folio))
160+
if (folio_needs_release(folio))
161161
folio_invalidate(folio, 0, folio_size(folio));
162162

163163
/*
@@ -219,7 +219,7 @@ bool truncate_inode_partial_folio(struct folio *folio, loff_t start, loff_t end)
219219
if (!mapping_inaccessible(folio->mapping))
220220
folio_zero_range(folio, offset, length);
221221

222-
if (folio_has_private(folio))
222+
if (folio_needs_release(folio))
223223
folio_invalidate(folio, offset, length);
224224
if (!folio_test_large(folio))
225225
return true;

0 commit comments

Comments
 (0)