* [PATCH] btrfs: fix subpage state mismatch in cow_fixup writeback path
@ 2026-03-16 10:56 Werner Kasselman
0 siblings, 0 replies; only message in thread
From: Werner Kasselman @ 2026-03-16 10:56 UTC (permalink / raw)
To: linux-btrfs@vger.kernel.org
Cc: wqu@suse.com, dsterba@suse.com, josef@toxicpanda.com,
linux-kernel@vger.kernel.org, Werner Kasselman,
stable@vger.kernel.org
writepage_delalloc() marks all dirty sectors as locked via
btrfs_folio_set_lock(), setting bits in the subpage locked bitmap and
incrementing nr_locked. These are cleaned up by
btrfs_folio_end_lock_bitmap() at the end of extent_writepage().
However, when btrfs_writepage_cow_fixup() returns -EAGAIN inside
extent_writepage_io(), the code calls folio_unlock() directly and
returns 1, causing extent_writepage() to skip the bitmap cleanup:
ret = btrfs_writepage_cow_fixup(folio);
if (ret == -EAGAIN) {
folio_redirty_for_writepage(bio_ctrl->wbc, folio);
folio_unlock(folio); // doesn't clear locked bitmap
return 1; // caller skips end_lock_bitmap()
}
This leaves the subpage locked bitmap out of sync with the folio lock
state: the folio is unlocked but its subpage locked bitmap still has
bits set and nr_locked is elevated. When writeback retries the folio,
btrfs_folio_set_lock() hits the ASSERT at subpage.c:746 because the
bits are still set from the previous attempt.
The cow_fixup path is largely a legacy path -- the GUP dirty-without-
informing-fs issue that triggered it has been fixed on the GUP side,
and experimental builds already catch this case with -EUCLEAN before
reaching the -EAGAIN return. However the subpage state mismatch is
still a correctness issue for non-experimental builds under error
injection or memory pressure (kzalloc failure in
btrfs_writepage_cow_fixup()).
Fix this by replacing folio_unlock() with btrfs_folio_end_lock_bitmap(),
which properly clears the locked bitmap bits before unlocking. For
non-subpage or when nr_locked is 0 (e.g. called from
extent_write_locked_range()), btrfs_folio_end_lock_bitmap() falls
through to plain folio_unlock(), so existing behavior is preserved.
Fixes: d034cdb4cc8a ("btrfs: lock subpage ranges in one go for writepage_delalloc()")
CC: stable@vger.kernel.org
Signed-off-by: Werner Kasselman <werner@verivus.com>
---
fs/btrfs/extent_io.c | 8 +++++++-
1 file changed, 7 insertions(+), 1 deletion(-)
diff --git a/fs/btrfs/extent_io.c b/fs/btrfs/extent_io.c
index 5f97a3d2a8d7..c7b25e415498 100644
--- a/fs/btrfs/extent_io.c
+++ b/fs/btrfs/extent_io.c
@@ -1746,7 +1746,13 @@ static noinline_for_stack int extent_writepage_io(struct btrfs_inode *inode,
if (ret == -EAGAIN) {
/* Fixup worker will requeue */
folio_redirty_for_writepage(bio_ctrl->wbc, folio);
- folio_unlock(folio);
+ /*
+ * For subpage case, writepage_delalloc() may have set locked
+ * bitmap bits for this folio. We need to clear them or
+ * btrfs_folio_set_lock() will ASSERT when writeback retries.
+ */
+ btrfs_folio_end_lock_bitmap(fs_info, folio,
+ bio_ctrl->submit_bitmap);
return 1;
}
if (ret < 0) {
--
2.43.0
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2026-03-16 10:57 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-03-16 10:56 [PATCH] btrfs: fix subpage state mismatch in cow_fixup writeback path Werner Kasselman
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox