]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
btrfs: fix bitmap leak when loading free space cache on duplicate entry
authorFilipe Manana <fdmanana@suse.com>
Wed, 3 Jul 2024 14:40:59 +0000 (15:40 +0100)
committerDavid Sterba <dsterba@suse.com>
Thu, 11 Jul 2024 13:52:25 +0000 (15:52 +0200)
If we failed to link a free space entry because there's already a
conflicting entry for the same offset, we free the free space entry but
we don't free the associated bitmap that we had just allocated before.
Fix that by freeing the bitmap before freeing the entry.

Reviewed-by: Johannes Thumshirn <johannes.thumshirn@wdc.com>
Signed-off-by: Filipe Manana <fdmanana@suse.com>
Reviewed-by: David Sterba <dsterba@suse.com>
Signed-off-by: David Sterba <dsterba@suse.com>
fs/btrfs/free-space-cache.c

index c29c8ef9bd6aa481afb34aa52c928f52633eef87..3f9b7507543ad4b0cd7cb7e6e4e16bc1dacf6f22 100644 (file)
@@ -857,6 +857,7 @@ static int __load_free_space_cache(struct btrfs_root *root, struct inode *inode,
                                spin_unlock(&ctl->tree_lock);
                                btrfs_err(fs_info,
                                        "Duplicate entries in free space cache, dumping");
+                               kmem_cache_free(btrfs_free_space_bitmap_cachep, e->bitmap);
                                kmem_cache_free(btrfs_free_space_cachep, e);
                                goto free_cache;
                        }