diff options
author | Filipe Manana <fdmanana@suse.com> | 2024-07-03 17:40:59 +0300 |
---|---|---|
committer | David Sterba <dsterba@suse.com> | 2024-07-11 16:52:25 +0300 |
commit | 320d8dc612660da84c3b70a28658bb38069e5a9a (patch) | |
tree | 9e53c5f1844a65b53dedf89862c9c2d997a41d86 /fs/btrfs | |
parent | a39484371dd29ed9ba67bfd211e51d72b1a35c3d (diff) | |
download | linux-320d8dc612660da84c3b70a28658bb38069e5a9a.tar.xz |
btrfs: fix bitmap leak when loading free space cache on duplicate entry
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>
Diffstat (limited to 'fs/btrfs')
-rw-r--r-- | fs/btrfs/free-space-cache.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/btrfs/free-space-cache.c b/fs/btrfs/free-space-cache.c index c29c8ef9bd6a..3f9b7507543a 100644 --- a/fs/btrfs/free-space-cache.c +++ b/fs/btrfs/free-space-cache.c @@ -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; } |