]> git.ipfire.org Git - thirdparty/linux.git/commit
btrfs: clear dirty status from extent buffer on error at insert_new_root()
authorFilipe Manana <fdmanana@suse.com>
Mon, 30 Jun 2025 09:50:46 +0000 (10:50 +0100)
committerDavid Sterba <dsterba@suse.com>
Mon, 21 Jul 2025 22:02:09 +0000 (00:02 +0200)
commitc0d013495a80cbb53e2288af7ae0ec4170aafd7c
treecefa1e10adad7dd49462835ec8609f789d56311f
parent9669fcb77eae2c03a030d99b0cc22b1d25a30f7c
btrfs: clear dirty status from extent buffer on error at insert_new_root()

If we failed to insert the tree mod log operation, we are not removing the
dirty status from the allocated and dirtied extent buffer before we free
it. Removing the dirty status is needed for several reasons such as to
adjust the fs_info->dirty_metadata_bytes counter and remove the dirty
status from the respective folios. So add the missing call to
btrfs_clear_buffer_dirty().

Fixes: f61aa7ba08ab ("btrfs: do not BUG_ON() on tree mod log failure at insert_new_root()")
CC: stable@vger.kernel.org # 6.6+
Reviewed-by: Boris Burkov <boris@bur.io>
Signed-off-by: Filipe Manana <fdmanana@suse.com>
Signed-off-by: David Sterba <dsterba@suse.com>
fs/btrfs/ctree.c